
    /* =========================================
   Contact/Journey Hero Banner
   (Strict Navy #041A50 & Teal #2F6F6F)
   ========================================= */

:root {
  --brand-navy: #041A50;
  --brand-teal: #2F6F6F;
  --bg-color: #FFFFFF; /* Pure white for maximum clarity */
  --text-dark: #0f172a;
  --text-muted: #475569;
}

.contact-hero-wrapper {
  position: relative;
  background-color: var(--bg-color);
  padding: 100px 20px 120px 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

/* Diagonal stripe pattern for a dynamic "Journey/Motion" feel */
.contact-bg-pattern {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(4, 26, 80, 0.02) 10px,
    rgba(4, 26, 80, 0.02) 20px
  );
  z-index: 0;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.contact-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

/* ================= LEFT SIDE (Typography) ================= */
.contact-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47, 111, 111, 0.08);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border: 1px solid rgba(47, 111, 111, 0.15);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--brand-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(47, 111, 111, 0.4);
  animation: pulseContact 2s infinite;
}

@keyframes pulseContact {
  0% { box-shadow: 0 0 0 0 rgba(47, 111, 111, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(47, 111, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 111, 111, 0); }
}

.contact-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.contact-highlight {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-bottom: 5px; /* prevents gradient clipping on some letters */
}

.contact-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 40px;
}

/* Contact Actions */
.contact-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-contact-solid, .btn-contact-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.btn-contact-solid {
  background-color: var(--brand-navy);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(4, 26, 80, 0.15);
}

.btn-contact-solid:hover {
  background-color: var(--brand-teal);
  transform: translateY(-4px);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(47, 111, 111, 0.25);
}

.btn-contact-outline {
  background-color: #ffffff;
  color: var(--brand-navy);
  border: 1px solid rgba(4, 26, 80, 0.15);
}

.btn-contact-outline:hover {
  border-color: var(--brand-navy);
  background-color: rgba(4, 26, 80, 0.03);
  transform: translateY(-4px);
}

.btn-contact-solid i { transition: transform 0.3s ease; }
.btn-contact-solid:hover i { transform: translateX(5px); }

/* ================= RIGHT SIDE (Contact UI Visual) ================= */
.contact-visual {
  flex: 0.9;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 450px;
}

/* Central Portal */
.journey-portal {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
}

.portal-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(4, 26, 80, 0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 { width: 300px; height: 300px; animation: pulseRingOut 4s infinite; }
.ring-2 { width: 400px; height: 400px; animation: pulseRingOut 4s infinite 1.5s; }

@keyframes pulseRingOut {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.portal-core {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-navy) 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 2rem;
  box-shadow: 0 15px 35px rgba(4, 26, 80, 0.2);
  z-index: 2;
  animation: floatCore 4s ease-in-out infinite;
}

@keyframes floatCore {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Floating UI Contact Cards */
.contact-ui-card {
  position: absolute;
  background: #ffffff;
  padding: 14px 24px 14px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 40px rgba(4, 26, 80, 0.08);
  border: 1px solid rgba(4, 26, 80, 0.05);
  z-index: 3;
  transition: all 0.4s ease;
  animation: floatCards 5s ease-in-out infinite;
}

.contact-ui-card:hover {
  transform: translateY(-5px) scale(1.05) !important; /* Override animation on hover */
  border-color: var(--brand-teal);
  box-shadow: 0 20px 45px rgba(47, 111, 111, 0.15);
  z-index: 10;
}

.ui-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(4, 26, 80, 0.05);
  color: var(--brand-navy);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-ui-card:hover .ui-icon-wrap {
  background: var(--brand-teal);
  color: #ffffff;
}

.ui-text-wrap {
  display: flex;
  flex-direction: column;
}

.ui-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.ui-status {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}

.status-dot.green { background-color: #10B981; } /* Keeping a tiny green dot for "Online" status realism */

/* Positions */
.booking-card { top: 15%; right: 0; animation-delay: 0s; }
.chat-card { bottom: 25%; left: 0; animation-delay: -2s; }
.pilot-card { bottom: 5%; right: 15%; animation-delay: -4s; }

@keyframes floatCards {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Background Glowing Aura */
.contact-glow {
  position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(47, 111, 111, 0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* ================= RESPONSIVE DESIGN (Tablets & Mobile) ================= */
@media (max-width: 1024px) {
  .contact-hero-container { 
    flex-direction: column; 
    text-align: center; 
    gap: 60px; 
  }
  .contact-content { 
    align-items: center; 
  }
  .contact-subtitle { 
    margin-left: auto; 
    margin-right: auto; 
  }
  .contact-actions { 
    justify-content: center; 
  }
  /* Tablet par cards screen ke bahar na jayein isliye thoda andar liya */
  .booking-card { right: 5%; }
  .chat-card { left: 5%; }
}

/* ================= RESPONSIVE DESIGN (Tablets & Mobile) ================= */
@media (max-width: 1024px) {
  .contact-hero-container { flex-direction: column; text-align: center; gap: 60px; }
  .contact-content { align-items: center; }
  .contact-subtitle { margin-left: auto; margin-right: auto; }
  .contact-actions { justify-content: center; }
  .booking-card { right: 5%; }
  .chat-card { left: 5%; }
}

@media (max-width: 768px) {
  .contact-hero-wrapper { padding: 80px 20px 60px 20px; }
  .contact-title { font-size: 2.6rem; letter-spacing: -1px; }
  .contact-actions { flex-direction: column; width: 100%; }
  .btn-contact-solid, .btn-contact-outline { width: 100%; justify-content: center; }
  
  /* Visual Container ko poori width di aur scale hata diya */
  .contact-visual { 
    min-height: 350px; 
    margin-top: 20px; 
    width: 100%;
    transform: none; /* Scale hata diya taaki bada dikhe */
  }

  /* Center Rings ko screen ke hisaab se resize kiya */
  .journey-portal { width: 120px; height: 120px; }
  .portal-core { width: 65px; height: 65px; font-size: 1.5rem; }
  .ring-1 { width: 260px; height: 260px; }
  .ring-2 { width: 340px; height: 340px; }

  /* Cards ka size normal rakha */
  .contact-ui-card { padding: 10px 16px 10px 10px; }
  .ui-icon-wrap { width: 36px; height: 36px; font-size: 1rem; }
  .ui-title { font-size: 0.85rem; }

  /* Cards ki position ko screen ke left aur right end tak khich diya */
  .booking-card { top: 5%; right: 0; }
  .chat-card { top: 55%; left: 0; }
  .pilot-card { bottom: 5%; right: 5%; }

  .contact-glow { width: 250px; height: 250px; }
}

@media (max-width: 480px) {
  /* Chhoti screens (jaise iPhone SE) ke liye adjust */
  .ring-2 { width: 300px; height: 300px; }
  .booking-card { right: -5%; }
  .chat-card { left: -5%; }
  .pilot-card { right: 0; bottom: 0; }
}


   /* =========================================
   Contact Form - No-Scroll Split Layout (Updated Colors)
   ========================================= */

:root {
  --brand-navy: #041A50;
  --brand-teal: #2F6F6F;
  --bg-light: #F9FAFB;
  --border-color: #E5E7EB;
  --text-main: #1F2937;
  --text-muted: #6B7280;
}

/* Wrapper */
.contact-split-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #ffffff;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  padding: 40px 20px;
  box-sizing: border-box;
}

.contact-split-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(4, 26, 80, 0.08);
  overflow: hidden;
  border: 1px solid rgba(4, 26, 80, 0.05);
}

/* Left Side: Form Area */
.contact-form-side {
  flex: 1.2;
  padding: 50px;
  background-color: #ffffff;
}

.form-header {
  margin-bottom: 30px;
}

.form-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brand-navy); /* Color 1: Navy */
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Form Fields */
.premium-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-navy); /* Color 1: Navy */
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--bg-light);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.select-wrapper {
  position: relative;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.form-group textarea {
  resize: none;
  height: 90px;
}

/* FOCUS EFFECT USING TEAL (Color 2) */
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-teal); /* Color 2: Teal */
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(47, 111, 111, 0.1); /* Soft Teal Glow */
}

/* Submit Button */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.submit-btn {
  background-color: var(--brand-navy); /* Color 1: Navy */
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--brand-teal); /* Color 2: Teal on Hover */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 111, 111, 0.3); /* Teal Shadow */
}

.security-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 250px;
  line-height: 1.4;
}

/* =========================================
   Right Side: Info Panel (BOTH COLORS BLENDED)
   ========================================= */
.contact-info-side {
  flex: 0.8;
  /* PERFECT GRADIENT OF NAVY TO TEAL */
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-teal) 100%);
  color: #ffffff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Benefit Icons inside Dark Panel */
.benefit-icon {
  font-size: 20px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15); /* Subtle white box for contrast */
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}

.benefit-item h4 {
  margin: 0 0 4px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.benefit-item p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.info-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

/* Contact Details */
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-details li i {
  font-size: 22px;
  color: #ffffff; /* Clean white icons on the Navy/Teal gradient */
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50%;
}

.detail-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .contact-split-wrapper {
    min-height: auto;
    padding: 20px;
  }
  .contact-split-container {
    flex-direction: column;
  }
  .form-row, .benefits-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-side, .contact-info-side {
    padding: 30px 20px;
  }
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .security-note {
    max-width: 100%;
  }
}

 /* =========================================
   Next Steps 3-Card Grid (Strict Theme Colors)
   ========================================= */

:root {
  --brand-navy: #041A50;
  --brand-teal: #2F6F6F;
  --bg-section: #F8FAFC;
  --bg-card: #FFFFFF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
}

.next-steps-wrapper {
  padding: 100px 20px;
  background-color: var(--bg-section);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.next-steps-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Styling */
.steps-header {
  text-align: center;
  margin-bottom: 60px;
}

.steps-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(47, 111, 111, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
}

.steps-title {
  color: var(--brand-navy);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.steps-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center; 
}

/* Base Card Style */
.step-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(4, 26, 80, 0.04);
  border: 1px solid rgba(4, 26, 80, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(4, 26, 80, 0.08);
  border-color: rgba(47, 111, 111, 0.2);
}

/* Icon Wrap */
.step-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(47, 111, 111, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  transition: all 0.3s ease;
}

.step-icon {
  font-size: 32px;
  color: var(--brand-teal);
}

.step-card:hover .step-icon-wrap {
  background: var(--brand-teal);
}

.step-card:hover .step-icon {
  color: #ffffff;
}

/* Typography */
.step-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 16px;
}

.step-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1; 
}

/* Standard CTA */
.step-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-navy);
  background: rgba(4, 26, 80, 0.05);
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.step-cta i {
  transition: transform 0.3s ease;
}

.step-card:hover .step-cta {
  background: var(--brand-navy);
  color: #ffffff;
}

.step-card:hover .step-cta i {
  transform: translateX(5px);
}

/* =========================================
   Highlighted Center Card (Pilot Option)
   ========================================= */
.step-highlight {
  background: linear-gradient(145deg, var(--brand-navy) 0%, var(--brand-teal) 100%);
  color: #ffffff;
  padding: 50px 30px; 
  border: none;
  box-shadow: 0 20px 50px rgba(4, 26, 80, 0.2);
  transform: scale(1.03); 
  z-index: 2;
}

.step-highlight:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 30px 60px rgba(4, 26, 80, 0.3);
}

/* "Most Recommended" Badge - Strict Colors */
.popular-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff; 
  color: var(--brand-navy); 
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(4, 26, 80, 0.2);
}

.highlight-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
}

.highlight-icon {
  color: #ffffff;
}

.step-highlight .step-heading {
  color: #ffffff;
}

.step-highlight .step-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Highlight CTA - Strict Colors */
.cta-highlight {
  background: #ffffff;
  color: var(--brand-navy);
  border: 2px solid #ffffff;
}

.step-highlight:hover .cta-highlight {
  background: transparent;
  color: #ffffff;
}

/* Responsive Grid */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .step-highlight {
    transform: scale(1); 
    padding: 40px 30px;
  }
  
  .step-highlight:hover {
    transform: translateY(-8px);
  }
}

  /* =========================================
   FAQ Accordion (Strict Brand Colors)
   ========================================= */

:root {
  --brand-navy: #041A50;
  --brand-teal: #2F6F6F;
  --bg-section: #FFFFFF;
  --border-light: rgba(4, 26, 80, 0.1);
  --text-dark: #1E293B;
  --text-muted: #64748B;
}

.faq-wrapper {
  padding: 100px 20px;
  background-color: var(--bg-section);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.faq-container {
  max-width: 800px; /* Kept narrow for better readability */
  margin: 0 auto;
}

/* Header Styling */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-teal);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: rgba(47, 111, 111, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
}

.faq-title {
  color: var(--brand-navy);
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual FAQ Item */
.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(47, 111, 111, 0.3);
  box-shadow: 0 10px 25px rgba(4, 26, 80, 0.04);
}

/* Question (Summary) */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-navy);
  cursor: pointer;
  list-style: none; /* Removes default triangle in most browsers */
  user-select: none;
  transition: color 0.3s ease;
}

/* Remove default triangle in Safari */
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--brand-teal);
}

/* Icon Wrap */
.faq-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(4, 26, 80, 0.05);
  border-radius: 50%;
  color: var(--brand-navy);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question:hover .faq-icon-wrap {
  background: rgba(47, 111, 111, 0.1);
  color: var(--brand-teal);
}

.faq-icon {
  font-size: 1rem;
  font-weight: bold;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Answer Content */
.faq-answer {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  border-top: 1px solid transparent;
}

.faq-answer p {
  margin: 0;
}

/* Active/Open State Styling */
.faq-item[open] {
  border-color: var(--brand-teal);
  box-shadow: 0 10px 30px rgba(47, 111, 111, 0.08);
}

.faq-item[open] .faq-question {
  color: var(--brand-teal);
  border-bottom-color: var(--border-light);
}

.faq-item[open] .faq-icon-wrap {
  background: var(--brand-teal);
  color: #FFFFFF;
}

/* Rotate icon when open */
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2.2rem;
  }
  
  .faq-question {
    font-size: 1.05rem;
    padding: 20px;
  }
  
  .faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
  }
}

/* =========================================
   Form Success/Error Alert Styles
   ========================================= */
.form-status-alert {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
  animation: slideDown 0.4s ease-out;
}

.form-status-alert i {
  font-size: 1.2rem;
}

.status-success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #065f46;
}

.status-success i { color: #10B981; }

.status-error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #991b1b;
}

.status-error i { color: #EF4444; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}