:root {
  --forest: #0F766E;
  --forest-dark: #0A504B;
  --ivory: #FAFBFA;
  --cream: #EAF3F0;
  --gold: #C9A86A;
  --gold-light: #ECDDBF;
  --charcoal: #1F2937;
  --muted: #4B5563;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(15, 118, 110, 0.08);
  --radius: 16px;
  --font-serif: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--charcoal);
  line-height: 1.75;
  background: var(--ivory);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container { width: min(1120px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 94%);
  z-index: 1000;
  background: rgba(250, 251, 250, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.scrolled {
  top: 0.5rem;
  background: rgba(250, 251, 250, 0.94);
  border-color: rgba(15, 118, 110, 0.12);
  border-radius: 12px; /* boxier when docked */
  box-shadow: 0 12px 40px rgba(15, 118, 110, 0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.5rem;
  gap: 1rem;
}
.logo-link {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.02em;
}
.logo-tag {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-toggle {
  display: none;
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--forest);
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " ▾"; font-size: 0.7em; }
.nav-dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(250, 251, 250, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 118, 110, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 100;
  
  /* Smooth animations */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
  pointer-events: none;
}
.nav-dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown ul a {
  display: block;
  padding: 0.55rem 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background-color 0.2s, color 0.2s;
  border-radius: 8px;
  margin: 0 0.4rem;
}
.nav-dropdown ul a:hover {
  background-color: rgba(15, 118, 110, 0.08);
  color: var(--forest);
}
.nav-sub-dropdown { position: relative; }
.nav-sub-dropdown > a::after { content: " ▸"; font-size: 0.7em; float: right; margin-top: 0.3rem; }
.nav-sub-dropdown ul {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: rgba(250, 251, 250, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(15, 118, 110, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 101;
  
  /* Smooth animations */
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
  pointer-events: none;
}
.nav-sub-dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.header-cta { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.82rem; }
.btn-primary { background: var(--forest); color: var(--white); border-color: var(--forest); }
.btn-primary:hover { background: var(--forest-dark); color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--forest-dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }

/* Hero */
.hero {
  padding: clamp(8rem, 12vw, 10.5rem) 0 clamp(6rem, 8vw, 7.5rem);
  background: linear-gradient(165deg, var(--cream) 0%, var(--ivory) 60%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(201, 168, 106, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest);
  margin: 0 0 1rem;
}
.hero .eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.hero .lead { font-size: 1.1rem; color: var(--muted); margin-bottom: 1.5rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.badge {
  background: var(--white);
  border: 1px solid rgba(15, 118, 110, 0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 118, 110, 0.06);
}
.hero-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--forest);
  margin: 0 0 1rem;
}
.hero-card ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.hero-card li { margin-bottom: 0.5rem; }
.hero-portrait {
  aspect-ratio: 1.2;
  background: linear-gradient(to top, rgba(10, 80, 75, 0.8) 0%, rgba(10, 80, 75, 0.1) 50%, transparent 100%), url('../images/dr-neerja.webp') no-repeat center center;
  background-size: cover;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  color: var(--white);
  box-shadow: var(--shadow);
}
.hero-portrait p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0;
  font-style: italic;
  opacity: 0.9;
}

/* Sections */
section { padding: clamp(4.5rem, 7vw, 6rem) 0; }
section.alt { background: var(--cream); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; }
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--forest);
  margin: 0 0 0.75rem;
}
.section-header p { color: var(--muted); margin: 0; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--forest);
  margin: 0 0 0.5rem;
}
.card p { color: var(--muted); font-size: 0.95rem; margin: 0 0 1rem; }
.card .link { font-weight: 600; font-size: 0.9rem; }

/* Trust strip */
.trust-strip {
  background: var(--forest);
  color: var(--white);
  padding: 1.25rem 0;
  font-size: 0.85rem;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  text-align: center;
}
.trust-strip span { opacity: 0.85; }
.trust-strip strong { color: var(--gold-light); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.75rem;
}
.cta-banner p { opacity: 0.9; max-width: 520px; margin: 0 auto 1.5rem; }

/* Page hero (inner) */
.page-hero {
  padding: clamp(7rem, 10vw, 8.5rem) 0 3.5rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(15, 118, 110, 0.08);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--forest);
  margin: 0 0 0.5rem;
}
.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.page-hero .lead { color: var(--muted); font-size: 1.1rem; max-width: 720px; margin: 0; }

/* Content prose */
.prose { max-width: 760px; }
.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--forest);
  margin: 2rem 0 0.75rem;
}
.prose h3 { font-size: 1.15rem; color: var(--forest); margin: 1.5rem 0 0.5rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.commitment-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  margin-bottom: 1rem;
}
.commitment-card h4 { margin: 0 0 0.35rem; color: var(--forest); }
.commitment-card p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 118, 110, 0.08);
  position: relative;
}
.testimonial::before {
  content: """;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}
.testimonial p { margin: 1.5rem 0 1rem; font-style: italic; color: var(--charcoal); }
.testimonial cite { font-weight: 600; color: var(--forest); font-style: normal; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(15, 118, 110, 0.08);
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item button::after { content: "+"; font-size: 1.25rem; color: var(--gold); }
.faq-item.open button::after { content: "−"; }
.faq-item .answer {
  display: none;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.faq-item.open .answer { display: block; }

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.gallery-filters button {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--forest);
  background: transparent;
  color: var(--forest);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
}
.gallery-filters button.active,
.gallery-filters button:hover {
  background: var(--forest);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.gallery-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream), #ddd8ce);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}
.gallery-item figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.08);
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card .thumb {
  height: 160px;
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  opacity: 0.85;
}
.blog-card .body { padding: 1.25rem; }
.blog-card .tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
}
.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0.35rem 0 0.5rem;
  color: var(--forest);
}
.blog-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* Form */
.form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 560px;
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--forest);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 118, 110, 0.08);
}
.contact-info h3 { font-family: var(--font-serif); color: var(--forest); margin-top: 0; }
.map-placeholder {
  aspect-ratio: 16/10;
  background: var(--cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin-top: 1rem;
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 0;
  margin-top: 8rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.site-footer h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--gold-light); }
.footer-brand .logo-name { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.7;
}

/* Mobile bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 0.5rem;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
}
.mobile-bar a {
  text-align: center;
  padding: 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 10px;
  background: var(--cream);
  color: var(--forest);
}
.mobile-bar a.primary { background: var(--forest); color: var(--white); }

.phone-float {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.phone-float a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow);
  color: var(--white);
}
.phone-float .call { background: var(--forest); }
.phone-float .whatsapp { background: #25d366; }

.disclaimer {
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--cream);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(15, 118, 110, 0.08);
    margin: 0;
    background: rgba(250, 251, 250, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: none;
  }
  .site-header.scrolled {
    top: 0;
    border-radius: 0;
    padding: 0;
  }
  .header-inner {
    padding: 0.75rem 0;
  }
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; }
  .nav-dropdown ul, .nav-sub-dropdown ul {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: 1rem;
    background: transparent;
    border: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .nav-dropdown.open > ul, .nav-sub-dropdown.open > ul { display: flex; }
  .nav-sub-dropdown > a::after { content: " ▾"; float: none; margin-left: 0.25rem; }
  .header-cta { display: none; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 4rem; }
  .phone-float { bottom: 5.5rem; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Social Media Button Styling */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s, box-shadow 0.25s, background-color 0.25s;
}
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.social-btn.instagram {
  background: rgba(225, 48, 108, 0.25);
}
.social-btn.instagram:hover {
  background: #E1306C;
}
.social-btn.linkedin {
  background: rgba(0, 119, 181, 0.25);
}
.social-btn.linkedin:hover {
  background: #0077B5;
}
.social-btn.facebook {
  background: rgba(24, 119, 242, 0.25);
}
.social-btn.facebook:hover {
  background: #1877F2;
}
.social-btn.youtube {
  background: rgba(255, 0, 0, 0.25);
}
.social-btn.youtube:hover {
  background: #FF0000;
}
