:root {
  --primary: #2D5E3A;
  --primary-light: #3E7A50;
  --primary-dark: #1A3D26;
  --accent: #C4882A;
  --accent-light: #E8B45A;
  --cream: #F8F3EA;
  --cream-dark: #EDE5D5;
  --white: #FFFFFF;
  --text-dark: #1C2B1E;
  --text-mid: #4A5A4D;
  --text-light: #7A8A7D;
  --gold: #B8962E;
  --border: rgba(45,94,58,0.15);
  --shadow: 0 8px 40px rgba(45,94,58,0.12);
  --radius: 16px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'DM Sans',sans-serif;background:var(--cream);color:var(--text-dark);overflow-x:hidden;}

/* ─── TOPBAR ─── */
.topbar{background:var(--primary);color:#fff;padding:8px 0;font-size:13px;}
.topbar-inner{max-width:1280px;margin:0 auto;padding:0 24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;}
.topbar a{color:#fff;text-decoration:none;opacity:.85;transition:.2s;}
.topbar a:hover{opacity:1;}
.topbar-left,.topbar-right{display:flex;align-items:center;gap:16px;}
.topbar-social a{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,0.1);transition:.2s;}
.topbar-social a:hover{background:var(--accent);}
.topbar-btn {
  background: var(--accent);
  color: #fff !important;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  opacity: 1 !important;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 0.3px;
  border: 1.5px solid var(--accent);
  transition: .25s ease;
}
.topbar-social{
  display:flex;
  align-items:center;
  gap:12px;
}

.topbar-social a{

  width:38px;
  height:38px;

  border-radius:50%;

background: rgb(255, 255, 255);
  display:flex;
  align-items:center;
  justify-content:center;

  transition:.25s ease;
}

.topbar-social a:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,0.22);
}

.topbar-social img{
  width:35px;
  height:35px;
  object-fit:contain;
}

/* ─── HEADER / NAV ─── */
#header{display:contents;}
.site-header{display:contents;}
header{background:#fff;box-shadow:none;position:relative;top:auto;z-index:auto;}
.site-header .main-header{position:sticky;top:0;z-index:5000;background:#fff;box-shadow:0 2px 20px rgba(0,0,0,0.08);}
nav{max-width:1280px;margin:0 auto;padding:0 20px;display:flex;align-items:center;justify-content:space-between;height:76px;}
.logo{display:flex;align-items:center;gap:12px;text-decoration:none;}
.logo-img{height:56px;width:auto;}
.logo-text{display:flex;flex-direction:column;}
.logo-text span:first-child{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:700;color:var(--primary-dark);line-height:1.1;}
.logo-text span:last-child{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--accent);font-weight:500;}
.nav-links{display:flex;align-items:center;gap:2px;list-style:none;}
.nav-links > li{position:relative;}
.nav-links > li > a,.nav-links > li > span{padding:8px 10px;font-size:14px;font-weight:500;color:var(--text-dark);text-decoration:none;border-radius:8px;cursor:pointer;transition:.2s;display:flex;align-items:center;gap:4px;white-space:nowrap;}
.nav-links > li > a:hover,.nav-links > li > span:hover{background:var(--cream);color:var(--primary);}
.nav-links > li.active > a{color:var(--primary);font-weight:600;}

/* ── DROPDOWN FIX ── */
.site-header .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 45px rgba(0,0,0,0.14);
  width: max-content;
  min-width: 240px;
  max-width: 300px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 5100;
}

.site-header .dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

/* open via hover */
.site-header .nav-links > li:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

/* open via JS click (for active pages) */
.site-header .nav-links > li.dropdown-open .dropdown {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.site-header .dropdown a{display:block;padding:10px 12px;font-size:13.5px;color:var(--text-dark);text-decoration:none;border-radius:8px;transition:.15s;line-height:1.35;white-space:nowrap;}
.site-header .dropdown a:hover{background:var(--cream);color:var(--primary);}
.site-header .dropdown-group{padding:4px;}
.site-header .dropdown-group-title{font-size:11px;text-transform:uppercase;letter-spacing:1.5px;color:var(--accent);font-weight:600;padding:8px 12px 6px;}
.dropdown-caret{font-size:11px;line-height:1;}
.nav-cta{background:var(--primary);color:#fff!important;border-radius:10px!important;padding:10px 14px!important;font-weight:600!important;}
.nav-cta:hover{background:var(--primary-dark)!important;color:#fff!important;}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:8px;background:transparent;border:0;}
.hamburger span{width:24px;height:2px;background:var(--text-dark);border-radius:2px;transition:.3s;}
.mobile-menu{display:none;}
.hamburger.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.is-active span:nth-child(2){opacity:0;}
.hamburger.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
/* MOBILE MENU */

/* ── HERO ── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #4A8A5C 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(196,136,42,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-leaves {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  opacity: 0.06;
  font-size: 400px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,136,42,0.2);
  border: 1px solid rgba(196,136,42,0.4);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.hero-stat { text-align: center; }

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-light);
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: .25s;
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: #A87020;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,136,42,0.4);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ── HERO IMAGE / VIDEO WRAP ── */
.hero-image-wrap {
  position: relative;
}

.hero-img-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  background: #000;
  /* 16:9 aspect ratio — no cropping */
  aspect-ratio: 5 / 4;
  width: 100%;
}

/* image fallback */
.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* iframe video — fills card fully, no crop */
.hero-img-card iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ── FLOAT CARD ── */
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero-float-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.hero-float-text { font-size: 13px; }
.hero-float-text strong { display: block; font-weight: 600; color: var(--primary-dark); }
.hero-float-text span { color: var(--text-light); }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }
}
/* ── DESKTOP ── */
.hero-img-card {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  background: #000;
}

.hero-img-card iframe,
.hero-img-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 70px 0 80px;
  }

.hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }

  .hero-image-wrap {
    display: block;
    width: 100%;
    /* remove any inherited opacity or filter */
    opacity: 1;
    filter: none;
  }

  .hero-img-card {
    position: relative;
    width: 100%;
    height: 250px ! important;
    padding-bottom: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    background: #000;
    /* isolate from parent green bg */
    isolation: isolate;
  }

  .hero-img-card iframe,
  .hero-img-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
    /* remove any color tint */
    filter: none;
    opacity: 1;
    mix-blend-mode: normal;
  }

  .hero-float-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    width: 100%;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }

  .hero-stats {
    gap: 16px;
    justify-content: space-between;
  }

  .hero-stat-num { font-size: 26px; }
  .hero-stat-label { font-size: 10px; }
  .hero-desc { font-size: 15px; margin-bottom: 24px; }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 70px; }

  .hero-inner {
    padding: 0 14px;
    gap: 24px;
  }

  .hero-img-card { border-radius: 12px; }

  .hero-float-card {
    padding: 10px 14px;
    gap: 10px;
  }

  .hero-float-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .hero-float-text { font-size: 12px; }
  .hero-stat-num { font-size: 22px; }
  .hero-badge { font-size: 10px; padding: 5px 12px; }
}


/* ─── SECTIONS COMMON ─── */
.section{padding:80px 0;}
.section-inner{max-width:1280px;margin:0 auto;padding:0 24px;}
.section-header{text-align:center;margin-bottom:56px;}
.section-eyebrow{display:inline-block;font-size:12px;letter-spacing:2.5px;text-transform:uppercase;font-weight:600;color:var(--accent);margin-bottom:12px;}
.section-title{font-family:'Cormorant Garamond',serif;font-size:clamp(32px,4vw,48px);font-weight:700;color:var(--text-dark);line-height:1.15;margin-bottom:16px;}
.section-desc{font-size:16px;color:var(--text-mid);max-width:700px;margin:0 auto;line-height:1.7;}
.bg-white{background:#fff;}
.bg-cream{background:var(--cream);}
.bg-primary{background:var(--primary-dark);}
.bg-dark{background:#111A12;}

/* ─── WHY CHOOSE ─── */
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.why-card{background:#fff;border-radius:var(--radius);padding:32px 24px;border:1px solid var(--border);text-align:center;transition:.3s;position:relative;overflow:hidden;}
.why-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--primary),var(--accent));transform:scaleX(0);transition:.3s;transform-origin:left;}
.why-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);}
.why-card:hover::before{transform:scaleX(1);}
.why-icon{width:64px;height:64px;background:var(--cream);border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:32px;margin:0 auto 20px;}
.why-card h3{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:700;color:var(--primary-dark);margin-bottom:10px;}
.why-card p{font-size:14px;color:var(--text-mid);line-height:1.6;}

/* ─── TREATMENTS ─── */
.treatments-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.treatment-card{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,0.06);transition:.3s;cursor:pointer;}
.treatment-card:hover{transform:translateY(-8px);box-shadow:0 20px 50px rgba(45,94,58,0.15);}
.treatment-img{height:220px;overflow:hidden;position:relative;}
.treatment-img img{width:100%;height:100%;object-fit:cover;transition:.5s;}
.treatment-card:hover .treatment-img img{transform:scale(1.06);}
.treatment-img-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,61,38,0.6),transparent);}
.treatment-tag{position:absolute;top:12px;right:12px;background:var(--accent);color:#fff;font-size:11px;padding:4px 10px;border-radius:20px;font-weight:600;text-transform:uppercase;letter-spacing:1px;}
.treatment-body{padding:24px;}
.treatment-body h3{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:700;color:var(--primary-dark);margin-bottom:8px;}
.treatment-body p{font-size:14px;color:var(--text-mid);line-height:1.6;margin-bottom:16px;}
.treatment-link{font-size:13px;font-weight:600;color:var(--primary);display:flex;align-items:center;gap:6px;text-decoration:none;transition:.2s;}
.treatment-link:hover{color:var(--accent);gap:10px;}

/* ─── DISEASES ─── */
.disease-tabs{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin-bottom:40px;}
.disease-tab{padding:10px 20px;border-radius:30px;border:2px solid var(--border);font-size:14px;font-weight:500;cursor:pointer;transition:.2s;background:#fff;color:var(--text-dark);}
.disease-tab.active,.disease-tab:hover{background:var(--primary);color:#fff;border-color:var(--primary);}
.disease-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.disease-item{background:#fff;border-radius:12px;padding:16px 20px;border:1px solid var(--border);display:flex;align-items:center;gap:12px;transition:.2s;text-decoration:none;color:var(--text-dark);}
.disease-item:hover{background:var(--primary);color:#fff;border-color:var(--primary);transform:translateX(4px);}
.disease-item:hover .disease-dot{background:#fff;}
.disease-dot{width:8px;height:8px;border-radius:50%;background:var(--accent);flex-shrink:0;}
.disease-name{font-size:14px;font-weight:500;}

/* ─── ABOUT STRIP ─── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}/* ── IMAGE WRAP ── */
.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: 24px;
  overflow: hidden;
  height: 480px;
}

/* ── SLIDER ── */
.about-img-slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 24px;
}

.about-img-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── EACH SLIDE ── */
.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.about-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.about-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── DOTS ── */
.about-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: .3s ease;
  display: block;
}

.about-dot.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* ── BADGE ── */
.about-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(196,136,42,0.3);
  z-index: 3;
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 13px;
  opacity: .9;
}

.about-content p{font-size:16px;color:var(--text-mid);line-height:1.8;margin-bottom:20px;}
.about-features{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:28px 0;}
.about-feature{display:flex;align-items:flex-start;gap:12px;}
.about-feature-icon{width:40px;height:40px;background:var(--cream);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0;}
.about-feature-text h4{font-size:14px;font-weight:600;color:var(--primary-dark);}
.about-feature-text p{font-size:16px;color:var(--text-light);}
.doctors-row{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.doctor-card{

  display:flex;
  align-items:center;
  gap:16px;

  background:#fff;

  padding:18px;

  border-radius:18px;

  box-shadow:0 4px 20px rgba(0,0,0,0.06);

  flex:1;
  min-width:280px;
}

.doctor-img{

  width:58px;
  height:58px;

  border-radius:50%;

  overflow:hidden;

  flex-shrink:0;

  border:3px solid var(--primary-light);
}

.doctor-img img{

  width:100%;
  height:100%;

  object-fit:cover;
}

.doctor-info h4{

  font-size:17px;

  color:var(--primary-dark);

  margin-bottom:4px;
}

.doctor-info p{

  font-size:13px;

  color:var(--text-mid);

  line-height:1.5;
}


/* CSS styles for the bottom mini-row as requested */
.doctors-row {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.doctor-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 16px;
  flex: 1;
  border: 1px solid var(--border);
}
.doctor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--border);
}
.doctor-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 0;
}
.doctor-info p {
  font-size: 20px;
  color: var(--text-light);
  margin: 2px 0 0 0;
}

@media (max-width: 768px) {
  div[style*="grid-template-columns:repeat(2,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  .doctors-row {
    flex-direction: column;
  }
}


/* ─── BLOG ─── */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.blog-card{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,0.06);transition:.3s;}
.blog-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);}
.blog-img{height:200px;overflow:hidden;}
.blog-img img{width:100%;height:100%;object-fit:cover;transition:.4s;}
.blog-card:hover .blog-img img{transform:scale(1.05);}
.blog-body{padding:24px;}
.blog-cat{font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:1.5px;color:var(--accent);margin-bottom:10px;}
.blog-body h3{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:700;color:var(--text-dark);margin-bottom:10px;line-height:1.3;}
.blog-body p{font-size:14px;color:var(--text-mid);line-height:1.6;margin-bottom:16px;}
.blog-meta{display:flex;align-items:center;gap:12px;font-size:12px;color:var(--text-light);}
.blog-read-more{font-size:13px;font-weight:600;color:var(--primary);text-decoration:none;display:flex;align-items:center;gap:6px;transition:.2s;}
.blog-read-more:hover{color:var(--accent);}


/* ─── TESTIMONIALS ─── */
.testimonials-wrap{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* TABLET */

@media(max-width:992px){

  .testimonials-wrap{
    grid-template-columns:repeat(2,1fr);
  }

}

/* MOBILE */

@media(max-width:768px){

  .testimonials-wrap{
    grid-template-columns:1fr;
    gap:18px;
  }

}.testimonial-card{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);border-radius:var(--radius);padding:32px;transition:.3s;}
.testimonial-card:hover{background:rgba(255,255,255,0.08);}
.stars{color:var(--accent-light);font-size:16px;margin-bottom:16px;letter-spacing:2px;}
.testimonial-card p{font-size:15px;color:rgba(255,255,255,0.85);line-height:1.7;margin-bottom:24px;font-style:italic;}
.testimonial-author{display:flex;align-items:center;gap:12px;}
.testimonial-avatar{width:44px;height:44px;border-radius:50%;background:var(--primary-light);display:flex;align-items:center;justify-content:center;font-size:18px;color:#fff;font-weight:600;}
.testimonial-name{font-weight:600;color:#fff;}
.testimonial-loc{font-size:12px;color:rgba(255,255,255,0.5);}
.google-review-frame {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.review-scroll {
    height: 620px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Custom Scrollbar */
.review-scroll::-webkit-scrollbar {
    width: 8px;
}

.review-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* .review-scroll::-webkit-scrollbar-thumb {
    background: #7c4dff;
    border-radius: 10px;
}

.review-scroll::-webkit-scrollbar-thumb:hover {
    background: #6236e0;
} */
/* GOOGLE REVIEWS */

/* ═══════════════════════════════
   GOOGLE REVIEW SECTION
═══════════════════════════════ */

.google-review-section{

  position:relative;

  padding:110px 0;

  background:
  linear-gradient(
    135deg,
    #163322 0%,
    #234b34 100%
  );

  overflow:hidden;
}

/* BG SHAPE */

.review-bg-shape{

  position:absolute;

  top:-200px;
  right:-200px;

  width:500px;
  height:500px;

  background:
  radial-gradient(
    rgba(255,255,255,0.08),
    transparent
  );

  border-radius:50%;
}

/* HEADER */

.google-review-header{

  text-align:center;

  max-width:760px;

  margin:0 auto 60px;
}

.google-review-eyebrow{

  display:inline-block;

  font-size:12px;

  font-weight:700;

  letter-spacing:2px;

  text-transform:uppercase;

  color:#d9b97d;

  margin-bottom:18px;
}

.google-review-header h2{

  font-family:'Cormorant Garamond',serif;

  font-size:56px;

  line-height:1.1;

  color:#fff;

  margin-bottom:20px;
}

.google-review-header p{

  color:rgba(255,255,255,0.78);

  font-size:17px;

  line-height:1.8;
}

/* CARD */

.google-review-card{

  background:#fff;

  border-radius:28px;

  overflow:hidden;

  box-shadow:
  0 30px 80px rgba(0,0,0,0.22);

  max-width:1200px;

  margin:0 auto;
}

/* TOP */

.google-review-top{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:30px;

  padding:34px 40px;

  border-bottom:1px solid #eee;
}

/* BRAND */

.google-review-brand{

  display:flex;

  align-items:center;

  gap:18px;
}

.google-review-brand img{

  width:58px;
  height:58px;
}

.google-review-brand h3{

  font-size:26px;

  color:#1c2b22;

  margin-bottom:4px;
}

.google-review-brand span{

  color:#777;

  font-size:14px;
}

/* RATING */

.google-review-rating{
  text-align:right;
}

.google-stars{

  font-size:28px;

  color:#fbbc04;

  letter-spacing:4px;

  margin-bottom:6px;
}

.google-review-rating p{

  color:#666;

  font-size:14px;
}

/* IFRAME */

.google-review-frame{
  position:relative;
  padding:0;
  min-height:560px;
  background:#fff;
  overflow:hidden;
}

.google-review-widget{
  width:100%;
  min-height:560px;
  position:relative;
}

.google-review-widget > div,
.google-review-widget [class*="elfsight-app"]{
  width:100%!important;
  min-height:560px;
}

.google-review-frame iframe{
  display:block;
  border:none;
  width:100%!important;
  max-width:100%!important;
  min-height:560px!important;
}

.eapps-widget-toolbar,
[class*="eapps-widget-toolbar"],
[class*="EappsWidgetToolbar"],
a[href*="elfsight.com"],
.google-review-section .eapps-widget-toolbar,
.google-review-section [class*="eapps-widget-toolbar"],
.google-review-section [class*="EappsWidgetToolbar"],
.google-review-section [class*="WidgetBackground__Container"] a[href*="elfsight"],
.google-review-section a[href*="elfsight.com"]{
  display:none!important;
  visibility:hidden!important;
  opacity:0!important;
  pointer-events:none!important;
}

/* BUTTON */

.google-review-btn-wrap{
  text-align:center;
  margin-top:50px;
}

.google-review-btn{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:18px 38px;

  background:var(--accent);

  color:#fff;

  text-decoration:none;

  border-radius:60px;

  font-size:15px;

  font-weight:700;

  transition:.3s;
}

.google-review-btn:hover{

  transform:translateY(-4px);

  background:#c59f58;
}

/* MOBILE */

@media(max-width:992px){

  .google-review-header h2{
    font-size:42px;
  }

  .google-review-top{

    flex-direction:column;

    align-items:flex-start;
  }

  .google-review-rating{
    text-align:left;
  }

}

@media(max-width:768px){

  .google-review-section{
    padding:80px 0;
  }

  .google-review-header h2{
    font-size:34px;
  }

  .google-review-card{
    border-radius:20px;
  }

  .google-review-top{
    padding:22px 18px;
  }

  .google-review-brand{
    align-items:flex-start;
    gap:14px;
  }

  .google-review-brand img{
    width:46px;
    height:46px;
  }

  .google-review-brand h3{
    font-size:21px;
    line-height:1.2;
  }

  .google-stars{
    font-size:22px;
    letter-spacing:2px;
  }

  .google-review-frame,
  .google-review-widget,
  .google-review-widget > div,
  .google-review-widget [class*="elfsight-app"]{
    min-height:520px;
  }

  .google-review-frame iframe{
    min-height:520px!important;
  }

}
/* ─── GALLERY ─── */
.gal-card{
    animation:none !important;
    transition:none !important;
}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(2,220px);gap:16px;}
.gallery-item{border-radius:var(--radius);overflow:hidden;position:relative;cursor:pointer;}
.gallery-item:nth-child(1){grid-column:span 2;grid-row:span 2;}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:.4s;}
.gallery-item:hover img{transform:scale(1.06);}
.gallery-overlay{position:absolute;inset:0;background:rgba(26,61,38,0.5);opacity:0;transition:.3s;display:flex;align-items:center;justify-content:center;}
.gallery-item:hover .gallery-overlay{opacity:1;}
.gallery-overlay-icon{color:#fff;font-size:36px;}
 /* ── Hero ── */
  .gallery-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 100px 24px 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .gallery-hero::before {
    content: '🌿';
    position: absolute;
    right: -40px;
    bottom: -60px;
    font-size: 280px;
    opacity: 0.05;
    line-height: 1;
    pointer-events: none;
  }
  .gallery-hero .gh-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
  }
  .gallery-hero .gh-breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
  }
  .gallery-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
  }
  .gallery-hero p {
    font-size: 17px;
    opacity: 0.85;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ── Wrap ── */
  .gallery-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 24px 80px;
  }

  /* ── Filter tabs ── */
  .gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .gf-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
    user-select: none;
    font-family: 'DM Sans', sans-serif;
  }
  .gf-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
  }
  .gf-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,94,58,0.28);
  }
  .gf-count {
    font-size: 11px;
    font-weight: 700;
    background: rgba(255,255,255,0.22);
    border-radius: 20px;
    padding: 2px 8px;
    min-width: 20px;
    text-align: center;
  }
  .gf-tab:not(.active) .gf-count {
    background: var(--cream);
    color: var(--text-mid);
  }

  /* ── Result info ── */
  .gallery-info {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 28px;
    font-family: 'DM Sans', sans-serif;
  }
  .gallery-info strong { color: var(--primary); font-weight: 700; }

  /* ── Grid ── */
  .gal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  /* ── Card — FIXED 4:3 aspect ratio ── */
  .gal-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--cream);
    cursor: pointer;
    aspect-ratio: 4 / 3;          /* ← KEY: all cards same height */
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .gal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(45,94,58,0.18);
  }

  /* Image fills card, cropped to center */
  .gal-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;        /* ← fills without distorting */
    object-position: center;
    display: block;
    transition: transform .5s ease;
    
  }
  .gal-card:hover img { transform: scale(1.08); }

  /* Badge */
  .gal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    font-family: 'DM Sans', sans-serif;
  }

  /* Hover overlay */
  .gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,61,38,0.82) 0%, rgba(26,61,38,0.2) 55%, transparent 100%);
    opacity: 0;
    transition: opacity .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    z-index: 1;
  }
  .gal-card:hover .gal-overlay { opacity: 1; }
  .gal-overlay-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 8px;
    transform: translateY(6px);
    transition: transform .3s ease;
    font-family: 'DM Sans', sans-serif;
  }
  .gal-card:hover .gal-overlay-title { transform: translateY(0); }
  .gal-zoom-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    transform: scale(0.8);
    transition: transform .3s ease;
  }
  .gal-card:hover .gal-zoom-icon { transform: scale(1); }

  /* Fade-in animation for cards */
  @keyframes galFade {
    from { opacity: 0; transform: translateY(10px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  .gal-card { animation: galFade .35s ease both; }

  /* Empty state */
  .gal-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
  }
  .gal-empty-icon { font-size: 52px; margin-bottom: 14px; }
  .gal-empty h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--primary-dark);
    margin-bottom: 8px;
  }

  /* ── LIGHTBOX ── */
  .kk-lb {
    position: fixed;
    inset: 0;
    background: rgba(8, 18, 12, 0.97);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
  }
  .kk-lb.lb-open { display: flex; }

  .lb-box {
    position: relative;
    max-width: 980px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .lb-img-wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #060f09;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  }
  .lb-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
  }
  .lb-info {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .lb-caption {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
  }
  .lb-counter {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
  }

  /* Buttons */
  .lb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 100001;
  }
  .lb-close:hover { background: rgba(255,255,255,0.22); }

  .lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.09);
    border: 2px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .2s;
    z-index: 100001;
  }
  .lb-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.05);
  }
  .lb-prev { left: 16px; }
  .lb-next { right: 16px; }

  /* ── Responsive ── */
  @media (max-width: 1024px) {
    .gal-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 768px) {
    .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .lb-nav   { display: none; }
  }
  @media (max-width: 420px) {
    .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gal-card { border-radius: 10px; }
  }

/* ─── CONTACT ─── */
  /* ─────────────────────────────
   CONTACT PAGE
───────────────────────────── */

.contact-grid{
  display:grid;
  grid-template-columns:420px minmax(0,1fr);
  gap:42px;
  align-items:start;
}

/* LEFT CARD */

.contact-info-card{
  background:var(--primary);
  border-radius:30px;
  padding:42px;
  color:#fff;
  position:sticky;
  top:120px;
  overflow:hidden;
}

.contact-info-card h3{
  font-family:'Cormorant Garamond',serif;
  font-size:40px;
  line-height:1.2;
  margin-bottom:12px;
}

.contact-info-card > p{
  font-size:15px;
  line-height:1.9;
  opacity:.85;
  margin-bottom:34px;
}

/* ITEMS */

.contact-item{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:28px;
}

.contact-item-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  background:rgba(255,255,255,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:22px;
}

.contact-item-text h4{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  opacity:.7;
  margin-bottom:6px;
}

.contact-item-text p,
.contact-item-text a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  line-height:1.8;
  opacity:.96;
}

/* SOCIAL */

.contact-social-wrap{
  margin-top:34px;
  padding-top:28px;
  border-top:1px solid rgba(255,255,255,0.14);
}

.contact-social-wrap p{
  font-size:14px;
  opacity:.75;
  margin-bottom:14px;
}

.contact-socials{
  display:flex;
  gap:12px;
}

/* RIGHT FORM */

.contact-form{
  background:#fff;
  border-radius:30px;
  padding:42px;
  box-shadow:0 12px 40px rgba(0,0,0,0.08);
}

.contact-form h3{
  font-family:'Cormorant Garamond',serif;
  font-size:40px;
  line-height:1.2;
  color:var(--primary-dark);
  margin-bottom:10px;
}

.contact-form p{
  color:var(--text-mid);
  line-height:1.8;
  margin-bottom:28px;
}

/* FORM */

.fillout-wrapper{
  width:100%;
  /* min-height:760px; */
  overflow:hidden;
  border-radius:20px;
}

/* MAP */

.contact-map{
  margin-top:54px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,0.08);
}

.contact-map iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .contact-grid{
    grid-template-columns:1fr;
  }

  .contact-info-card{
    position:relative;
    top:0;
  }

}

@media(max-width:768px){

  .contact-info-card,
  .contact-form{
    padding:28px;
  }

  .contact-info-card h3,
  .contact-form h3{
    font-size:32px;
  }

  .contact-item{
    gap:14px;
  }

  .contact-item-icon{
    width:48px;
    height:48px;
    font-size:20px;
  }

  .contact-map iframe{
    height:320px;
  }

}

@media(max-width:560px){

  .contact-grid{
    gap:28px;
  }

  .contact-info-card,
  .contact-form{
    border-radius:24px;
    padding:24px;
  }

  .contact-info-card h3,
  .contact-form h3{
    font-size:28px;
  }

  .fillout-wrapper{
    min-height:720px;
  }

}

 /* ═══════════════════════════════
       SUCCESS PAGE CONTAINER
    ═══════════════════════════════ */
    .success-page {
      background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
      min-height: 100vh;
      position: relative;
    }

    /* Decorative gradient orbs */
    .success-page::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(196, 136, 42, 0.08) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* ═══════════════════════════════
       HERO SECTION
    ═══════════════════════════════ */
    .success-hero {
      padding: 120px 24px 80px;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .success-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 24px;
      border-radius: 50px;
      background: rgba(196, 136, 42, 0.12);
      border: 1px solid rgba(196, 136, 42, 0.3);
      color: var(--accent-light);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 28px;
      animation: fadeInUp 0.6s ease;
    }

    .success-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 6vw, 72px);
      color: var(--text-primary);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: fadeInUp 0.6s ease 0.1s backwards;
    }

    .success-hero p {
      color: var(--text-secondary);
      font-size: 18px;
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto;
      animation: fadeInUp 0.6s ease 0.2s backwards;
    }
    .hero-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  border-radius: inherit; /* matches .hero-img-card rounding */
  overflow: hidden;
}

.hero-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.hero-img-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 500px; 
  width: 100%;
}

.hero-img-card iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  /* Scale up to cover — wider than container to fill both axes */
  width: 177.78%;       /* 16:9 ratio trick: 500 * (16/9) = 888px, so 888/500 * 100 = 177.78% */
  height: 177.78%;      /* same scale on height axis */
  
  min-width: 100%;
  min-height: 100%;
  
  border: 0;
  display: block;
  pointer-events: none; /* prevents user from interacting with iframe */
} /* ═══════════════════════════════
       VIDEOS GRID
    ═══════════════════════════════ */
    .videos-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px 100px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 32px;
      position: relative;
      z-index: 1;
    }

    /* ═══════════════════════════════
       VIDEO CARD
    ═══════════════════════════════ */
    .video-card {
      background: var(--bg-card);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--accent-light);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      animation: fadeInUp 0.6s ease backwards;
      animation-delay: calc(var(--card-index) * 0.1s);
    }

    .video-card:hover {
      transform: translateY(-12px);
      border-color: var(--border-hover);
      box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(196, 136, 42, 0.2),
        0 0 40px rgba(196, 136, 42, 0.1);
    }

    /* ═══════════════════════════════
       VIDEO THUMBNAIL
    ═══════════════════════════════ */
    .video-thumb {
      position: relative;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: #111;
    }

    .video-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .video-card:hover .video-thumb img {
      transform: scale(1.08);
    }

    /* ═══════════════════════════════
       VIDEO OVERLAY
    ═══════════════════════════════ */
    .video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 100%
      );
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }

    .video-card:hover .video-overlay {
      background: linear-gradient(
        180deg,
        rgba(196, 136, 42, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 100%
      );
    }

    /* ═══════════════════════════════
       PLAY BUTTON
    ═══════════════════════════════ */
    .play-btn {
      width: 72px;
      height: 72px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--accent-dark);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .play-btn::before {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.4);
      animation: pulse 2s ease infinite;
    }

    .video-card:hover .play-btn {
      background: var(--accent);
      color: white;
      transform: scale(1.15);
      box-shadow: 0 12px 40px rgba(196, 136, 42, 0.4);
    }

    /* ═══════════════════════════════
       VIDEO CONTENT
    ═══════════════════════════════ */
    .video-content {
      padding: 24px;
      background: linear-gradient(180deg, var(--bg-card) 0%, #0f0f0f 100%);
    }

    .video-content span {
      display: inline-block;
      color: var(--accent-light);
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 10px;
    }

    .video-content h3 {
      color: white;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.5;
      margin-bottom: 10px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: color 0.3s ease;
    }

    .video-card:hover .video-content h3 {
      color: var(--accent-light);
    }

    .video-content p {
      color: gray;
      font-size: 14px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ═══════════════════════════════
       VIDEO MODAL
    ═══════════════════════════════ */
    .video-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(20px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      padding: 20px;
    }

    .video-modal.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal-inner {
      position: relative;
      width: 100%;
      max-width: 1200px;
      aspect-ratio: 16/9;
      background: #000;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
      transform: scale(0.9);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .video-modal.active .modal-inner {
      transform: scale(1);
    }

    .close-modal {
      position: absolute;
      top: -50px;
      right: 0;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      color: white;
      font-size: 28px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .close-modal:hover {
      background: var(--accent);
      border-color: var(--accent);
      transform: rotate(90deg);
    }

    #videoFrame {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* ═══════════════════════════════
       LOADING STATE
    ═══════════════════════════════ */
    .loading-container {
      text-align: center;
      padding: 60px 24px;
    }

    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 3px solid rgba(196, 136, 42, 0.2);
      border-top-color: var(--accent);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto 20px;
    }

    .loading-text {
      color: var(--text-secondary);
      font-size: 16px;
    }

    /* ═══════════════════════════════
       ANIMATIONS
    ═══════════════════════════════ */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: 0.5;
        transform: scale(1.1);
      }
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    /* ═══════════════════════════════
       RESPONSIVE DESIGN
    ═══════════════════════════════ */
    @media (max-width: 1024px) {
      .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 24px;
      }
    }

    @media (max-width: 768px) {
      .success-hero {
        padding: 100px 20px 60px;
      }

      .success-hero h1 {
        font-size: clamp(32px, 8vw, 48px);
      }

      .success-hero p {
        font-size: 16px;
      }

      .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px 60px;
      }

      .play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
      }

      .video-content {
        padding: 20px;
      }

      .close-modal {
        top: -60px;
        right: 0;
      }

      .modal-inner {
        border-radius: 12px;
      }
    }

    @media (max-width: 480px) {
      .success-badge {
        font-size: 11px;
        padding: 8px 18px;
      }

      .video-content h3 {
        font-size: 16px;
      }

      .video-content p {
        font-size: 13px;
      }
    }

    /* ═══════════════════════════════
       ACCESSIBILITY
    ═══════════════════════════════ */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    .video-card:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
    }

    .close-modal:focus-visible {
      outline: 2px solid white;
      outline-offset: 4px;
    }
/* ─── CTA STRIP ─── */
.cta-strip{background:linear-gradient(135deg,var(--accent) 0%,#A87020 100%);padding:64px 24px;text-align:center;}
.cta-strip h2{font-family:'Cormorant Garamond',serif;font-size:42px;color:#fff;font-weight:700;margin-bottom:12px;}
.cta-strip p{color:rgba(255,255,255,0.85);font-size:17px;margin-bottom:32px;}
.cta-strip .btn-white{background:#fff;color:var(--accent);font-weight:700;border-radius:12px;padding:16px 36px;font-size:16px;text-decoration:none;display:inline-block;transition:.25s;}
.cta-strip .btn-white:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,0.2);}
/* ═══════════════════════════════
   PREMIUM CTA STRIP
═══════════════════════════════ */

.premium-cta-strip{

  position:relative;

  padding:120px 24px;

  text-align:center;

  overflow:hidden;

  background-image:
  linear-gradient(
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.6)
  ),

  url('https://images.unsplash.com/photo-1505751172876-fa1923c5c528?q=80&w=1600&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
}

/* OVERLAY */

.cta-strip-overlay{

  position:absolute;

  inset:0;

  background:
  radial-gradient(
    circle at top right,
    rgba(212,161,74,0.28),
    transparent 40%
  );
}

/* CONTENT */

.cta-strip-content{

  position:relative;

  z-index:2;

  max-width:900px;

  margin:0 auto;
}

/* TAG */

.cta-strip-tag{

  display:inline-block;

  padding:10px 22px;

  border-radius:60px;

  background:rgba(255,255,255,0.12);

  backdrop-filter:blur(12px);

  color:#fff;

  font-size:12px;

  font-weight:700;

  letter-spacing:2px;

  margin-bottom:26px;
}

/* TITLE */

.premium-cta-strip h2{

  font-family:'Cormorant Garamond',serif;

  font-size:68px;

  line-height:1.1;

  color:#fff;

  margin-bottom:20px;
}

/* TEXT */

.premium-cta-strip p{

  font-size:18px;

  line-height:1.9;

  color:rgba(255,255,255,0.82);

  max-width:760px;

  margin:0 auto 40px;
}

/* BUTTONS */

.cta-strip-buttons{

  display:flex;

  align-items:center;
  justify-content:center;

  gap:18px;

  flex-wrap:wrap;
}

/* CALL */

.cta-strip-call{

  padding:18px 38px;

  border-radius:60px;

  background:#d6a04c;

  color:#fff;

  text-decoration:none;

  font-weight:700;

  font-size:16px;

  transition:.3s;
}

.cta-strip-call:hover{

  transform:translateY(-4px);

  background:#be8936;
}

/* BOOK */

.cta-strip-book{

  padding:18px 38px;

  border-radius:60px;

  background:rgba(255,255,255,0.12);

  backdrop-filter:blur(10px);

  color:#fff;

  text-decoration:none;

  border:1px solid rgba(255,255,255,0.16);

  font-weight:700;

  transition:.3s;
}

.cta-strip-book:hover{

  background:#fff;

  color:#1d3c2b;

  transform:translateY(-4px);
}

/* MOBILE */

@media(max-width:992px){

  .doctors-premium-grid{
    grid-template-columns:1fr;
  }

  .premium-cta-strip h2{
    font-size:48px;
  }

}

/* ─── FOOTER ─── */
footer{background:#2d5e3a;color:white;padding:64px 0 0;}
.footer-inner{max-width:1280px;margin:0 auto;padding:0 24px;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:48px;margin-bottom:48px;}
.footer-brand{}
.footer-logo{font-family:'Cormorant Garamond',serif;font-size:26px;font-weight:700;color:#fff;margin-bottom:12px;}
.footer-brand p{font-size:14px; color:white; line-height:1.7;opacity:.7;margin-bottom:20px;}
.footer-socials{display:flex;gap:10px;}
.footer-social-btn{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,0.08);display:flex;align-items:center;justify-content:center;font-size:17px;transition:.2s;text-decoration:none;color:rgba(255,255,255,0.7);}
.footer-social-btn:hover{background:var(--accent);color:#fff;}
.footer-col h4{font-size:14px;font-weight:700;color:#fff;text-transform:uppercase;letter-spacing:1.5px;margin-bottom:20px;}
.footer-col ul{list-style:none;}
.footer-col ul li{margin-bottom:10px;}
.footer-col ul li a{font-size:14px;  color:rgba(255,255,255,0.78);text-decoration:none;transition:.2s;display:flex;align-items:center;gap:6px;}
.footer-col ul li a:hover{color:var(--accent-light);padding-left:4px;}
.footer-address{font-size:14px;line-height:1.8;opacity:.7;}
.footer-address strong{color:#fff;display:block;margin-bottom:6px;}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.08);padding:20px 0;text-align:center;font-size:13px;opacity:.6;}
.footer-bottom a{color:var(--accent-light);text-decoration:none;}
.footer-bottom a:hover{text-decoration:underline;}
.footer-socials{
  display:flex;
  align-items:center;
  gap:14px; 
}
/* ═══════════════════════════════
   PREMIUM FOOTER
═══════════════════════════════ */

footer{

  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    rgba(20,40,28,0.95),
    rgba(20,40,28,0.95)
  ),

  url('images/footer-image-1.webp');

  background-size:cover;
  background-position:center;

  color:#fff;

  padding:90px 0 0;
}

/* OVERLAY */

.footer-overlay{

  position:absolute;

  inset:0;

  background:
  radial-gradient(
    circle at top right,
    rgba(214,160,76,0.18),
    transparent 35%
  );
}

/* INNER */

.footer-inner{

  position:relative;

  z-index:2;

  max-width:1280px;

  margin:0 auto;

  padding:0 24px;
}

/* GRID */

.footer-grid{

  display:grid;

  grid-template-columns:
  2fr 1fr 1.2fr 1.5fr;

  gap:60px;

  margin-bottom:60px;
}

/* LOGO */

.footer-logo{

  display:inline-block;

  margin-bottom:20px;
}

.footer-logo img{

  max-width:180px;

  display:block;
}

/* BRAND */

.footer-brand p{

  color:rgba(255,255,255,0.82);

  line-height:1.9;

  font-size:15px;

  margin-bottom:28px;
}

/* SOCIAL */

.footer-socials{

  display:flex;

  gap:12px;
}

.footer-social-btn{

  width:44px;

  height:44px;

  border-radius:14px;

  background:rgba(255,255,255,0.08);

  backdrop-filter:blur(10px);

  display:flex;

  align-items:center;

  justify-content:center;

  transition:.3s;
}

.footer-social-btn img{

  width:18px;

  height:18px;

  object-fit:contain;
}

.footer-social-btn:hover{

  transform:translateY(-4px);

  background:var(--accent);
}

/* COLUMNS */

.footer-col h4{

  color:#fff;

  font-size:14px;

  font-weight:700;

  letter-spacing:2px;

  text-transform:uppercase;

  margin-bottom:22px;
}

.footer-col ul{

  list-style:none;
}

.footer-col ul li{

  margin-bottom:12px;
}

.footer-col ul li a{

  color:rgba(255,255,255,0.8);

  text-decoration:none;

  font-size:14px;

  transition:.25s;

  display:inline-flex;

  align-items:center;
}

.footer-col ul li a:hover{

  color:#fff;

  transform:translateX(4px);
}

/* ADDRESS */

.footer-address{

  color:rgba(255,255,255,0.82);

  line-height:1.9;

  font-size:14px;
}

.footer-address strong{

  display:block;

  color:#fff;

  margin-bottom:8px;
}

.footer-space{
  margin-top:20px;
}

.footer-address a{

  color:var(--accent-light);

  text-decoration:none;
}

.footer-address a:hover{
  text-decoration:underline;
}

/* BOTTOM */

.footer-bottom{

  position:relative;

  z-index:2;

  border-top:
  1px solid rgba(255,255,255,0.08);

  padding:24px 0;

  text-align:center;
}

.footer-bottom-inner{

  max-width:1280px;

  margin:0 auto;

  padding:0 24px;

  color:rgba(255,255,255,0.75);

  font-size:14px;
}

.footer-bottom a{

  color:#fff;

  text-decoration:none;

  font-weight:600;
}

.footer-bottom a:hover{
  text-decoration:underline;
}

/* MOBILE */

@media(max-width:992px){

  .footer-grid{

    grid-template-columns:
    1fr 1fr;

    gap:40px;
  }

}

@media(max-width:768px){

  footer{
    padding:70px 0 0;
  }

  .footer-grid{

    grid-template-columns:1fr;

    gap:40px;
  }

  .footer-logo img{
    max-width:150px;
  }

}

.footer-social-btn{

  width:44px;
  height:44px;

  border-radius:50%;

  background:rgba(255,255,255,0.08);

  display:flex;
  align-items:center;
  justify-content:center;

  transition:.25s ease;
}

.footer-social-btn:hover{

  transform:translateY(-4px);

  background:var(--primary);
}

.footer-social-btn img{

  width:20px;
  height:20px;

  object-fit:contain;
}

/* ══════════════════════════════════════════
   All footer styles use .kk-ft- prefix
   so they NEVER conflict with style.css
══════════════════════════════════════════ */

/* ── RESET ── */
.kk-ft-wrap, .kk-ft-wrap * {
  box-sizing: border-box;
}

/* ── MAIN WRAPPER ── */
.kk-ft-wrap {

  position: relative;

  font-family: 'DM Sans', sans-serif;

  overflow: hidden;

  background:

 linear-gradient(
  160deg,
  rgba(25, 52, 35, 0.92) 0%,
  rgba(18, 42, 28, 0.90) 40%,
  rgba(12, 32, 20, 0.93) 100%
),

    url('images/footer-image-1.webp');

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  background-attachment: fixed;

  color: rgba(255,255,255,0.84);
}

/* ── DECORATIVE ELEMENTS ── */
/* Radial glow — top right amber */
/* LIGHT EFFECT */

.kk-ft-wrap::before{

  content:"";

  position:absolute;

  inset:0;

  background:

  radial-gradient(
    circle at top right,
    rgba(214,160,76,0.16),
    transparent 30%
  );

  pointer-events:none;
}
.footer-grid{

  position:relative;

  z-index:2;
}
/* Radial glow — bottom left green */
.kk-ft-wrap::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(45,94,58,0.25) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
/* Dot grid texture */
.kk-ft-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}
/* Large watermark leaf */
.kk-ft-leaf {
  position: absolute;
  bottom: -40px;
  right: -60px;
  font-size: 380px;
  line-height: 1;
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── TOP GRADIENT LINE ── */
.kk-ft-topline {
  height: 3px;
  background: var(--primary);
  position: relative;
  z-index: 1;
}

/* ── MAIN GRID ── */
.kk-ft-main {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 52px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.1fr 1.1fr 1.3fr;
  gap: 44px;
}

/* ── BRAND COL ── */
.kk-ft-brand {}
.kk-ft-logo {
  height: 62px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
  filter: brightness(1.15);
}
.kk-ft-brand-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
  max-width: 260px;
}

/* Stats grid */
.kk-ft-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 26px;
}
.kk-ft-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}
.kk-ft-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #E8B45A;
  line-height: 1;
  display: block;
}
.kk-ft-stat-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* SOCIAL ICONS */

.kk-ft-socials {

  display:flex;

  gap:12px;

  flex-wrap:wrap;
}

/* BUTTON */

.kk-ft-soc {

  width:44px;

  height:44px;

  border-radius:14px;

  background:rgba(255,255,255,0.08);

  border:1px solid rgba(255,255,255,0.10);

  display:flex;

  align-items:center;

  justify-content:center;

  text-decoration:none;

  transition:.3s ease;

  backdrop-filter:blur(10px);
}

/* HOVER */

.kk-ft-soc:hover {

  background:#C4882A;

  border-color:#C4882A;

  transform:translateY(-4px);

  box-shadow:
  0 10px 24px rgba(0,0,0,0.18);
}

/* IMAGE */

.kk-ft-soc img {

  width:22px;

  height:22px;

  object-fit:contain;

  display:block;
}

/* FACEBOOK */

.kk-ft-soc img[alt="Facebook"] {

  width:24px;

  height:24px;
}

/* YOUTUBE */

.kk-ft-soc img[alt="YouTube"] {

  width:24px;

  height:24px;
}

/* ── LINK COLUMNS ── */
.kk-ft-col {}
.kk-ft-col-title {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  position: relative;
  display: block;
}
.kk-ft-col-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 28px;
  height: 2px;
  background: #C4882A;
  border-radius: 2px;
}
.kk-ft-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.kk-ft-col ul li {
  margin-bottom: 9px;
}
.kk-ft-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s, gap .2s;
  line-height: 1.45;
}
.kk-ft-col ul li a::before {
  content: '›';
  color: #C4882A;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
.kk-ft-col ul li a:hover {
  color: #E8B45A;
  gap: 11px;
}
/* Sub-heading inside col */
.kk-ft-sub-title {
  font-size: 10px;
  font-weight: 700;
  color: rgba(232,180,90,0.85);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin: 18px 0 10px;
  display: block;
}

/* ── CONTACT COL ── */
.kk-ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.kk-ft-ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.kk-ft-ci-text {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.kk-ft-ci-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 3px;
}
.kk-ft-ci-text a {
  color: #E8B45A;
  text-decoration: none;
  transition: color .2s;
  word-break: break-all;
}
.kk-ft-ci-text a:hover { color: #fff; }

/* ── DIVIDER ── */
.kk-ft-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: rgba(255,255,255,0.09);
  max-width: 1280px;
  margin: 0 auto;
}

/* ── BOTTOM BAR ── */
.kk-ft-bottom {
  position: relative;
  z-index: 1;
  padding: 20px 24px;
}
.kk-ft-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.kk-ft-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
}
.kk-ft-copy a {
  color: #E8B45A;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s;
}
.kk-ft-copy a:hover { color: #fff; }
.kk-ft-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.kk-ft-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color .2s;
}
.kk-ft-bottom-links a:hover { color: rgba(255,255,255,0.78); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .kk-ft-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }
  .kk-ft-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }
  .kk-ft-brand-desc { max-width: 100%; }
}
@media (max-width: 768px) {
  .kk-ft-main {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 44px 20px 36px;
  }
  .kk-ft-brand {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
  .kk-ft-cta-inner { flex-direction: column; text-align: center; }
  .kk-ft-cta-btns  { justify-content: center; width: 100%; }
  .kk-ft-btn-call, .kk-ft-btn-wa { justify-content: center; flex: 1; }
  .kk-ft-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .kk-ft-main { grid-template-columns: 1fr; }
}
/* ─── PAGE SECTIONS (for JS routing) ─── */
.page{display:none;}
.page.active{display:block;}

/* ─── ABOUT PAGE ─── */
.about-page-hero{background:linear-gradient(135deg,var(--primary-dark),var(--primary));padding:100px 24px 60px;text-align:center;color:#fff;}
.about-page-hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(36px,5vw,56px);font-weight:700;margin-bottom:16px;}
.about-page-hero p{font-size:17px;opacity:.85;max-width:580px;margin:0 auto;}
.page-breadcrumb{display:flex;align-items:center;justify-content:center;gap:8px;font-size:13px;color:rgba(255,255,255,0.6);margin-bottom:16px;}
.page-breadcrumb a{color:rgba(255,255,255,0.6);text-decoration:none;}
.page-breadcrumb span{color:rgba(255,255,255,0.4);}

/* ─── TREATMENTS PAGE with PAGINATION ─── */
.treatments-page-wrap{max-width:1280px;margin:0 auto;padding:60px 24px;}
.treatments-page-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:40px;flex-wrap:wrap;gap:16px;}
.filter-tabs{display:flex;gap:8px;flex-wrap:wrap;}
.filter-tab{padding:8px 16px;border-radius:20px;border:2px solid var(--border);font-size:13px;cursor:pointer;transition:.2s;background:#fff;}
.filter-tab.active,.filter-tab:hover{background:var(--primary);color:#fff;border-color:var(--primary);}
.big-treatments-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.big-treatment-card{background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,0.07);transition:.3s;border:1px solid var(--border);}
.big-treatment-card:hover{transform:translateY(-8px);box-shadow:0 24px 56px rgba(45,94,58,0.14);}
.btc-img{height:240px;overflow:hidden;position:relative;}
.btc-img img{width:100%;height:100%;object-fit:cover;transition:.5s;}
.big-treatment-card:hover .btc-img img{transform:scale(1.06);}
.btc-category{position:absolute;top:14px;left:14px;background:var(--primary);color:#fff;font-size:11px;padding:4px 12px;border-radius:20px;font-weight:600;text-transform:uppercase;letter-spacing:.5px;}
.btc-body{padding:28px;}
.btc-body h3{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:700;color:var(--primary-dark);margin-bottom:10px;}
.btc-body p{font-size:14px;color:var(--text-mid);line-height:1.7;margin-bottom:20px;}
.btc-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:18px;}
.btc-tag{font-size:11px;padding:4px 10px;background:var(--cream);color:var(--primary);border-radius:20px;font-weight:500;}
.btc-footer{display:flex;align-items:center;justify-content:space-between;}
.btc-read-more{font-size:13px;font-weight:600;color:var(--primary);display:flex;align-items:center;gap:6px;text-decoration:none;transition:.2s;}
.btc-read-more:hover{gap:10px;color:var(--accent);}

/* ─── PAGINATION ─── */
.pagination{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:56px;}
.page-btn{width:42px;height:42px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;cursor:pointer;transition:.2s;border:2px solid var(--border);background:#fff;color:var(--text-dark);}
.page-btn.active,.page-btn:hover{background:var(--primary);color:#fff;border-color:var(--primary);}
.page-btn.prev,.page-btn.next{width:auto;padding:0 16px;gap:6px;}

/* ─── GALLERY PAGE ─── */
.gallery-page-wrap{max-width:1280px;margin:0 auto;padding:60px 24px;}
.gallery-masonry{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.gm-item{border-radius:14px;overflow:hidden;cursor:pointer;position:relative;}
.gm-item:nth-child(5n+1){grid-column:span 2;}
.gm-item:nth-child(7n+3){grid-row:span 2;}
.gm-item img{width:100%;height:100%;object-fit:cover;min-height:200px;display:block;transition:.4s;}
.gm-item:hover img{transform:scale(1.06);}
.gm-overlay{position:absolute;inset:0;background:rgba(26,61,38,0.5);opacity:0;transition:.3s;display:flex;align-items:center;justify-content:center;color:#fff;font-size:40px;}
.gm-item:hover .gm-overlay{opacity:1;}

/* ─── BLOG PAGE ─── */
.blog-page-wrap{max-width:1280px;margin:0 auto;padding:60px 24px;}
.blog-page-grid{display:grid;grid-template-columns:2fr 1fr;gap:48px;}
.blog-main{}
.blog-sidebar{}
.blog-list-item{display:grid;grid-template-columns:280px 1fr;gap:24px;background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,0.06);margin-bottom:28px;transition:.3s;}
.blog-list-item:hover{transform:translateX(4px);box-shadow:var(--shadow);}
.bli-img{height:250px;overflow:hidden;}
.bli-img img{width:100%;height:100%;object-fit:cover;transition:.4s;}
.blog-list-item:hover .bli-img img{transform:scale(1.05);}
.bli-body{padding:24px 24px 24px 0;display:flex;flex-direction:column;justify-content:center;}
.bli-cat{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--accent);margin-bottom:10px;}
.bli-body h3{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:700;color:var(--text-dark);margin-bottom:10px;line-height:1.3;}
.bli-body p{font-size:14px;color:var(--text-mid);line-height:1.6;}
.sidebar-widget{background:#fff;border-radius:16px;padding:24px;margin-bottom:24px;box-shadow:0 4px 16px rgba(0,0,0,0.05);}
.sidebar-widget h4{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:700;color:var(--primary-dark);margin-bottom:16px;padding-bottom:12px;border-bottom:2px solid var(--border);}
.sidebar-tag{display:inline-block;margin:4px;padding:6px 14px;background:var(--cream);border-radius:20px;font-size:13px;color:var(--primary);font-weight:500;text-decoration:none;transition:.2s;}
.sidebar-tag:hover{background:var(--primary);color:#fff;}
/* ===== PAGINATION ===== */

.pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:40px;
}

.page-btn{
  min-width:42px;
  height:42px;
  padding:0 14px;
  border-radius:10px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:14px;
  font-weight:600;
  color:var(--text-dark);
  box-shadow:0 2px 10px rgba(0,0,0,0.06);
  transition:.25s;
}

.page-btn:hover{
  background:var(--primary);
  color:#fff;
}

.page-btn.active{
  background:var(--primary);
  color:#fff;
}

.page-btn.prev,
.page-btn.next{
  padding:0 18px;
}


/* ─── STATS BAR ─── */
.stats-bar{background:var(--primary-dark);padding:48px 24px;}
.stats-bar-inner{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center;}
.stat-item-num{font-family:'Cormorant Garamond',serif;font-size:52px;font-weight:700;color:var(--accent-light);}
.stat-item-label{font-size:14px;color:rgba(255,255,255,0.6);text-transform:uppercase;letter-spacing:1px;}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
.why-grid{grid-template-columns:repeat(2,1fr);}
.treatments-grid,.big-treatments-grid,.blog-grid{grid-template-columns:repeat(1,1fr);}
.footer-grid{grid-template-columns:1fr 1fr;gap:32px;}
.stats-bar-inner{grid-template-columns:repeat(2,1fr);}
.blog-page-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
.hero-inner{grid-template-columns:1fr;}
/* .hero-image-wrap{display:none;} */
.hero{min-height:auto;padding:80px 0 60px;}
.about-grid{grid-template-columns:1fr;}
/* .about-img{display:none;} */
.contact-grid{grid-template-columns:1fr;}
.disease-grid{grid-template-columns:1fr 1fr;}
.gallery-masonry{grid-template-columns:repeat(2,1fr);}
.gm-item:nth-child(5n+1){grid-column:span 1;}
.gm-item:nth-child(7n+3){grid-row:span 1;}
.blog-list-item{grid-template-columns:1fr;}
.bli-body{padding:16px;}
.bli-img{height:180px;}
.nav-links,.topbar-left{display:none;}
.topbar-inner{justify-content:center;padding:6px 16px;}
.topbar-right{gap:12px;justify-content:center;}
.topbar-social{gap:8px;}
.topbar-social a{width:32px;height:32px;}
.topbar-social img{width:24px;height:24px;}
.topbar-btn{padding:6px 12px;font-size:11.5px;}
nav{height:72px;padding:0 16px;}
.logo-img{height:50px;}
.hamburger{display:flex;}
.mobile-menu.open{display:block;position:absolute;top:100%;left:0;right:0;max-height:calc(100vh - 120px);background:#fff;z-index:999;overflow-y:auto;padding:10px 16px 18px;border-top:1px solid var(--border);box-shadow:0 18px 35px rgba(0,0,0,0.12);}
.mobile-menu.open a{display:block;padding:13px 10px;font-size:15px;color:var(--text-dark);text-decoration:none;border-bottom:1px solid var(--border);}
.mobile-dropdown{border-bottom:1px solid var(--border);}
.mobile-dropdown-toggle{width:100%;display:flex;align-items:center;justify-content:space-between;padding:13px 10px;background:transparent;border:0;font:inherit;font-size:15px;color:var(--text-dark);cursor:pointer;text-align:left;}
.mobile-dropdown-icon{font-size:12px;transition:.2s;}
.mobile-dropdown-toggle[aria-expanded="true"] .mobile-dropdown-icon{transform:rotate(180deg);}
.mobile-treatment-groups{display:none;padding:0 0 10px 10px;}
.mobile-treatment-groups.open{display:block;}
.mobile-treatment-group{padding:8px 0;}
.mobile-group-title{font-size:11px;text-transform:uppercase;letter-spacing:1.2px;color:var(--accent);font-weight:700;padding:8px 0 4px;}
.mobile-menu.open .mobile-treatment-group a{padding:10px 10px 10px 14px;font-size:14px;border-bottom:0;border-left:2px solid var(--border);}
.doctors-row{flex-direction:column;}
.footer-grid{grid-template-columns:1fr;}
.videos-grid{grid-template-columns:1fr;}
.form-row{grid-template-columns:1fr;}
.hero-stats{gap:20px;}
}

/* ─── SCROLL ANIMATIONS ─── */
/* .reveal{opacity:0;transform:translateY(30px);transition:opacity .6s ease, transform .6s ease;} */
/* .reveal.visible{opacity:1;transform:translateY(0);} */
.reveal-left{opacity:0;transform:translateX(-30px);transition:opacity .6s ease, transform .6s ease;}
.reveal-left.visible{opacity:1;transform:translateX(0);}

/* ─── LOADING SCREEN ─── */
/* .loader{position:fixed;inset:0;background:var(--primary-dark);z-index:9999;display:flex;flex-direction:column;align-items:center;justify-content:center;transition:opacity .5s;} */
.loader.hidden{opacity:0;pointer-events:none;}
.loader-logo{font-family:'Cormorant Garamond',serif;font-size:42px;font-weight:700;color:#fff;margin-bottom:8px;}
.loader-subtitle{color:var(--accent-light);font-size:14px;letter-spacing:3px;text-transform:uppercase;margin-bottom:40px;}
.loader-bar{width:200px;height:3px;background:rgba(255,255,255,0.15);border-radius:2px;overflow:hidden;}
.loader-bar-fill{width:0;height:100%;background:var(--accent-light);border-radius:2px;animation:loadBar 1.5s ease forwards;}
@keyframes loadBar{to{width:100%;}}

/* counter anim */
.count-up{transition:all .2s;}

/* Whatsapp float */
.wa-float{position:fixed;bottom:24px;right:24px;width:56px;height:56px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:28px;color:#fff;text-decoration:none;box-shadow:0 4px 20px rgba(37,211,102,0.4);z-index:500;transition:.25s;animation:pulse 2.5s infinite;}
.wa-float:hover{transform:scale(1.1);}
@keyframes pulse{0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4);}50%{box-shadow:0 4px 40px rgba(37,211,102,0.6);}}

/* Accordion for disease tabs */
.disease-panel{display:none;}
.disease-panel.active{display:grid;}

/* Scroll to top */
.scroll-top{position:fixed;bottom:90px;right:24px;width:44px;height:44px;background:var(--primary);color:#fff;border:none;border-radius:12px;font-size:20px;cursor:pointer;opacity:0;pointer-events:none;transition:.3s;z-index:500;display:flex;align-items:center;justify-content:center;}
.scroll-top.show{opacity:1;pointer-events:all;}

