/* ===============================
   CONTACT SECTION – FULLY SCOPED
================================ */

/* RESET */
#contact-body {
  margin: 0;
  background: #000;
  font-family: 'Inter', system-ui, sans-serif;
  color: #fff;
}

/* SECTION */
#contact-section {
  min-height: 100vh;
  padding: 80px 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.04),
    #000 70%
  );
}

/* CONTENT */
#contact-content {
  text-align: center;
  max-width: 760px;
  margin: auto;
}

#contact-title {
  font-size: 48px;
  font-weight: 700;
  color: #7c7cff;
  margin-bottom: 16px;
}

#contact-description {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

/* BUTTONS */
#contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  background: #121826;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.contact-btn-icon {
  font-size: 16px;
}

/* FOOTER */
#contact-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

#contact-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

#contact-footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111;
  display: grid;
  place-items: center;
  font-weight: 700;
}

#contact-footer-center {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.contact-footer-icon {
  opacity: 0.8;
}

#contact-footer-right {
  text-align: right;
}

.contact-footer-text {
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #contact-section {
    padding: 64px 24px 24px;
  }

  #contact-title {
    font-size: 36px;
  }

  #contact-footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 12px;
  }

  #contact-footer-right {
    text-align: center;
  }
}
