/* =====================
   ROOT VARIABLES
===================== */
:root {
  --primary: #1E6BD6;
  --accent: #0FB9B1;
  --dark: #0F172A;
  --text: #334155;
  --muted: #64748B;
  --bg-light: #F4F9FF;
  --white: #ffffff;
  --border: #E5E7EB;

  --shadow-soft: 0 10px 30px rgba(15,23,42,0.06);
  --shadow-medium: 0 20px 60px rgba(15,23,42,0.12);
}

/* =====================
   RESET & GLOBAL
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img, video {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.container.small {
  max-width: 1000px;
}

section {
  padding: 90px 0;
}

h1, h2, h3, h4 {
  color: var(--dark);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 60px;
}

.light {
  background: var(--bg-light);
}

/* =====================
   NAVBAR
===================== */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-flex {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 42px;
  width: auto;
}

.logo span {
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.logo small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 25px;
  display: none;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  font-weight: 600;
  color: var(--dark);
}

.mobile-menu.open {
  display: flex;
}


.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  color: var(--dark);
  padding: 6px 0;
}

/* Subtle underline indicator */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: var(--primary);
}

/* =====================
   HERO (REFINED)
===================== */
.hero {
  background:
    radial-gradient(
      800px 400px at 75% 50%,
      rgba(30,107,214,0.06),
      transparent 70%
    ),
    #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start;
}

.hero-text .tag {
  display: inline-block;
  background: rgba(30,107,214,0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.1rem;
  line-height: 1.18;
  margin: 26px 0 18px;
}

.hero-text .accent {
  color: var(--primary);
}

.hero-text p {
  max-width: 520px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  margin-top: 32px;
  padding: 15px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 14px 40px rgba(30,107,214,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(30,107,214,0.35);
}

.hero-image img {
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(15,23,42,0.18);
  object-fit: cover;
}

/* =====================
   ABOUT DOCTOR
===================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-image img {
  border-radius: 26px;
  box-shadow: var(--shadow-medium);
}

.about-tag {
  display: inline-block;
  background: rgba(30,107,214,0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 15px;
  max-width: 520px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.about-highlights span {
  background: var(--bg-light);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =====================
   SERVICES
===================== */
.signature-services {
  background: linear-gradient(180deg, #ffffff, var(--bg-light));
}

.feature-service {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 34px;
  padding: 55px;
  color: var(--white);
  box-shadow: 0 30px 90px rgba(30,107,214,0.28);
  margin-bottom: 70px;
}

.feature-tag {
  background: rgba(255,255,255,0.22);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-service h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  margin: 16px 0;
}

.supporting-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}



.service-mini {
  position: relative;
  background: var(--white);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Accent strip */
.service-mini::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-mini:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.service-mini:hover::before {
  opacity: 1;
}


/* =====================
   CLINIC GALLERY
===================== */
.clinic-gallery {
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.gallery-item {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-item img {
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* =====================
   TESTIMONIALS
===================== */
.video-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.video-track {
  display: flex;
  gap: 30px;
}

.video-card {
  flex: 0 0 360px;
  background: var(--white);
  padding: 15px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.video-card video {
  border-radius: 18px;
}

/* =====================
   FAQ
===================== */
.faq {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}


/* =====================
   MAP
===================== */
#location iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* =====================
   WHATSAPP FLOAT
===================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 22px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(37,211,102,0.35);
  z-index: 1002;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* =====================
   SCROLL REVEAL
===================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

[data-reveal].active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   MOBILE
===================== */
@media (max-width: 900px) {
  section { padding: 65px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-text p {
    margin: 0 auto;
  }

  .about-highlights {
    justify-content: center;
  }

  .feature-service {
    padding: 36px 24px;
    text-align: center;
  }

  .supporting-services {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
  }

  .gallery-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .video-card {
    flex: 0 0 85%;
  }
}
/* =====================
   FOOTER
===================== */
.site-footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 42px;
  height: auto;
}

.footer-logo strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.footer-logo span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #94A3B8;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #94A3B8;
}
.footer-contact a {
  color: #CBD5E1;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* =====================
   FOOTER MOBILE
===================== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}
/* =====================
   GOOGLE REVIEWS
===================== */
.google-reviews {
  background: var(--bg-light);
}

.reviews-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.review-card {
  flex: 0 0 320px;
  background: var(--white);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  scroll-snap-align: start;
}

.stars {
  color: #FBBF24;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.reviewer {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
}

/* =====================
   HERO – MOBILE (FROSTED GLASS, FIXED)
===================== */
/* =====================
   DESKTOP SPACING OPTIMIZATION
===================== */
@media (min-width: 901px) {

  /* Reduce space after hero */
  .hero {
    padding-bottom: 50px;
  }
  .hero-grid {
    gap: 48px;
  }
  /* Doctor section tighter */
  .about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-section .section-title {
    margin-bottom: 36px;
  }
  /* Services closer to doctor */
  .signature-services {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .signature-services .section-title {
    margin-bottom: 40px;
  }

  .feature-service {
    margin-bottom: 40px;
  }
  /* Clinic slightly tighter */
  .clinic-gallery {
    padding-top: 60px;
  }
}

/* =====================
   MOBILE TAP FEEDBACK
===================== */
@media (max-width: 900px) {
  .mobile-menu a,
  .service-mini,
  .faq-item {
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu a:active,
  .service-mini:active,
  .faq-item:active {
    background: rgba(30,107,214,0.06);
  }
}
/* =====================
   HERO HEIGHT CONTROL (DESKTOP)
===================== */
@media (min-width: 901px) {
  .hero-image img {
    max-height: 520px;
    width: 100%;
    object-fit: cover;
  }
}
/* =====================
   MAP FULL BLEED FIX
===================== */
#location {
  padding: 0;
}
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

[data-reveal].active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   FIX MOBILE TOUCH BLOCKING
===================== */
.hero::before,
.hero-image {
  pointer-events: none;
}
.navbar,
.hamburger {
  pointer-events: auto;
}
.hamburger {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
