@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #6b9080;
  --primary-light: #e8f3ee;
  --primary-dark: #2a3d35;
  --secondary: #906b7b;
  --secondary-light: #f3eaef;
  --bg: #fdfaf7;
  --text: #4a6558;
  --text-dark: #2a3d35;
  --cream: #f4f9f6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: var(--text-dark);
}
/* ── NAVBAR ── */
.site-navbar {
   position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(253,250,247,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.site-navbar.scrolled {
  border-color: rgba(107,144,128,0.15);
  box-shadow: 0 2px 24px rgba(107,144,128,0.12);
}
.site-navbar {
  height: 90px;
  display: flex;
  align-items: center;
}

.site-navbar .container {
  height: 90px;
  display: flex;
  align-items: center;
}

.site-navbar .navbar-brand {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}

.site-navbar .navbar-brand img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}
.site-navbar .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #3d5a50 !important;
  padding: 0.4rem 0.75rem;
  position: relative;
  transition: color 0.2s;
}
.site-navbar .nav-link.active,
.site-navbar .nav-link:hover { color: var(--primary) !important; }
.site-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0.75rem; right: 0.75rem;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
}
.btn-book {
  background: var(--secondary);
  color: #fff !important;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  border: none;
  transition: opacity 0.2s;
}
.btn-book:hover { opacity: 0.88; color: #fff !important; }

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  background: linear-gradient(160deg, #f0f7f3 0%, #fdf8f5 50%, #f7f0f4 100%);
  position: relative;
  overflow: hidden;
}
.hero-blob-1 {
  position: absolute; top: -80px; right: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,144,128,0.18), transparent);
  pointer-events: none;
}
.hero-blob-2 {
  position: absolute; bottom: -40px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(144,107,123,0.14), transparent);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.hero-title em { color: var(--primary); font-style: italic; }
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.btn-primary-custom {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 1rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 28px rgba(144,107,123,0.3);
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary-custom:hover { opacity: 0.9; transform: translateY(-2px); color: #fff; }
.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: none;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.btn-outline-custom:hover { color: var(--primary-dark); }

/* ── SECTION COMMONS ── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.25;
  color: var(--text-dark);
}
.section-title em { font-style: italic; color: var(--primary); }

/* ── CARDS ── */
.why-card {
  background: linear-gradient(135deg, #f0f7f3, #fdf8f5);
  border: 1px solid rgba(107,144,128,0.15);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
}
.icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  background: rgba(107,144,128,0.12);
  color: var(--primary);
  font-size: 1.4rem;
}
.icon-circle.mauve { background: rgba(144,107,123,0.1); color: var(--secondary); }

.service-card {
  background: #fff;
  border: 1px solid rgba(107,144,128,0.15);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(107,144,128,0.06);
  transition: transform 0.2s;
  height: 100%;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon-box {
  width: 48px; height: 48px;
  border-radius: 0.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(144,107,123,0.1);
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ── TESTIMONIALS ── */
.testi-card {
  background: #fff;
  border: 1px solid rgba(144,107,123,0.12);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(144,107,123,0.06);
  height: 100%;
}
.stars { color: var(--secondary); letter-spacing: 2px; margin-bottom: 1rem; font-size: 0.85rem; }

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--primary);
  padding: 5rem 1.5rem;
  text-align: center;
}
.quote-band blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.quote-band cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #f0f7f3, #f7f0f4);
  padding: 5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(107,144,128,0.1);
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 9rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(160deg, #f0f7f3 0%, #fdf8f5 60%, #f7f0f4 100%);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }

/* ── ABOUT ── */
.avatar-box {
  background: linear-gradient(135deg, #d4e8df, #e8d4df);
  border-radius: 2rem;
  aspect-ratio: 1;
  max-width: 340px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 16px 48px rgba(107,144,128,0.18);
  margin: 0 auto;
}
.avatar-initials {
  width: 88px; height: 88px; border-radius: 50%;
  background: rgba(107,144,128,0.2);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.credential-item {
  background: linear-gradient(135deg, #f0f7f3, #fdf8f5);
  border: 1px solid rgba(107,144,128,0.15);
  border-radius: 0.875rem;
  padding: 1rem 1.25rem;
  display: flex; gap: 0.875rem; align-items: flex-start;
  height: 100%;
}
.cred-icon {
  width: 40px; height: 40px; border-radius: 0.5rem; shrink: 0;
  background: rgba(107,144,128,0.12);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.approach-card {
  background: #fff;
  border: 1px solid rgba(107,144,128,0.15);
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(107,144,128,0.06);
  height: 100%;
}
.accent-bar {
  width: 32px; height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ── SERVICES PAGE ── */
.service-full-card {
  background: #fff;
  border: 1px solid rgba(107,144,128,0.15);
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: 0 2px 16px rgba(107,144,128,0.06);
  margin-bottom: 1.5rem;
}
.service-full-card:nth-child(even) { background: #f9fdf9; }
.highlight-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(107,144,128,0.08);
  color: var(--text);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  margin: 0.25rem;
}
.highlight-pill svg { color: var(--primary); }
.step-card {
  background: #fff;
  border: 1px solid rgba(107,144,128,0.15);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(107,144,128,0.06);
  height: 100%;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(107,144,128,0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* ── FAQ ── */
.faq-wrap { border: 1px solid rgba(107,144,128,0.15); border-radius: 1.25rem; overflow: hidden; background: #fff; }
.faq-item { border-bottom: 1px solid rgba(107,144,128,0.12); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.25rem 1.5rem;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500;
  color: var(--text-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; transition: background 0.2s;
}
.faq-question:hover { background: rgba(107,144,128,0.04); }
.faq-question .faq-icon { font-size: 1.2rem; color: var(--primary); transition: transform 0.25s; flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem; line-height: 1.75; color: var(--text);
}
.faq-answer.open { display: block; }

/* ── CONTACT ── */
.contact-info-card {
  background: #f9fdf9;
  border: 1px solid rgba(107,144,128,0.15);
  border-radius: 0.875rem;
  padding: 1.1rem 1.25rem;
  display: flex; gap: 0.875rem; align-items: flex-start;
  margin-bottom: 0.875rem;
}
.info-icon {
  width: 40px; height: 40px; border-radius: 0.5rem;
  background: rgba(107,144,128,0.12);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.form-control-custom {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(107,144,128,0.25);
  border-radius: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107,144,128,0.12);
}
.form-label-custom {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-error {
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.3rem;
  display: none;
}
.map-placeholder {
  background: #e8f3ee;
  border: 1px solid rgba(107,144,128,0.2);
  border-radius: 0.875rem;
  height: 160px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; text-align: center; padding: 1rem;
}
.success-msg {
  background: linear-gradient(135deg, #f0f7f3, #f7f0f4);
  border: 1px solid rgba(107,144,128,0.15);
  border-radius: 1.5rem;
  padding: 3.5rem 2rem;
  text-align: center;
  display: none;
}
.success-msg.visible { display: block; }

/* ── FOOTER ── */
.site-footer { background: #2a3d35; color: white; }
.site-footer h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
  text-align: left;
}
.site-footer a { color: white; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.site-footer ul li { margin-bottom: 0.65rem; }
.footer-bottom {
  border-top: 1px solid rgba(107,144,128,0.2);
  padding: 1.25rem 0;
  font-size: 0.78rem; color: #cfcece;
}

/* ── REASSURANCE STRIP ── */
.reassure-strip { background: var(--cream); padding: 4rem 1.5rem; }
.reassure-bar { width: 32px; height: 4px; background: var(--secondary); border-radius: 2px; margin: 0 auto 1rem; }

/* ── SCROLL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ── UTILITIES ── */
.bg-cream { background: var(--cream); }
.bg-white-section { background: #fff; }
.text-primary-color { color: var(--primary); }
.text-secondary-color { color: var(--secondary); }
.text-dark-color { color: var(--text-dark); }
.pt-nav { padding-top: 5rem; }

@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .quote-band blockquote { font-size: 1.4rem; }
}
.footer-logo {
  height: 85px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.2);
  margin-bottom: 1rem;
}

.doctor-image-box {
  border-radius: 2rem;
  overflow: hidden;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(107,144,128,0.18);
}

.doctor-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {


  .site-navbar .container {
    align-items: center;
  }

  .site-navbar .navbar-brand img {
    height: 58px;
  }

  .navbar-collapse {
    background: rgba(253,250,247,0.98);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1rem;
  }

  .navbar-nav {
    gap: 0.5rem !important;
    align-items: flex-start !important;
  }

  .btn-book {
    width: 100%;
    text-align: center;
  }

  .page-hero {
    padding: 8rem 1rem 3.5rem;
  }

  .page-hero h1 {
    font-size: 2.7rem;
    line-height: 1.2;
  }

  .page-hero p {
    font-size: 1rem !important;
  }

  .contact-info-card {
    margin-bottom: 0;
    height: 100%;
  }

  .footer-logo {
    height: 60px;
  }
}

@media (max-width: 767px) {

  .page-hero h1 {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-eyebrow {
    font-size: 0.68rem;
  }

  .d-inline-flex.align-items-center.gap-2.mt-4.px-4.py-2.rounded-pill {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem !important;
    font-size: 0.8rem !important;
    text-align: center;
    line-height: 1.5;
    flex-wrap: wrap;
  }

  .contact-info-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .info-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer .row > div {
    margin-bottom: 1rem;
  }

  .footer-bottom .container {
    text-align: center;
  }

  .footer-bottom span {
    width: 100%;
  }

  .site-footer i {
    margin-right: 0.35rem !important;
  }
}

@media (max-width: 575px) {

  .page-hero {
    padding-top: 7.5rem;
  }

  .page-hero h1 {
    font-size: 1.9rem;
  }

  .site-navbar .navbar-brand img {
    height: 50px;
  }

  .footer-logo {
    height: 52px;
    margin: 0 auto 1rem;
  }

  .contact-info-card a {
    word-break: break-word;
  }

  .contact-info-card p,
  .contact-info-card a {
    font-size: 0.82rem !important;
  }
}

.footer-logo {
  height: 85px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(1.5);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {

  .footer-logo {
    height: 58px;
    margin: 0 auto 1.25rem;
  }

  .site-footer .col-md-3:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-footer .col-md-3:first-child p {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {

  .footer-logo {
    height: 52px;
  }
}

.site-footer a {
  word-break: break-word;
  overflow-wrap: break-word;
}

.site-footer .col-md-3 {
  overflow: hidden;
}

@media (max-width: 991px) {

  .site-footer p,
  .site-footer a {
    font-size: 0.82rem;
    line-height: 1.7;
  }

  .site-footer .col-md-3:last-child a {
    display: inline-block;
    max-width: 100%;
    word-break: break-word;
  }
}
.site-footer p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.site-footer p i {
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.site-footer p a {
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.7;
}

@media (max-width: 768px) {

  .site-footer .row {
    row-gap: 2.5rem;
  }

  .site-footer .col-md-3 {
    width: 100%;
    text-align: center;
  }

  .site-footer .col-md-3:last-child {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
  }

  .site-footer .col-md-3:last-child p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
  }

  .site-footer .col-md-3:last-child i {
    flex-shrink: 0;
    margin-top: 0.3rem;
  }

  .site-footer .col-md-3:last-child a {
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.7;
  }
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-card a {
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.6;
}

@media (max-width: 1200px) {

  .contact-info-card {
    padding: 1rem;
  }

  .contact-info-card a,
  .contact-info-card p {
    font-size: 0.82rem !important;
  }
}

/* =========================
   MOBILE NAVBAR
========================= */

@media (max-width: 991px) {


  .site-navbar .navbar-brand img {
    height: 54px;
  }

  .navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 0.35rem 0.55rem;
    border-radius: 0.9rem;
    background: rgba(107,144,128,0.08);
    transition: all 0.3s ease;
  }

  .navbar-toggler:hover {
    background: rgba(107,144,128,0.14);
  }

  .navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .navbar-collapse {
    margin-top: 1rem;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    padding: 1.2rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    animation: mobileMenu 0.25s ease;
  }

  .navbar-nav {
    gap: 0.2rem !important;
    align-items: stretch !important;
  }

  .navbar-nav .nav-link {
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    font-size: 1rem;
    transition: all 0.25s ease;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(107,144,128,0.08);
  }

  .btn-book {
    width: 100%;
    margin-top: 0.8rem;
    justify-content: center;
    display: flex;
  }
}

@keyframes mobileMenu {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {

  .site-navbar {
    height: 78px;
  }

  .site-navbar .container {
    height: 78px;
    min-height: unset;
  }
}

.sky{
  font-size: 13px;
  color: #cfcece !important;
}

.sky:hover{
  color: #fff !important;
}