/* ============================================================
   Contact Page Styles
   ============================================================ */

.contact-section {
  padding: 140px 0 96px;
  background: var(--bg);
  min-height: 100vh;
}

.contact-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

/* ── Contact Form ────────────────────────────────────────── */
.contact-form-container {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.required {
  color: var(--orange);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text);
  outline: none;
  transition: var(--transition);
  background: white;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-actions {
  margin-top: 12px;
}

.form-actions .btn {
  width: 100%;
  justify-content: center;
}

.form-privacy {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 16px;
}

/* ── Contact Info Sidebar ────────────────────────────────── */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg);
  border-radius: 10px;
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(244, 98, 42, 0.08);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-content {
  flex: 1;
}

.contact-item-label {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item-value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 600;
}

.contact-item-value a {
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item-value a:hover {
  color: var(--orange);
}

/* ── Info Cards ──────────────────────────────────────────── */
.info-card {
  background: linear-gradient(135deg, #1A4731, #0F2D1E);
  color: white;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.info-card-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.info-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: white;
  margin-bottom: 12px;
}

.info-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ── Map Section ─────────────────────────────────────────── */
.map-section {
  padding: 80px 0;
  background: white;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.map-container h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 16px;
}

.map-container p {
  color: var(--gray-500);
  font-size: 17px;
  margin-bottom: 48px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.location-box {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.location-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.location-flag {
  font-size: 56px;
  margin-bottom: 16px;
}

.location-name {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.location-status {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

.status-active {
  background: #D1FAE5;
  color: #065F46;
}

.status-soon {
  background: #FEF3C7;
  color: #92400E;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .info-card {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 120px 0 64px;
  }

  .contact-form-container {
    padding: 32px 24px;
  }

  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .info-card {
    grid-column: span 1;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .map-section {
    padding: 60px 0;
  }
}
