/* ============================================================
   CONTACT PAGE — contact.css
   ============================================================ */

/* ----- Contact Split ----- */
.contact {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact {
    grid-template-columns: 1fr 1fr;
  }
}

/* Info Side */
.contact__info {
  padding: 160px 40px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact__info {
    padding: 160px 60px 80px;
  }
}

.contact__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.contact__subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  margin-bottom: 48px;
  max-width: 400px;
  line-height: 1.6;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__detail-icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
}

.contact__detail-value {
  font-size: 1rem;
  color: var(--gray-200);
  line-height: 1.5;
}

.contact__detail-value a {
  transition: color var(--duration-fast) ease;
}

.contact__detail-value a:hover {
  color: var(--accent);
}

/* Form Side */
.contact__form-wrapper {
  padding: 160px 40px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact__form-wrapper {
    padding: 160px 60px 80px;
    border-left: 1px solid rgba(255, 255, 255, 0.04);
  }
}

.contact__form-card {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact__form-subtitle {
  font-size: 0.9375rem;
  color: var(--gray-400);
  margin-bottom: 32px;
}

/* Contact Success State */
.contact__success {
  display: none;
  text-align: center;
  padding: 60px 0;
}

.contact__success.is-active {
  display: block;
}

.contact__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--accent-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  animation: successPop 0.5s var(--ease-spring) forwards;
  transform: scale(0);
}

.contact__success-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contact__success-text {
  font-size: 0.9375rem;
  color: var(--gray-400);
}

.contact__form.is-hidden {
  display: none;
}

/* ----- Map Section ----- */
.map-section {
  padding: 0 0 120px;
}

.map-section__wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  aspect-ratio: 21/9;
  background: var(--gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .map-section__wrapper {
    aspect-ratio: 16/9;
  }
}

.map-section__placeholder {
  text-align: center;
  color: var(--gray-500);
}

.map-section__placeholder-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--gray-600);
}

.map-section__placeholder-text {
  font-size: 0.875rem;
}
