/* ===================================================
   NAVAJEEVANA — LANDING PAGE STYLES (landing.css)
   Extends style.css — same teal theme
=================================================== */

/* ---- HERO CHECKS ---- */
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-checks span {
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-content .btn-primary i,
.hero-content .btn-secondary i {
  margin-right: 6px;
}

/* ---- TRUST BAND ---- */
.trust-band {
  background: #f0fdfa;
  border-top: 3px solid #0d9488;
  border-bottom: 1px solid #ccfbf1;
  padding: 28px 40px;
}

.trust-inner {
  max-width: 860px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.trust-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.trust-inner p {
  font-size: 17px;
  color: #1a3a4a;
  line-height: 1.7;
  margin: 0;
}

.trust-inner p strong {
  color: #0f766e;
}

/* ---- CONDITIONS ---- */
.conditions {
  background: #ffffff;
  padding: 80px 40px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: auto;
}

.condition-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px 28px;
  transition: 0.3s;
  position: relative;
}

.condition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: #99f6e4;
}

.cond-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.cond-badge {
  display: inline-block;
  background: rgba(13,148,136,0.1);
  color: #0f766e;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.condition-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: #1a3a4a;
}

.condition-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

.cond-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #0f766e;
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 500;
}

/* ---- SYMPTOMS ---- */
.symptoms-section {
  background: linear-gradient(135deg, #0f4c5c, #0f766e);
  padding: 80px 40px;
}

.symptoms-inner {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.symptom-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 16px 20px;
  text-align: left;
  transition: 0.25s;
}

.symptom-item:hover {
  background: rgba(255,255,255,0.18);
}

.sym-icon {
  width: 34px;
  height: 34px;
  background: #0d9488;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.symptom-item span {
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  font-weight: 500;
}

.symptoms-note {
  margin-top: 30px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
}

/* ---- TREATMENT NOTE ---- */
.treatment-note {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: #1a3a4a;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  width: 100%;
  max-width: 700px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.treatment-note strong {
  color: #0f766e;
}

/* ---- LOCAL SEO ---- */
.local-seo {
  background: #f5f7fb;
  padding: 80px 40px;
}

.local-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.local-text h2 {
  font-size: 32px;
  color: #1a3a4a;
  margin: 12px 0 16px;
}

.local-text p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 24px;
}

.search-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-pill {
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 25px;
  padding: 8px 16px;
  font-size: 14px;
  color: #1a3a4a;
  font-weight: 500;
  transition: 0.25s;
}

.search-pill:hover {
  border-color: #0d9488;
  color: #0f766e;
}

.cta-box {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.cta-box h3 {
  font-size: 22px;
  color: #1a3a4a;
  margin-bottom: 12px;
}

.cta-box p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

.cta-box .btn-primary {
  margin-top: 10px;
}

.cta-box .whatsapp-btn {
  display: flex;
  justify-content: center;
}

/* ---- FAQ ---- */
.faq-section {
  background: #ffffff;
  padding: 80px 40px;
}

.faq-list {
  max-width: 820px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.25s;
}

.faq-item:hover {
  border-color: #0d9488;
}

.faq-item.open {
  border-color: #0d9488;
  box-shadow: 0 4px 20px rgba(13,148,136,0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1a3a4a;
}

.faq-icon {
  color: #0f766e;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ---- CONTACT FORM SELECT ---- */
.contact-form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #64748b;
  font-size: 15px;
  font-family: 'Segoe UI', sans-serif;
  appearance: none;
  cursor: pointer;
}

/* ---- MOBILE RESPONSIVE ---- */
@media (max-width: 768px) {

  .trust-band {
    padding: 20px;
  }

  .trust-inner {
    flex-direction: column;
    text-align: center;
  }

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

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

  .local-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-checks {
    gap: 6px;
  }

  .hero-checks span {
    font-size: 14px;
  }

}


/* ---- MOBILE NAV OVERRIDE (landing page) ---- */
@media (max-width: 768px) {

  /* Ensure nav-links dropdown anchors to fixed navbar */
  #navbar {
    position: fixed !important;
  }

  #navLinks {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
  }

  /* FAQ tap area big enough for mobile */
  .faq-question {
    padding: 18px 20px;
    font-size: 15px;
  }

  /* CTA box padding on small screens */
  .cta-box {
    padding: 24px 20px;
  }

  /* Process grid single column */
  .process-grid {
    grid-template-columns: 1fr;
  }

}





/* ---- SERVICES DROPDOWN MOBILE (landing page) ---- */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,0.08) !important;
    min-width: unset !important;
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    display: block !important;
  }
  .has-dropdown.mobile-open > .dropdown-menu {
    max-height: 300px !important;
  }
  .dropdown-menu li a {
    display: block !important;
    padding: 13px 24px 13px 44px !important;
    font-size: 15px !important;
    color: rgba(255,255,255,0.80) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  }
}
