@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Poppins:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');/* ═══════════════════════════════════════════════
   CSS VARIABLES & RESET
═══════════════════════════════════════════════ */
:root {
  --navy:        #0b1d35;
  --navy-mid:    #122448;
  --navy-light:  #1a3260;
  --orange:      #e8621a;
  --orange-light:#f07d3a;
  --orange-pale: #fff0e8;
  --white:       #ffffff;
  --off-white:   #F1F5F9; 
  --text-dark:   #1a1a2e;
  --text-mid:    #4a5568;
  --text-light:  #8a95a3;
  --border:      #e2e8f0;
  
  --font-serif:   "Poppins", sans-serif;
  --font-display: "Poppins", sans-serif;
  --font-body:    "Poppins", sans-serif;
  --font-italic:  'Cormorant Garamond', Georgia, serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-xl: 50px;

  --shadow-sm:  0 2px 12px rgba(11,29,53,.08);
  --shadow-md:  0 8px 32px rgba(11,29,53,.14);
  --shadow-lg:  0 20px 60px rgba(11,29,53,.20);
  --shadow-orange: 0 8px 28px rgba(232,98,26,.30);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
} 

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: clip; /* Enforce strictly on both html and body */
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.visible, .reveal-right.visible { transform: none; opacity: 1; }

/* ═══════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════ */
/* ════════════ TOP BAR ════════════ */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,.85); transition: color var(--transition); }
.top-bar a:hover { color: var(--orange-light); }
.top-bar .divider { margin: 0 10px; opacity: .4; }
.top-bar-contact { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.top-bar-contact span { display: flex; align-items: center; gap: 6px; }
.top-bar-contact i { color: var(--orange); font-size: 11px; }
.top-bar-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 500;
  transition: color 0.2s;
}
.top-bar-whatsapp:hover { color: #25d366; }
.top-bar-whatsapp i { color: #25d366; font-size: 15px; }

/* ── Mobile & Tablet (ONE block only) ── */
@media (max-width: 991px) {
  .top-bar { padding: 6px 0; font-size: 10px; }
  .top-bar-inner {
    padding: 0 12px;
    justify-content: center;
  }
  .top-bar-contact {
    gap: 2px;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .top-bar-contact span { font-size: 12px; gap: 4px; }
  .top-bar .divider { margin: 0 4px; }

  /* Hide extras */
  .hyd-extra             { display: none !important; }
  .top-bar-email         { display: none !important; }
  .top-bar-email-divider { display: none !important; }
  .top-bar-whatsapp      { display: none !important; }
}
@media (max-width: 450px) {
    .top-bar-contact span { font-size: 10px; gap: 3px; }
}
/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(11,29,53,.10);
  transition: box-shadow var(--transition);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.logo-wrap { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.logo-name span { color: var(--orange); }
.logo-tagline {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 2px;
}
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
  width:160px;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1a2b4a;          /* matches your orange accent */
  /*font-style: italic;*/
  line-height: 1;
  padding-left: 2px;
  white-space: nowrap;
}

.tagline-dot {
  color: #1a2e4a;          /* dark navy — matches your header text */
}

/* Hide on very small screens if needed */
/*@media (max-width: 400px) {*/
/*  .logo-tagline { display: none; }*/
/*}*/
nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { background: var(--orange-pale); color: var(--orange); }
.nav-link.active { color: var(--orange); background: var(--orange-pale);}
.nav-appt {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: var(--radius-xl);
  padding: 9px 22px;
  font-weight: 600;
  font-size: 13.5px;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  /*box-shadow: var(--shadow-orange);*/
  margin-left: 8px;
} 
.nav-appt:hover { background: var(--orange-light); transform: translateY(-1px); }
/* DROPDOWN MENU */
.desktop-nav .nav-item {
  position: relative;
}

.desktop-nav .nav-link i {
  font-size: 10px;
  margin-left: 6px;
  transition: transform .25s ease;
}

.desktop-nav .nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: none;
  z-index: 2000;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-dark);
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--orange-pale);
  color: var(--orange);
}
@media(max-width: 1048px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
}
/* MOBILE SUBMENU */
.mobile-menu .submenu {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.12);
}

.mobile-menu .submenu .nav-link {
  font-size: 15px;
  padding: 10px 0 10px 8px;
  opacity: .92;
}
#siteHeader {
  position: sticky;
  top: 0;
  z-index: 2500;
}
/* MOBILE NAV */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  flex-direction: column;
  padding: 50px 32px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { color: rgba(255,255,255,.8); font-size: 17px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); border-radius: 0; }
.mobile-menu .nav-link:hover { background: none; color: var(--orange); }
.mobile-menu-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }
/* Show desktop logo, hide mobile logo by default */
.desktop-logo { display: block; }
.mobile-logo  { display: none;  }

/* Swap on mobile */
@media (max-width: 567px) {
  .desktop-logo { display: none;  }
  .mobile-logo  { display: block; }
}
/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  max-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, var(--navy) 38%, rgba(11,34,64,0.6) 70%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3; /* Increased from 2 */
  padding: 80px 0;
  max-width: 73%; /* CHANGED from 73% */
}
@media(min-width:1334px) {
    .hero-content{
        max-width:73% !important;
    }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.18);
  border: 1px solid rgba(249,115,22,0.35);
  color: #FFB182;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 600;
  color: white;
  line-height: 1.12;
  margin-bottom: 16px;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  /*box-shadow: 0 6px 24px rgba(249,115,22,0.4);*/
  cursor: pointer;
}
.btn-primary:hover {  transform: translateY(-2px);}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .25s;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); }
.hero-img-wrap{
    position:absolute;
    right:40px;
    bottom:0;
    height:92%;
    z-index:2;
    display:flex;
    align-items:flex-end;
    pointer-events:none;
}

.hero-img-wrap img{
    height:100%;
    width:auto;
    object-fit:contain;
    filter:drop-shadow(0 10px 35px rgba(0,0,0,0.35));
}
.hero-img-wrap::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(
      circle,
      rgba(232,98,26,0.25) 0%,
      transparent 70%
    );
    right:-60px;
    bottom:20px;
    z-index:-1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hero {
    max-height: none;
    min-height: 540px;
  }

  .hero-content {
    max-width: 58%;
  }

  .hero-img-wrap {
    right: 12px;
    height: 82%;
  }

  .hero h1 {
    font-size: clamp(32px, 4vw, 54px);
  }
}
@media(max-width:991px) {
  /* 1. Force the layout to stack vertically and remove height limits */
  .hero {
      display: block;
      max-height: none;
      min-height: auto;
      padding-top: 60px;
      padding-bottom: 30px; 
  }

  /* 2. Center the text and buttons */
  .hero-content {
      max-width: 100%;
      padding: 0 0 20px 0;
      text-align: center;
      
  }
  .hero-cta {
      justify-content: center;
  }

  /* 3. Hide floating pills */
  .hide-mobile {
      display: none !important;
  }

  /* 4. Drop image below text, center it, and give it proper height */
  .hero-img-wrap {
    display: none !important;
  }

  /* 5. Adjust gradient for stacked layout */
  .hero-gradient {
      background: linear-gradient(180deg, rgba(11,29,53,0.95) 0%, rgba(11,29,53,0.85) 50%, rgba(11,29,53,0.4) 100%);
  }
}
.hero-mobile-img{
    display:none;
    justify-content:center;
}

@media (max-width: 991px){

    .desktop-doctor-img{
        display:none;
    }

    .hero-mobile-img{
        display:flex;
        /*margin:20px 0;*/
    }

    .hero-mobile-img img{
        width:220px;
        max-width:100%;
        height:auto;
    }
}
.hero-assoc {
  position: absolute;
  bottom: 28px;
  right: 20px;
  z-index: 3;
  display: flex;
  gap: 12px;
}
.assoc-pill {
  background: #0b1d35;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 11px;
  color: #ffffff;
  font-weight: 500;
}
.assoc-pill1 {
  background: #e8621a;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 11px;
  color: #ffffff;
  font-weight: 500;
}

/* floating associations bar */
.assoc-bar {
  background: var(--white);
  border-top: 3px solid var(--orange);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
}
.assoc-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.assoc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.assoc-item i { color: var(--orange); }
/* Container to handle the overlap and max-width */
.overlap-assoc-bar {
  position: relative;
  z-index: 10;
  margin-top: -50px; /* Pulls the bar up over the hero section */
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
}

/* The white card holding the images */
.trust-card {
  background: var(--white, #ffffff);
  border-top: 3px solid var(--orange, #ff6600); /* Keeps your original theme accent */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 76, 129, 0.1);
  padding: 20px 40px;
  display: flex;
  justify-content: center; /* Centers the logos */
  align-items: center;
  flex-wrap: wrap;
  gap: 40px; /* Spacing between logos */
}

/* Image styling and grayscale hover effect */
.trust-card img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.trust-card img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@media (max-width: 768px) {
  .overlap-assoc-bar {
    display: none;
  }
}
/* Desktop */
.doctor-btn {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {

  .before-after-btn {
    display: none;
  }

  .doctor-btn {
    display: inline-flex;
  }
}
/* ═══════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════ */
section { padding: 40px 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-title em {
  color: var(--orange);
  font-style: italic;
  font-family: var(--font-italic);
}
.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 14px auto 0; }
.text-center .section-label::before { display: none; }
.text-center .section-label { justify-content: center; }

/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */
.about-section { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-img-main img { width: 100%; object-fit: cover; object-position: top center; }
.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-img-accent img { width: 100%; height: 180px; object-fit: cover; }
.about-quote {
  position: absolute;
  top: 28px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 200px;
  /*box-shadow: var(--shadow-orange);*/
  font-size: 13px;
  line-height: 1.5;
}
.about-quote i { font-size: 20px; margin-bottom: 6px; display: block; opacity: .7; }
.about-degrees {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.degree-chip {
  background: var(--orange-pale);
  color: var(--orange);
  border: 1px solid rgba(232,98,26,.25);
  border-radius: var(--radius-xl);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
}
.about-milestones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.milestone-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.milestone-card:hover { box-shadow: var(--shadow-md); border-color: rgba(232,98,26,.3); }
.milestone-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
@media(max-width: 391px) {
    .milestone-num {
        font-size:26px;
    }
    .milestone-card {
        padding:15px;
    }
}
.milestone-label { font-size: 13px; color: var(--text-mid); margin-top: 4px; }
/* 2) Stop the About section from leaking outside the viewport */
.about-img-accent {
  right: 0;
  transform: translateX(28px);
}

.about-quote {
  right: 0;
  transform: translateX(24px);
}

/* 3) Make grid children shrink properly */
.about-grid > *,
.clinic-grid > *,
.hero-content,
.hero-layout {
  min-width: 0;
}
/* ── About Stack Cards ── */
.about-stack-cards {
  position: absolute;
  top: 28px;
  right: 0;
  transform: translateX(24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.asc-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

.asc-card i {
  font-size: 14px;
  flex-shrink: 0;
}

/* Card 1 — Orange */
.asc-orange {
  background: var(--orange);
  color: #fff;
}

/* Card 2 — Navy */
.asc-navy {
  background: #1a2b4a;
  color: #e8f0fb;
}

/* Card 3 — Teal */
.asc-teal {
  background: #1289ba;
  color: #e0f7fa;
}
/*CLINIC SECTION*/
.clinic-section { background: white; }
.clinic-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: center;
}
.clinic-img {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.clinic-img-placeholder {
  width: 100%;
  height: 460px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #E6F5FC 0%, #B5D4F4 40%, #1289BA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.clinic-img-placeholder i { font-size: 80px; color: rgba(255,255,255,0.5); }
.clinic-text p { font-size: 16px; color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
/* ═══════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════ */
.services-section {
  background: var(--off-white);
}

/* TABS */
.services-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 36px 0 40px;
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  padding: 10px 10px;
  border: none;
  background: none;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  transition: all .25s ease;
}

.tab-btn:hover {
  color: var(--navy);
}

.tab-btn.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  font-weight: 600;
}

/* PANELS */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  border-color: rgba(232,98,26,.18);
}

/* IMAGE */
.service-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0b2240 0%, #16385f 100%);
}

.service-img img { 
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

/*.service-card:hover .service-img img {*/
/*  transform: scale(1.06);*/
/*}*/

/* fallback if image missing */
.service-img.img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img.img-fallback::before {
  content: "Dr. YV Rao";
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* BODY */
.service-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

/* LINK */
.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content:center;
  gap: 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  transition: all .25s ease;
}

.service-card:hover .service-card-link {
  gap: 10px;
}

/* RESPONSIVE */
@media(max-width:1199px) {
  .tab-panel.active {
    grid-template-columns: repeat(3,1fr);
  }
}

@media(max-width:991px) {
  .tab-panel.active {
    grid-template-columns: repeat(2,1fr);
  }

  .service-img {
    height: 200px;
  }
}

@media(max-width:767px) {

  .services-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .tab-panel.active {
    grid-template-columns: 1fr;
  }

  .service-img {
    height: 280px;
  }
}
/* ═══════════════════════════════════════════════
   ✨ UNIQUE SECTION: PATIENT JOURNEY TIMELINE
═══════════════════════════════════════════════ */
.journey-section {
  background: var(--navy);
  overflow: hidden;
  position: relative;
}
.journey-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232,98,26,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(26,50,96,.6) 0%, transparent 60%);
  pointer-events: none;
}
.journey-header { text-align: center; margin-bottom: 72px; position: relative; z-index: 2; }
.journey-header .section-title { color: var(--white); }
.journey-header .section-desc { color: rgba(255,255,255,.6); margin: 14px auto 0; }
.journey-header .section-label { color: var(--orange-light); justify-content: center; }
.journey-header .section-label::before { display: none; }

/* The timeline */
.journey-timeline {
  position: relative;
  z-index: 2;
}
/* Horizontal connector line */
.journey-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,98,26,.4), rgba(232,98,26,.4), transparent);
  pointer-events: none;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.journey-step { text-align: center; position: relative; }
.journey-step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid rgba(232,98,26,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 26px;
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}
.journey-step:hover .journey-step-icon {
  /*background: var(--orange);*/
  border-color: var(--orange);
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(232,98,26,.5);
}
.journey-step-num {
  position: absolute;
  top: -6px; right: -4px;
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-step-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.journey-step-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }
.journey-step-arrow {
  position: absolute;
  top: 34px;
  right: -14px;
  width: 28px; height: 28px;
  border-right: 2px solid rgba(232,98,26,.5);
  border-top: 2px solid rgba(232,98,26,.5);
  transform: rotate(45deg);
  display: none;
}
.journey-cta-wrap { text-align: center; margin-top: 60px; position: relative; z-index: 2; }

/* ═══════════════════════════════════════════════
   DOCTORS SECTION
═══════════════════════════════════════════════ */
.doctors-section { background: var(--off-white); }
.doctors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.doctor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid var(--border);
}
.doctor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.doctor-img {
  width: 200px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.doctor-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.doctor-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,29,53,.6) 0%, transparent 50%);
}
.doctor-body { padding: 32px; text-align:left; display: flex; flex-direction: column; justify-content: center; }
.doctor-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.doctor-name {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.doctor-degree { font-size: 13px; margin-bottom: 14px; }
.doctor-desc { font-size: 14px; text-align:left; color: var(--text-mid); line-height: 1.7; margin-bottom: 22px; }
.doctor-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.doctor-tag {
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(232,98,26,.2);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: 9px 22px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

/* ═══════════════════════════════════════════════
   BEFORE / AFTER GALLERY
═══════════════════════════════════════════════ */
.ba-section { background: white; }
.ba-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ba-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  cursor: pointer;
  border: 1px solid var(--gray-200);
}
.ba-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.ba-img {
  height: 160px;
  background: linear-gradient(135deg, #1e4a7a, var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(11,34,64,0.85);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ba-caption {
  background: white;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   WHY CHOOSE US (dark stripe)
═══════════════════════════════════════════════ */
.why-section { background: var(--navy); padding: 40px 0; }
.why-header { text-align: center; margin-bottom: 56px; }
.why-header .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
}
.why-card:hover { background: rgba(232,98,26,.12); border-color: rgba(232,98,26,.35); transform: translateY(-4px); }
.why-icon {
  width: 56px; height: 56px;
  background: rgba(232,98,26,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  color: var(--orange-light);
  transition: background var(--transition);
}
.why-card:hover .why-icon { background: var(--orange); }
.why-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testi-section { background: var(--off-white); }
.testi-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.testi-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 40px;
  color: var(--orange-pale);
  font-family: Georgia, serif;
  line-height: 1;
}

/* Stars row with tag on the right */
.testi-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 8px;
}
.testi-stars { color: #f59e0b; font-size: 14px; flex-shrink: 0; }

/* Procedure tag pill next to stars */
.testi-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid rgba(var(--orange-rgb, 230,100,40), 0.18);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Inline keyword highlight inside review text */
.testi-highlight {
  background: none;
  color: var(--orange);
  font-weight: 700;
  font-style: normal;
}

.testi-text { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.testi-author-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.testi-procedure { font-size: 12px; color: var(--orange); margin-top: 2px; }
/* ═══════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════ */
.stats-strip {
  background: var(--orange);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.2);
}
.stat-item {
  padding: 20px;
  text-align: center;
  background: var(--orange);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 6px; }

/* ═══════════════════════════════════════════════
   MEDIA
═══════════════════════════════════════════════ */
.media-section {
  background: white;
  padding: 60px 0;
}

.media-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 40px;
  margin-top: 36px;
}

.media-logo {
  width: 100%;
  max-width: 140px;
  max-height: 50px;
  object-fit: contain;
  margin: 0 auto;
  transition: all .3s;
}

.media-logo:hover {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 991px) {

  .media-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 24px;
  }

}

/* Mobile */
@media (max-width: 767px) {

  .media-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }

  .media-logo {
    max-width: 120px;
  }

}
/* ═══════════════════════════════════════════════
   What Our Doctors Say
═══════════════════════════════════════════════ */
.doctors-say-section {
  padding: 70px 0 60px;
  background: #f8f9fb;
}
.ds-heading { margin-bottom: 40px; }

.ds-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e07b39;
  margin-bottom: 14px;
}
.ds-eyebrow span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #e07b39;
  border-radius: 2px;
}
.ds-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a2340;
  margin: 0 0 14px;
}
.ds-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

/* Grid */
.ds-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 991px) { .ds-video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .ds-video-grid { grid-template-columns: 1fr; } }

/* Card */
.ds-video-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ds-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.14);
}

/* Thumbnail */
.ds-thumb-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}
.ds-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.ds-video-card:hover .ds-thumb { transform: scale(1.05); }

.ds-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%);
  transition: background 0.3s;
}
.ds-video-card:hover .ds-overlay { background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%); }

.ds-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(224, 123, 57, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s;
  box-shadow: 0 4px 16px rgba(224,123,57,0.5);
}
.ds-video-card:hover .ds-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: #e07b39;
}

/* Caption */
.ds-caption {
  padding: 14px 16px 16px;
}
.ds-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e07b39;
  background: #fff3ec;
  border-radius: 20px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.ds-caption p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #1a2340;
  line-height: 1.4;
}

/* Watch more button */
.ds-watch-btn {
  display: inline-block;
  padding: 12px 34px;
  border: 2px solid #e07b39;
  color: #e07b39;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}
.ds-watch-btn:hover {
  background: #e07b39;
  color: #fff;
  box-shadow: 0 6px 20px rgba(224,123,57,0.35);
}
/* ═══════════════════════════════════════════════
   What Our Patients Say  (reuses all .ds-* styles)
═══════════════════════════════════════════════ */
.patients-say-section {
  padding: 70px 0 60px;
  background: #fff;          /* white to contrast the grey doctors section */
}

/* Optional: slightly different tag colour to distinguish patient tags */
.ps-tag {
  color: #1a7fc1;
  background: #eaf4fd;
}
/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,26,.2) 0%, transparent 60%);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.65); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 14px 30px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-white:hover { background: var(--orange-pale); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: #060f1e;
  color: rgba(255,255,255,.65);
  padding: 42px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand { }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-name span { color: var(--orange); }
.footer-tagline { font-family: var(--font-italic); font-size: 20px; font-style: italic; margin-bottom: 18px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange-light); }
.footer-links a i { font-size: 10px; color: var(--orange); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--orange); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 14px; line-height: 1.5; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-disclaimer {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 32px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  line-height: 1.7;
  text-align: center;
}
@media (max-width: 767px) {

  .footer-grid{
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 20px;
  }

  .footer-brand,
  .footer-contact{
    grid-column: 1 / -1;
  }

}
/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-fab:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,.6); }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,.7); }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media(max-width: 1100px) {
  .tab-panel.active { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width: 1200px) {
  nav { display: none; }
}
@media(max-width: 1200px) {
  .hamburger { display: flex; }
}
@media(max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-frame img { height: 360px; }
  .hero-float-card { right: 0; top: 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-accent { display: none; }
  .about-quote { display: none; }
  .doctors-grid { grid-template-columns: 1fr; }
  .doctor-card { flex-direction: column; }
  .doctor-img { width: 100%; min-height: 260px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-slider { grid-template-columns: 1fr 1fr; }
  .journey-steps { grid-template-columns: repeat(3, 1fr); }
  .journey-timeline::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
  .clinic-grid { grid-template-columns: 1fr; }
  .clinic-img { order: -1; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-img-accent,
  .about-quote {
    display: none;
  }
}
@media(max-width: 600px) {
  section { padding: 44px 0; }
  .container { padding: 0 20px; }
  /*.top-bar-inner { justify-content: center; }*/
  .header-inner { padding: 0 20px; }
  .hero-grid { padding: 48px 20px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .tab-panel.active { grid-template-columns: 1fr; }
  .testi-slider { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .assoc-inner { gap: 20px; }
  .hero-float-card { display: none; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
}
.ql-outer {
  position: relative;
  z-index: 100;
  max-width: 1280px;
  margin: -28px auto 0;
  padding: 0 32px;
  /*transition: all .3s;*/
}
.ql-outer.stuck {
  position: fixed;
  top: 0px; /* height of your header */
  left: 0; right: 0;
  max-width: 1280px;
  padding: 0 32px;
  margin: 0 auto;
  /*box-shadow: 0 4px 20px rgba(11,29,53,.15);*/
}
.ql-bar {
  background: #fff0e8;
  border-top: 3px solid #e8621a;
  border-radius: 12px;
  /*box-shadow: 0 10px 30px rgba(11,29,53,.12);*/
  display: grid;
  grid-template-columns: repeat(4,1fr);
  overflow: hidden;
}
.ql-outer.stuck .ql-bar {
  max-width: none;
  border-radius: 12px;
  margin: 0 auto;
}
/* Keep your existing .ql-outer and .ql-bar CSS untouched */

.ql-item {
  display: flex;
  flex-direction: row; /* Changes layout so icon is on the left */
  align-items: center;
  gap: 14px; /* Spacing between icon and text */
  padding: 16px 18px; /* Adjusted padding to fit the new layout */
  cursor: pointer;
  border-right: 1px solid #e2e8f0;
  text-decoration: none;
  transition: background .25s;
}

.ql-item:last-child { 
  border-right: none; 
}

.ql-item:hover { 
  background: #fff0e8; 
}

/* Hover effects */
.ql-item:hover .ql-icon { 
  background: #e8621a; 
  color: #fff; 
}

.ql-item:hover .ql-text strong { 
  color: #e8621a; /* Optional: highlights the title on hover */
}

/* Updated Icon Design (Rounded Square) */
.ql-icon {
  width: 48px; 
  height: 48px;
  border-radius: 16px; /* Changed from 50% to 16px for the square look */
  background: rgba(232, 98, 26, .10);
  color: #e8621a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0; /* Prevents the icon from squishing */
  transition: background .25s, color .25s;
}

/* New Text Wrapper Styles */
.ql-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ql-text strong { 
  display: block; 
  font-size: 15px; 
  font-weight: 700; 
  color: #132238; 
  line-height: 1.2; 
  transition: color .25s;
}

.ql-text span { 
  display: block; 
  font-size: 12px; 
  color: #748092; 
  margin-top: 4px; 
  line-height: 1.3; 
}

/* TABLET */
@media (max-width: 1100px) {

  .ql-bar {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* MOBILE */
@media (max-width: 768px) {

  .ql-outer,
  .ql-outer.stuck {
    display: none;
  }

}

.journey-step-icon .fas {
  color: #f07d3a;
}
@media (max-width: 767px) {

  .tab-panel.active {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* hide scrollbar visually but keep functionality */
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE/Edge */
  }

  .tab-panel.active::-webkit-scrollbar {
    display: none;               /* Chrome/Safari */
  }

  .service-card {
    flex: 0 0 75vw;              /* each card takes ~75% of screen width */
    max-width: 280px;
    scroll-snap-align: start;
  }

  .service-img {
    height: 200px;               /* consistent image height on mobile */
  }

}
/* ═══════════════════════════════════════════════
   LIPOSUCTION PAGE SPECIFIC STYLES
═══════════════════════════════════════════════ */

/* 1. Add missing variables safely */
:root {
  --navy-2: #102844;
  --gold: #c79b52;
  --gold-2: #e2c58c;
  --cream: #fbf8f2;
  --paper: #ffffff;
  --ink: #1d2430;
  --muted: #6a7280;
  --line: #e9e1d3;
  --soft: #f7f3eb;
  --green: #198754;
  --shadow: 0 16px 40px rgba(11,29,53,.08);
  --shadow-2: 0 24px 60px rgba(11,29,53,.12);
}

/* 2. Scope the body background specifically to this page */
body.lipo-page {
  font-family: 'poppins', sans-serif;
  background: 
    radial-gradient(circle at top left, rgba(199,155,82,.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(11,29,53,.05), transparent 26%),
    var(--cream);
  color: var(--ink);
}

.lipo-page h1, .lipo-page h2, .lipo-page h3, .lipo-page h4, .lipo-page h5, .lipo-page h6 {
  letter-spacing: -.02em;
  color: #111827;
}

/* 3. Page Layout Components */
.topbar { background:var(--navy); padding:8px 0; position:relative; z-index:3000; border-bottom:none; }
.topbar-inner { max-width:1600px; margin:0 auto; padding:0 24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; }
.topbar-contact { display:flex; align-items:center; gap:18px; flex-wrap:wrap; color:rgba(255,255,255,.78); font-size:12px; font-weight:500; }
.topbar-contact span { display:flex; align-items:center; gap:6px; }
.topbar-contact i { color:var(--gold); font-size:11px; }
.topbar-contact a, .topbar-whatsapp { color:rgba(255,255,255,.88); }
.topbar-whatsapp { display:flex; align-items:center; gap:6px; font-size:12px; font-weight:600; }
.topbar-whatsapp i { color:#25d366; font-size:14px; }
.topbar .container-fluid { padding-left:24px; padding-right:24px; }

header.main-header { background:rgba(255,255,255,.96); backdrop-filter:blur(12px); position:sticky; top:0; z-index:2500; box-shadow:0 8px 30px rgba(11,29,53,.08); }
.header-inner { max-width:1280px; margin:0 auto; padding:0 24px; min-height:92px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.desktop-nav { display:flex; align-items:center; gap:4px; }
.mobile-trigger { width:48px; height:48px; border-radius:14px; border:1px solid rgba(11,29,53,.08); background:#fff; display:none; align-items:center; justify-content:center; color:var(--navy); font-size:20px; }
.mobile-menu-panel { position:fixed; inset:0; background:var(--navy); z-index:5000; padding:28px 24px; display:none; flex-direction:column; overflow:auto; }
.mobile-menu-panel.active { display:flex; }
.mobile-menu-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
.mobile-close { background:none; border:none; color:#fff; font-size:28px; }
.mobile-links { display:flex; flex-direction:column; }
.mobile-links a { color:rgba(255,255,255,.88); padding:16px 0; border-bottom:1px solid rgba(255,255,255,.08); font-size:17px; font-weight:600; }
.mobile-links .mobile-book { color:var(--gold); font-weight:800; }
.brand { display:flex; align-items:center; gap:10px; color:var(--navy); font-weight:800; letter-spacing:.02em; }
.brand-badge { width:38px; height:38px; border-radius:12px; background:var(--navy); display:grid; place-items:center; color:#fff; box-shadow:0 10px 30px rgba(11,29,53,.18); }
.brand-text { line-height:1; }
.brand-text span { display:block; font-size:10px; font-weight:700; color:var(--muted); letter-spacing:.18em; text-transform:uppercase; margin-top:2px; }

.content-col { padding:0 0 120px; }
.section-block { padding:28px 26px; border-bottom:1px solid rgba(11,29,53,.06); position:relative; }
.section-block.hero-wrap { padding-top:28px; background:linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.16)); }
.hero-card { background:linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.68)); border:1px solid rgba(11,29,53,.08); border-radius:32px; padding:26px; box-shadow:var(--shadow); overflow:hidden; position:relative; }
.hero-card:before { content:''; position:absolute; right:-120px; top:-120px; width:330px; height:330px; border-radius:50%; background:radial-gradient(circle, rgba(199,155,82,.18), transparent 60%); }
.hero-layout { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); gap:28px; align-items:center; }
.kicker { color:var(--gold); font-size:14px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:12px; }
.hero-title { font-size:66px; line-height:.95; margin-bottom:18px; }
.hero-copy { color:#596171; font-size:15px; line-height:1.85; max-width:540px; margin-bottom:26px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:24px; }
.hero-points { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; margin-top:22px; }
.mini-pill { background:#fff; border:1px solid rgba(11,29,53,.08); border-radius:18px; padding:14px 12px; display:flex; align-items:center; gap:10px; box-shadow:0 8px 24px rgba(11,29,53,.04); min-height:74px; }
.mini-pill i { color:var(--gold); font-size:18px; width:30px; text-align:center; }
.mini-pill strong { display:block; font-size:13px; color:#162033; }
.mini-pill span { display:block; font-size:11px; color:#7a8596; margin-top:2px; line-height:1.2; }
.hero-visual { position:relative; min-height:640px; border-radius:30px; overflow:hidden; background:linear-gradient(135deg, #f5efe6, #fff7ef 45%, #fff); border:1px solid rgba(11,29,53,.06); box-shadow:var(--shadow-2); }
.hero-visual img.bg-model { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center center; opacity:.98; }
.hero-visual .line-art { position:absolute; inset:0; pointer-events:none; opacity:.72; background:radial-gradient(circle at 62% 48%, rgba(199,155,82,.14), transparent 18%), radial-gradient(circle at 70% 55%, rgba(11,29,53,.06), transparent 25%); }
.hero-visual .brand-mini { position:absolute; left:18px; right:18px; top:14px; display:flex; justify-content:space-between; align-items:center; z-index:3; color:var(--navy); font-weight:800; font-size:12px; letter-spacing:.12em; text-transform:uppercase; opacity:.92; }
.quick-row { margin-top:16px; display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:10px; }
.quick-card { background:#fff; border:1px solid rgba(11,29,53,.08); border-radius:20px; padding:16px 14px; box-shadow:0 8px 24px rgba(11,29,53,.04); min-height:86px; display:flex; align-items:center; gap:12px; }
.quick-card .icon { width:42px; height:42px; border-radius:14px; background:rgba(199,155,82,.12); display:grid; place-items:center; color:var(--gold); flex:0 0 auto; }
.quick-card strong { display:block; font-size:15px; line-height:1.2; color:#132238; font-weight:bold; }
.quick-card span { display:block; font-size:12px; color:#748092; margin-top:3px; line-height:1.25; }
.section-heading { text-align:center; }
.section-heading h2 { font-size:40px; margin-bottom:10px; }
.section-heading p { max-width:910px; margin:0 auto; color:#667085; line-height:1.8; font-size:15px; }

.card-soft { background:#fff; border:1px solid rgba(11,29,53,.08); border-radius:22px; box-shadow:0 10px 30px rgba(11,29,53,.05); }
.trust-card { padding:20px 18px; min-height:118px; display:flex; align-items:center; justify-content:center; text-align:center; position:relative; overflow:hidden; border-top:3px solid var(--orange);}
.trust-card .icon-wrap { width:44px; height:44px; border-radius:14px; background:rgba(232,98,26,.10); display:grid; place-items:center; color:#e8621a; margin:0 auto 10px; }
.trust-card strong { display:block; font-size:15px; color:#162033; margin-bottom:4px; }
.trust-card span { display:block; font-size:11px; color:#768093; line-height:1.3; }

.snapshot-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.snapshot-card { padding:20px 18px; text-align:center; min-height:120px; display:flex; flex-direction:column; justify-content:center; }
.snapshot-card .num { font-size:30px; font-weight:800; color:var(--navy); line-height:1; margin-bottom:6px; }
.snapshot-card .cap { font-size:14px; color:#162033; font-weight:700; margin-bottom:4px; }
.snapshot-card .sub { font-size:11px; color:#7c8595; }

.gallery-row { display:grid; grid-template-columns:repeat(8,minmax(0,1fr)); gap:10px; }
.ba-tile { background:#fff; border:1px solid rgba(11,29,53,.08); border-radius:18px; overflow:hidden; box-shadow:0 8px 22px rgba(11,29,53,.04); }
.ba-tile img { width:100%; height:160px; object-fit:cover; transition:transform .35s ease; }
.ba-tile:hover img { transform:scale(1.04); }
.ba-labels { display:flex; justify-content:space-between; align-items:center; padding:9px 10px; font-size:11px; font-weight:700; color:#667085; background:#fff; }
.ba-labels span:last-child { color:var(--gold); }
.center-btn { display:flex; justify-content:center; margin-top:18px; }

/*.lipo-about-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:28px; align-items:center; }*/
.illustration-box { position:relative; min-height:320px; display:grid; place-items:center; background:linear-gradient(180deg, #fff, #fffaf4); border:1px solid rgba(11,29,53,.08); border-radius:28px; overflow:hidden; }
.illustration-box .fat-art { width:min(100%, 380px); aspect-ratio:1/1; border-radius:28px; background:radial-gradient(circle at 50% 52%, rgba(255,188,87,.25), transparent 13%), radial-gradient(circle at 50% 52%, rgba(255,161,0,.18), transparent 28%), linear-gradient(180deg, #f3c67b 0%, #f1b74a 35%, #e88d22 100%); position:relative; box-shadow:inset 0 0 0 1px rgba(255,255,255,.25), 0 16px 30px rgba(11,29,53,.08); }
.fat-art:before { content:''; position:absolute; inset:20px; border-radius:24px; background:radial-gradient(circle at 35% 35%, rgba(255,255,255,.38) 0 3%, transparent 3.5%), radial-gradient(circle at 60% 40%, rgba(255,255,255,.22) 0 3%, transparent 3.5%), radial-gradient(circle at 42% 65%, rgba(255,255,255,.25) 0 4%, transparent 4.2%), radial-gradient(circle at 70% 68%, rgba(255,255,255,.18) 0 3%, transparent 3.2%), linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,0)); box-shadow:inset 0 0 0 1px rgba(255,255,255,.18); }
.fat-art:after { content:''; position:absolute; left:50%; top:50%; width:55%; height:55%; transform:translate(-50%,-50%); border-radius:50%; border:2px solid rgba(255,255,255,.45); opacity:.55; }
.about-copy h2, .about-bottom-content h2, .areas-copy h2, .tech-copy h2 { font-size:42px; margin-bottom:16px; }
.about-copy p, .about-bottom-content p, .areas-copy p, .tech-copy p { color:#667085; line-height:1.9; font-size:16px; }

.about-mini-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin-top:22px; }
.about-mini { background:#fff; border:1px solid rgba(11,29,53,.08); border-radius:18px; padding:18px 16px; text-align:center; box-shadow:0 8px 22px rgba(11,29,53,.04); min-height:115px; }
.about-mini i { font-size:22px; color:var(--gold); margin-bottom:10px; }
.about-mini strong { display:block; font-size:14px; margin-bottom:6px; }
.about-mini span { display:block; font-size:11px; color:#768093; line-height:1.35; }

.areas-wrap { position:relative; background:linear-gradient(180deg,#fff, #fffaf4); border:1px solid rgba(11,29,53,.08); border-radius:28px; padding:28px; overflow:hidden; }
.areas-layout { display:grid; grid-template-columns:1fr 340px 1fr; gap:20px; align-items:center; }
.area-list { display:grid; gap:14px; }
.area-item { display:flex; align-items:center; gap:12px; font-weight:700; color:#223047; font-size:14px; }
.area-item .dot { width:34px; height:34px; border-radius:50%; background:rgba(199,155,82,.12); display:grid; place-items:center; color:var(--gold); flex:0 0 auto; }
.body-map { position:relative; height:430px; border-radius:24px; background:linear-gradient(180deg, rgba(11,29,53,.03), rgba(11,29,53,.01)); display:grid; place-items:center; overflow:hidden; }
.body-map .body-figure { width:185px; height:400px; background:radial-gradient(circle at 50% 11%, #f2c79f 0 10%, transparent 10.3%), radial-gradient(circle at 50% 18%, #d59d75 0 9%, transparent 9.3%), linear-gradient(180deg, #f3c9a4 0 100%); border-radius:90px 90px 80px 80px; position:relative; box-shadow:0 20px 40px rgba(11,29,53,.08); }
.body-map .body-figure:before, .body-map .body-figure:after { content:''; position:absolute; left:50%; transform:translateX(-50%); background:#efbf95; }
.body-map .body-figure:before { top:-28px; width:68px; height:58px; border-radius:50%; }
.body-map .body-figure:after { bottom:-38px; width:220px; height:110px; border-radius:50%; opacity:.8; filter:blur(12px); }
.body-map .callouts { position:absolute; inset:0; pointer-events:none; font-size:12px; font-weight:700; color:#7b5a25; }
.callout { position:absolute; display:flex; align-items:center; gap:8px; }
.callout:before { content:''; width:28px; height:1px; background:rgba(199,155,82,.9); }
.callout.left:before { order:2; }
.callout.right:before { order:0; }
.callout.left span, .callout.right span { order:1; }
.c1 { left:0; top:65px; } .c2 { left:0; top:120px; } .c3 { left:0; top:182px; } .c4 { left:0; top:250px; }
.c5 { right:0; top:65px; } .c6 { right:0; top:120px; } .c7 { right:0; top:182px; } .c8 { right:0; top:250px; }

.tech-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(177px, 232px));justify-content:center; gap:14px; }
.tech-card { background:#fff; border:1px solid rgba(11,29,53,.08); border-radius:24px; padding:26px 22px; min-height:190px; box-shadow:0 10px 24px rgba(11,29,53,.04); position:relative; overflow:hidden; text-align:left !important; }
.tech-card:before { content:''; position:absolute; left:0; top:0; right:0; height:4px; background:linear-gradient(90deg,var(--gold),#e7cd9c); }
.tech-card.active { background:linear-gradient(180deg, var(--navy), #16365a); color:#fff; transform:translateY(-3px); }
.tech-card.active h4, .tech-card.active p { color:#fff; }
.tech-card h4 { font-size:28px; margin-bottom:12px; }
.tech-card p { color:#6a7280; line-height:1.8; font-size:14px; }
.tech-card .icon { font-size:28px; color:var(--gold); margin-bottom:14px; }

.why-band { background:var(--navy); color:#fff; border-radius:28px; padding:28px; box-shadow:var(--shadow-2); }
.why-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }

.test-grid { display:grid; grid-template-columns:1fr 360px; gap:18px; align-items:start; }
.cost-box { background:linear-gradient(180deg,var(--navy),#183558); color:#fff; border-radius:28px; padding:28px; position:sticky; top:96px; box-shadow:var(--shadow-2); }
.cost-box h3 { font-size:34px; color:#fff; margin-bottom:10px; }
.cost-box p { color:rgba(255,255,255,.78); line-height:1.8; font-size:14px; }
.test-card, .faq-card { background:#fff; border:1px solid rgba(11,29,53,.08); border-radius:22px; box-shadow:0 10px 24px rgba(11,29,53,.04); }
.test-card { padding:22px; margin-bottom:14px; }
.test-card .stars { color:#ffb400; font-size:14px; margin-bottom:10px; }
.test-card p { color:#5f6878; font-size:14px; line-height:1.8; margin-bottom:12px; }
.test-card .name { font-weight:700; font-size:14px; color:#182235; }

.faq-wrap { display:grid; gap:12px; }
.accordion-item { border:1px solid rgba(11,29,53,.08)!important; border-radius:18px!important; overflow:hidden; box-shadow:0 8px 22px rgba(11,29,53,.03); }
.accordion-button { background:#fff; font-weight:700; padding:18px 20px; box-shadow:none!important; }
.accordion-button:not(.collapsed) { background:rgba(11,29,53,.03); color:var(--navy); }
.accordion-body { color:#5f6878; line-height:1.85; padding:18px 20px 20px; }

.footer-cta { background:linear-gradient(180deg,#fff, #fffaf4); border:1px solid rgba(11,29,53,.08); border-radius:30px; padding:28px; box-shadow:var(--shadow); }
.footer-cta h2 { font-size:42px; margin-bottom:10px; }
.footer-cta p { color:#667085; line-height:1.8; margin-bottom:18px; }

.phone-preview-bar { display:none; position:fixed; left:0; right:0; bottom:0; z-index:2500; background:rgba(11,29,53,.98); border-top:1px solid rgba(255,255,255,.08); }
.phone-preview-bar .btn { border-radius:0; padding:14px 8px; font-size:13px; font-weight:700; }
.divider-line { height:1px; background:linear-gradient(90deg, transparent, rgba(11,29,53,.12), transparent); margin:0 auto; width:100%; }
.bg-white-block { background:linear-gradient(180deg,#fff, #fffaf5); }

/* Responsive Lipo Overrides */
@media (max-width: 1399.98px) {
  .hero-title { font-size:58px; }
  .hero-visual { min-height:590px; }
}
@media (max-width: 1199.98px) {
  /*.hero-layout, .lipo-about-grid, .test-grid { grid-template-columns:1fr; }*/
  .hero-visual { min-height:520px; max-width:760px; margin:0 auto; }
  .hero-title { font-size:54px; }
  .hero-points, .quick-row, .snapshot-grid, .about-mini-grid, .tech-grid, .why-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .gallery-row { grid-template-columns:repeat(4,minmax(0,1fr)); }
  .areas-layout { grid-template-columns:1fr; }
  .body-map { height:360px; }
  .cost-box { position:relative; top:auto; margin-top:18px; }
}
@media (max-width: 991.98px) {
  .section-block { padding:22px 16px; }
  .hero-card { padding:18px; }
  .hero-title { font-size:44px; }
  .hero-copy { font-size:14px; }
  .hero-points { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .quick-row { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .snapshot-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .gallery-row { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .about-mini-grid, .tech-grid, .why-grid { grid-template-columns:1fr; }
  .section-heading h2, .about-copy h2, .about-bottom-content h2, .areas-copy h2, .tech-copy h2 { font-size:34px; }
  .footer-cta h2 { font-size:34px; }
  .phone-preview-bar { display:block; }
  .content-col { padding-bottom:92px; }
  .topbar .navbar-collapse { padding-top:14px; }
}
@media (max-width: 575.98px) {
  .topbar .container-fluid { padding-left:14px; padding-right:14px; }
  .hero-title { font-size:38px; }
  .hero-card { border-radius:24px; }
  .hero-visual { min-height:430px; }
  .hero-points, .quick-row, .snapshot-grid, .gallery-row { grid-template-columns:1fr; }
  .hero-actions .btn, .footer-cta .btn { width:100%; }
  .section-heading h2, .about-copy h2, .about-bottom-content h2, .areas-copy h2, .tech-copy h2, .footer-cta h2 { font-size:30px; }
  .body-map { height:310px; }
  .areas-wrap { padding:18px; }
}
/* ── Dropdown trigger arrow ── */
.nav-item { position: relative; }

.nav-arrow {
  font-size: 9px;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.25s ease;
}
.nav-item:hover .nav-arrow,
.nav-item.open .nav-arrow { transform: rotate(180deg); }

/* ── Shared dropdown base ── */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 48px rgba(11,29,53,.14);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 2000;
  white-space: nowrap;
}

/* Arrow caret */
.dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Hover bridge so dropdown stays open */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

/* ── Links inside dropdown ── */
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.4;
  transition: background 0.18s, color 0.18s;
}
.dropdown a:hover {
  background: var(--orange-pale);
  color: var(--orange);
}

/* Group labels */
.dd-group-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 10px 20px 4px;
}
.dd-group { padding-bottom: 4px; }
.dd-group + .dd-group {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 4px;
}

/* View All link */
.dd-view-all {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--orange) !important;
  padding-top: 6px !important;
  padding-bottom: 8px !important;
}
.dd-view-all:hover { background: var(--orange-pale) !important; }

/* ── Wide 3-column dropdown for Cosmetic Surgery ── */
.dd-wide {
  min-width: 750px;
  left: 0;
  transform: translateX(0) translateY(6px);
  display: flex;
  gap: 0;
  padding: 0;
  white-space: normal;
}
.dd-wide::before { left: 80px; }

.nav-item:hover .dd-wide,
.nav-item.open .dd-wide {
  transform: translateX(0) translateY(0);
}

.dd-wide .dd-group {
  flex: 1;
  padding: 14px 0 10px;
  border-top: none;
  margin-top: 0;
}
.dd-wide .dd-group + .dd-group {
  border-top: none;
  border-left: 1px solid var(--border);
  margin-top: 0;
}
.dd-wide .dd-group-label { padding-bottom: 6px; }

/* ── Skin Treatments: anchor to right edge instead of left ── */
.nav-item:hover .dropdown.dd-wide.dd-skin,
.nav-item.open .dropdown.dd-wide.dd-skin {
  left: auto;
  right: 0;
  min-width: 750px;
}
.nav-item:hover .dropdown.dd-wide.dd-skin,
.nav-item.open .dropdown.dd-wide.dd-skin {
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(0);
  min-width: 820px;
}

/* Initial state (before hover) */
.dropdown.dd-wide.dd-skin {
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(6px);
  min-width: 750px;
}
.dropdown.dd-wide.dd-skin::before {
  left: 50%;
  transform: translateX(-50%);
}
/* ════════ MOBILE MENU ════════ */
.mob-acc { width: 100%; }

.mob-acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mob-acc-arrow {
  font-size: 10px;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.mob-acc-btn[aria-expanded="true"] .mob-acc-arrow { transform: rotate(180deg); }

.mob-acc-panel {
  display: none;
  flex-direction: column;
}
.mob-acc-panel.open { display: flex; }

.mob-group-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange);
  padding: 10px 0 4px;
  opacity: 0.9;
}

.mobile-menu .nav-link.sub {
  font-size: 16px;
  padding: 9px 12px;
  color: rgba(255,255,255,.6) !important;
  border-bottom: 1px solid rgba(255,255,255,.05) !important;
  border-radius: 0;
}
.mobile-menu .nav-link.sub:hover { color: var(--orange-light) !important; background: none !important; }

.mob-view-all {
  color: rgba(232,98,26,.85) !important;
  font-weight: 600 !important;
  font-size: 12.5px !important;
}

.mob-book-btn {
  margin-top: 22px;
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 30px;
  padding: 14px 22px !important;
  font-weight: 700;
  font-size: 15px;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: none !important;
}
.mob-book-btn:hover { background: var(--orange-light) !important; }

/*inner page*/
.lipo-banner{
    position:relative;
    overflow:hidden;
    padding:40px 0;
    background:
    linear-gradient(135deg,#fff7f2 0%,#ffffff 45%,#fff4ec 100%);
}

.lipo-banner-shape{
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(circle,
    rgba(232,98,26,.10) 0%,
    transparent 70%);
    top:-250px;
    right:-180px;
}

.lipo-banner-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.banner-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(232,98,26,.10);
    border:1px solid rgba(232,98,26,.18);
    color:#e8621a;
    font-size:13px;
    font-weight:600;
    margin-bottom:24px;
}

.lipo-banner-content h1{
    font-size:72px;
    line-height:1;
    font-weight:700;
    color:#0b1d35;
    margin-bottom:24px;
    font-family:'Poppins',serif;
    letter-spacing:-2px;
}

.lipo-banner-content h1 span{
    color:#e8621a;
}

.lipo-banner-content p{
    font-size:17px;
    line-height:1.9;
    color:#5f6b7a;
    max-width:620px;
    margin-bottom:34px;
}

.banner-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.btn-orange{
    background:#e8621a;
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.btn-orange:hover{
    transform:translateY(-2px);
    color:#fff;
}

.btn-white{
    background:#fff;
    color:#0b1d35;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
    border:1px solid rgba(11,29,53,.08);
    box-shadow:0 10px 30px rgba(11,29,53,.06);
    transition:.3s;
}

.btn-white:hover{
    transform:translateY(-2px);
    color:#0b1d35;
}

.banner-features{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.feature-pill{
    background:#fff;
    border-radius:18px;
    padding:16px 18px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 10px 30px rgba(11,29,53,.06);
    border:1px solid rgba(11,29,53,.06);
}

.feature-pill i{
    width:44px;
    height:44px;
    border-radius:14px;
    background:rgba(232,98,26,.10);
    color:#e8621a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.feature-pill strong{
    display:block;
   font-size:14px;
    color:#0b1d35;
}
 
.feature-pill span{
    display:block;
    font-size:12px;
    color:#7b8794;
}

.lipo-banner-image{
    position:relative;
}

.lipo-banner-image img{
    width:100%;
    height:720px;
    object-fit:cover;
    border-radius:36px;
    box-shadow:0 25px 60px rgba(11,29,53,.14);
}

.floating-card{
    position:absolute;
    bottom:30px;
    left:-30px;
    background:#fff;
    padding:20px 24px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(11,29,53,.12);
}

.floating-card strong{
    display:block;
    font-size:24px;
    color:#0b1d35;
}

.floating-card span{
    color:#7b8794;
    font-size:13px;
}

@media(max-width:991px){

    .lipo-banner{
        padding:60px 0;
    }

    .lipo-banner-grid{
        grid-template-columns:1fr;
    }

    .lipo-banner-content{
        text-align:center;
    }

    .lipo-banner-content h1{
        font-size:46px;
    }

    .lipo-banner-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .banner-buttons{
        justify-content:center;
    }

    .banner-features{
        justify-content:center;
    }

    .lipo-banner-image img{
        height:500px;
    }

    .floating-card{
        left:20px;
        bottom:20px;
    }
}

@media(max-width:576px){

    .lipo-banner-content h1{
        font-size:38px;
    }

    .feature-pill{
        width:100%;
    }

    .lipo-banner-image img{
        height:420px;
    }

    .btn-orange,
    .btn-white{
        width:100%;
       width:100%;
        justify-content:center;
    }
}
  /* =========================================================
     PAGE-SPECIFIC ENHANCEMENTS – Liposuction Inner Page
  ========================================================= */

  /* ---- HERO BANNER ---- */
  .lipo-banner {
    position: relative;
    overflow: hidden;
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #fff7f2 0%, #ffffff 50%, #fff4ec 100%);
  }
  .lipo-banner::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,98,26,.09) 0%, transparent 70%);
    top: -300px; right: -200px;
    pointer-events: none;
  }
  .lipo-banner::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11,29,53,.05) 0%, transparent 70%);
    bottom: -180px; left: -120px;
    pointer-events: none;
  }
  .lipo-banner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  .banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(232,98,26,.10);
    border: 1px solid rgba(232,98,26,.20);
    color: #e8621a;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: .02em;
  }
  @media (max-width: 991px) {
      .banner-badge {
          font-size: 11px;
      }
  }
  .lipo-banner-content h1 {
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.0;
    font-weight: 600;
    color: #0b1d35;
    margin-bottom: 22px;
    font-family: var(--font-serif);
    letter-spacing: -2px;
  }
  .lipo-banner-content h1 span { color: #e8621a; }
  .lipo-banner-content .lead-text {
    font-size: 16px;
    line-height: 1.85;
    color: #5f6b7a;
    max-width: 580px;
    margin-bottom: 34px;
  }
  .banner-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 38px; }
  .btn-orange {
    background: #e8621a;
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
    box-shadow: 0 8px 28px rgba(232,98,26,.30);
  }
  .btn-orange:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 12px 36px rgba(232,98,26,.40); }
  .btn-wa {
    background: #fff;
    color: #0b1d35;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(11,29,53,.10);
    box-shadow: 0 8px 24px rgba(11,29,53,.06);
    transition: .3s;
  }
  .btn-wa:hover { transform: translateY(-2px); color: #0b1d35; box-shadow: 0 12px 32px rgba(11,29,53,.10); }
  .btn-wa .fab { color: #25d366; font-size: 18px; }
  .banner-features { display: flex; gap: 14px; flex-wrap: wrap; }
  .feature-pill {
    background: #fff;
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(11,29,53,.06);
    border: 1px solid rgba(11,29,53,.06);
    flex: 1;
    min-width: 160px;
  }
  .feature-pill .pill-icon {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: rgba(232,98,26,.10);
    color: #e8621a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .feature-pill strong { display: block; font-size: 14px; color: #0b1d35; font-weight: 700; }
  .feature-pill span { display: block; font-size: 12px; color: #7b8794; }

  .lipo-banner-image { position: relative; }
  .lipo-banner-image img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 30px 70px rgba(11,29,53,.14);
  }
  .floating-stat {
    position: absolute;
    bottom: 28px;
    left: -24px;
    background: #fff;
    padding: 20px 26px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(11,29,53,.14);
    border: 1px solid rgba(11,29,53,.06);
  }
  .floating-stat strong { display: block; font-size: 30px; color: #0b1d35; font-weight: 800; line-height: 1; }
  .floating-stat span { color: #7b8794; font-size: 13px; margin-top: 4px; display: block; }
  .floating-rating {
    position: absolute;
    top: 28px;
    right: -20px;
    background: #0b1d35;
    color: #fff;
    padding: 16px 22px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(11,29,53,.20);
    text-align: center;
  }
  .floating-rating .stars { color: #ffb400; font-size: 13px; margin-bottom: 4px; }
  .floating-rating strong { font-size: 24px; font-weight: 800; display: block; line-height: 1; }
  .floating-rating span { font-size: 11px; color: rgba(255,255,255,.65); display: block; margin-top: 3px; }

  /* ---- QUICK ROW ---- */
  .quick-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 28px 0;
  }
  .quick-card {
    background: #fff;
    border: 1px solid rgba(11,29,53,.08);
    border-radius: 20px;
    padding: 20px 18px;
    box-shadow: 0 8px 24px rgba(11,29,53,.05);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: .3s;
  }
  .quick-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(11,29,53,.10); }
  .quick-card .qc-icon {
    width: 48px; height: 48px;
    border-radius: 16px;
    background: rgba(232,98,26,.10);
    color: #e8621a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .quick-card strong { display: block; font-size: 15px; font-weight: 700; color: #132238; line-height: 1.2; }
  .quick-card span { display: block; font-size: 12px; color: #748092; margin-top: 4px; line-height: 1.3; }

  /* ---- SECTION COMMONS ---- */
  .section-block { padding: 32px 0; }
  .bg-light-block { background: linear-gradient(180deg, #fff, #fffaf5); }
  .bg-cream-block { background: linear-gradient(180deg, #fffaf5, #fff7ef); }
  .section-heading { text-align: center; }
  .section-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e8621a;
    margin-bottom: 14px;
  }
  .section-heading .eyebrow::before,
  .section-heading .eyebrow::after {
    content: '';
    width: 28px;
    height: 2px;
    background: #e8621a;
    border-radius: 2px;
  }
  .section-heading h2 {
    font-size: clamp(28px, 3vw, 42px);
    color: #0b1d35;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .section-heading p { color: #667085; max-width: 910px; margin: 0 auto; font-size: 16px; line-height: 1.8; margin-bottom:30px;}

  /* ---- AT A GLANCE ---- */
  .glance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .glance-card {
    background: #fff;
    border: 1px solid rgba(11,29,53,.08);
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11,29,53,.05);
    border-top: 4px solid #e8621a;
    transition: .3s;
  }
  .glance-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(11,29,53,.10); }
  .glance-card .gc-icon {
    width: 54px; height: 54px;
    border-radius: 18px;
    background: rgba(232,98,26,.10);
    color: #e8621a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 16px;
  }
  .glance-card .gc-val {
    font-size: 28px;
    font-weight: 500;
    color: #0b1d35;
    line-height: 1;
    margin-bottom: 6px;
    font-family: var(--font-serif);
  }
  .glance-card .gc-label { font-size: 14px; color: #667085; font-weight: 500; }

  /* ---- WHAT IS LIPO ---- */
  .lipo-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }
  .about-visual {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    /*box-shadow: 0 24px 60px rgba(11,29,53,.12);*/
  }
  .about-visual img { width: 100%; height: 620px; object-fit: cover; }
  .about-visual .av-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #0b1d35;
    color: #fff;
    padding: 14px 20px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 600;
  }
  .about-visual .av-badge i { color: #ffb400; margin-right: 8px; }
  .about-copy .eyebrow-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e8621a;
    margin-bottom: 12px;
    display: block;
  }
  .about-copy h2, .about-bottom-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 600;
    color: #0b1d35;
    letter-spacing: -1px;
    margin-bottom: 18px;
    line-height: 1.15;
  }
  .about-copy h3, .about-bottom-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 2.8vw, 33px);
    font-weight: 600;
    color: #0b1d35;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.05;
  }
  .about-copy p, .about-bottom-content p { color: #1d2430; line-height: 1.9; font-size: 16px; margin-bottom: 8px; margin-top:8px; }
  #about .container > p {
    margin-top: 30px;
}
.about-bottom-content{
    margin-top:20px;
    margin-bottom:20px;
}
  .about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
  .ah-item {
    background: #fff;
    border: 1px solid rgba(11,29,53,.08);
    border-radius: 18px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(11,29,53,.04);
    transition: .3s;
  }
  .ah-item:hover { border-color: rgba(232,98,26,.25); box-shadow: 0 10px 30px rgba(11,29,53,.08); }
  .ah-item .ahi { color: #e8621a; font-size: 18px; margin-top: 2px; flex-shrink: 0; }
  .ah-item strong { display: block; font-size: 13px; font-weight: 700; color: #0b1d35; margin-bottom: 3px; }
  .ah-item span { display: block; font-size: 12px; color: #748092; line-height: 1.4; }

  /* ---- CANDIDATES ---- */
  .candidates-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .cand-card {
    background: #fff;
    border: 1px solid rgba(11,29,53,.08);
    border-radius: 24px;
    padding: 30px 28px;
    box-shadow: 0 10px 30px rgba(11,29,53,.05);
  }
  .cand-card.can { border-top: 4px solid #22c55e; }
  .cand-card.cannot { border-top: 4px solid #ef4444; }
  .cand-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .cand-card.can h3 { color: #16a34a; }
  .cand-card.cannot h3 { color: #dc2626; }
  .cand-list { display: flex; flex-direction: column; gap: 14px; }
  .cand-item { display: flex; align-items: flex-start; gap: 12px; }
  .cand-item .ci-dot {
    width: 26px; height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .cand-card.can .ci-dot { background: rgba(34,197,94,.12); color: #16a34a; }
  .cand-card.cannot .ci-dot { background: rgba(239,68,68,.12); color: #dc2626; }
  .cand-item p { font-size: 14px; color: #5f6878; line-height: 1.65; margin: 0; }
  .cand-item strong { color: #0b1d35; font-weight: 600; }

  /* ---- AREAS WE TREAT ---- */
  .areas-section { background: linear-gradient(180deg, #fff, #fffaf5); }
  .areas-wrap {
    background: linear-gradient(180deg, #fff, #fffdf8);
    border: 1px solid rgba(11,29,53,.08);
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 16px 40px rgba(11,29,53,.06);
  }
  .areas-layout {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    gap: 30px;
    align-items: center;
  }
  .area-list { display: grid; gap: 16px; }
  .area-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: #1d2430;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(11,29,53,.07);
    box-shadow: 0 4px 14px rgba(11,29,53,.04);
    transition: .3s;
  }
  .area-item:hover { border-color: rgba(232,98,26,.25); transform: translateX(3px); }
  .area-item.right:hover { transform: translateX(-3px); }
  .area-item .dot {
    width: 36px; height: 36px;
    border-radius: 12px;
    background: rgba(232,98,26,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8621a;
    flex-shrink: 0;
    font-size: 15px;
  }
  .body-map {
    position: relative;
    height: 420px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(11,29,53,.03), rgba(11,29,53,.01));
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .body-figure {
    width: 170px;
    height: 380px;
    background: linear-gradient(180deg, #f3c9a4 0%, #e8b48d 100%);
    border-radius: 85px 85px 75px 75px;
    position: relative;
    box-shadow: 0 20px 50px rgba(11,29,53,.10);
  }
  .body-figure::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 64px;
    border-radius: 50%;
    background: #f2c79f;
  }
  .body-map .callouts { position: absolute; inset: 0; pointer-events: none; }
  .callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #7b5a25;
  }
  .callout::before { content: ''; width: 28px; height: 1.5px; background: rgba(232,98,26,.7); border-radius: 2px; }
  .callout.right::before { order: 2; }
  .c1 { left: 10px; top: 55px; } .c2 { left: 10px; top: 110px; }
  .c3 { left: 10px; top: 170px; } .c4 { left: 10px; top: 235px; }
  .c5 { right: 10px; top: 55px; } .c6 { right: 10px; top: 110px; }
  .c7 { right: 10px; top: 170px; } .c8 { right: 10px; top: 235px; }

  /* ---- TECHNIQUES ---- */
  /*.tech-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }*/
  .tech-card {
    background: #fff;
    border: 1px solid rgba(11,29,53,.08);
    border-radius: 24px;
    padding: 28px 22px;
    box-shadow: 0 10px 28px rgba(11,29,53,.05);
    position: relative;
    overflow: hidden;
    transition: .35s;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .tech-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c79b52, #e7cd9c);
  }
  .tech-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(11,29,53,.12); }
  .tech-card.featured {
    background: linear-gradient(160deg, #0b1d35, #1a3260);
    border-color: transparent;
    color: #fff;
  }
  .tech-card.featured::before { background: linear-gradient(90deg, #e8621a, #f07d3a); }
  .tech-card .tc-icon { font-size: 28px; color: #c79b52; }
  .tech-card.featured .tc-icon { color: #f07d3a; }
  .tech-card h4 { font-size: 16px; font-weight: 700; color: #0b1d35; line-height: 1.3; }
  .tech-card.featured h4 { color: #fff; }
  .tech-card p { font-size: 13px; color: #667085; line-height: 1.7; flex: 1; }
  .tech-card.featured p { color: rgba(255,255,255,.72); }
  .tc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232,98,26,.15);
    color: #f07d3a;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    margin-top: auto;
    align-self: flex-start;
  }
  .tc-link {
    font-size: 12px;
    font-weight: 600;
    color: #c79b52;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
    align-self: flex-start;
    transition: gap .2s;
  }
  .tech-card:hover .tc-link { gap: 9px; }

  /* ---- PROCEDURE STEPS ---- */
  .procedure-section { background: #0b1d35; position: relative; overflow: hidden; }
  .procedure-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232,98,26,.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 10% 80%, rgba(26,50,96,.6) 0%, transparent 60%);
    pointer-events: none;
  }
  .procedure-section .section-heading h2 { color: #fff; }
  .procedure-section .section-heading p { color: rgba(255,255,255,.6); }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
  }
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(232,98,26,.4), transparent);
    pointer-events: none;
  }
  .step-card {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 8px;
  }
  .step-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 2px solid rgba(232,98,26,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #f07d3a;
    position: relative;
    transition: .35s;
  }
  .step-card:hover .step-icon {
    background: #e8621a;
    border-color: #e8621a;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 28px rgba(232,98,26,.5);
  }
  .step-num {
    position: absolute;
    top: -6px; right: -4px;
    width: 22px; height: 22px;
    background: #e8621a;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .step-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
  .step-desc { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.6; }

  /* ---- RECOVERY TIMELINE ---- */
  .recovery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .recovery-card {
    background: #fff;
    border: 1px solid rgba(11,29,53,.08);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(11,29,53,.05);
    position: relative;
    overflow: hidden;
    transition: .3s;
  }
  .recovery-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(11,29,53,.10); }
  .recovery-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
  }
  .recovery-card:nth-child(1)::before { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
  .recovery-card:nth-child(2)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
  .recovery-card:nth-child(3)::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
  .recovery-card:nth-child(4)::before { background: linear-gradient(90deg, #22c55e, #4ade80); }
  .rc-phase {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .recovery-card:nth-child(1) .rc-phase { color: #3b82f6; }
  .recovery-card:nth-child(2) .rc-phase { color: #f59e0b; }
  .recovery-card:nth-child(3) .rc-phase { color: #8b5cf6; }
  .recovery-card:nth-child(4) .rc-phase { color: #22c55e; }
  .rc-title { font-size: 18px; font-weight: 800; color: #0b1d35; margin-bottom: 14px; font-family: 'Poppins', sans-serif; }
  .rc-list { display: flex; flex-direction: column; gap: 10px; }
  .rc-item { font-size: 13px; color: #5f6878; line-height: 1.6; }
  .rc-item i { color: #e8621a; font-size: 11px; margin-top: 3px; flex-shrink: 0; }

  /* ---- WHY CHOOSE ---- */
  .why-band {
    background: linear-gradient(160deg, #0b1d35, #1a3260);
    border-radius: 32px;
    padding: 50px 44px;
    box-shadow: 0 24px 60px rgba(11,29,53,.20);
    position: relative;
    overflow: hidden;
  }
  .why-band::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,98,26,.15) 0%, transparent 65%);
    pointer-events: none;
  }
  .why-band h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 8px;
  }
  .why-band .why-sub { color: rgba(255,255,255,.6); font-size: 15px; margin-bottom: 36px; }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    padding: 24px 20px;
    transition: .3s;
    backdrop-filter: blur(8px);
  }
  .why-card:hover { background: rgba(232,98,26,.15); border-color: rgba(232,98,26,.35); transform: translateY(-4px); }
  .why-card i { font-size: 24px; color: #f07d3a; display: block; }
  .why-card strong { display: block; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
  .why-card span { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; }

  /* ---- SIDE EFFECTS ---- */
  .se-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .se-card {
    background: #fff;
    border: 1px solid rgba(11,29,53,.08);
    border-radius: 20px;
    padding: 24px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 8px 22px rgba(11,29,53,.04);
    transition: .3s;
  }
  .se-card:hover { box-shadow: 0 16px 40px rgba(11,29,53,.09); transform: translateY(-3px); }
  .se-card .se-icon {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: rgba(245,158,11,.10);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .se-card strong { display: block; font-size: 16px; font-weight: 700; color: #0b1d35; margin-bottom: 6px; }
  .se-card p { font-size: 13px; color: #667085; line-height: 1.65; margin: 0; }

  /* ---- BEFORE AFTER ---- */
  .ba-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
  .ba-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(11,29,53,.08);
    box-shadow: 0 10px 28px rgba(11,29,53,.06);
    transition: .35s;
    display: block;
    color: inherit;
  }
  .ba-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(11,29,53,.14); }
  .ba-img-wrap {
    height: 160px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #0b1d35, #1a3260);
  }
  .ba-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
  .ba-card:hover .ba-img-wrap img { transform: scale(1.06); }
  .ba-img-label {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(11,29,53,.82);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
    backdrop-filter: blur(4px);
  }
  .ba-card-caption {
    background: #fff;
    padding: 16px 18px;
    font-size: 14px;
    color: #0b1d35;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ba-card-caption i { color: #e8621a; font-size: 14px; }

  /* ---- TESTIMONIALS + COST ---- */
  .review-cost-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
  .reviews-col { }
  .review-header { margin-bottom: 24px; }
  .review-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 800;
    color: #0b1d35;
    letter-spacing: -1px;
    margin-bottom: 6px;
  }
  .review-header p { color: #667085; font-size: 15px; }
  .review-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
  .review-score {
    font-size: 42px;
    font-weight: 900;
    color: #0b1d35;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
  }
  .review-score-info { }
  .review-stars { color: #ffb400; font-size: 18px; letter-spacing: 2px; }
  .review-count { font-size: 13px; color: #667085; margin-top: 3px; }
  .review-cards { display: flex; flex-direction: column; gap: 14px; }
  .rv-card {
    background: #fff;
    border: 1px solid rgba(11,29,53,.08);
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: 0 8px 22px rgba(11,29,53,.05);
    transition: .3s;
    position: relative;
  }
  .rv-card:hover { box-shadow: 0 16px 40px rgba(11,29,53,.10); }
  .rv-card .rv-quote {
    position: absolute;
    top: 18px; right: 20px;
    font-size: 40px;
    color: rgba(232,98,26,.12);
    font-family: Georgia, serif;
    line-height: 1;
  }
  .rv-card .rv-stars { color: #ffb400; font-size: 13px; margin-bottom: 10px; }
  .rv-card p { font-size: 14px; color: #5f6878; line-height: 1.8; margin-bottom: 14px; font-style: italic; }
  .rv-card .rv-author { display: flex; align-items: center; gap: 12px; }
  .rv-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8621a, #0b1d35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
  }
  .rv-name { font-size: 14px; font-weight: 700; color: #0b1d35; }
  .rv-procedure { font-size: 12px; color: #e8621a; margin-top: 2px; }

  .cost-box {
    background: linear-gradient(160deg, #0b1d35, #1a3260);
    color: #fff;
    border-radius: 28px;
    padding: 36px 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 24px 60px rgba(11,29,53,.22);
    overflow: hidden;
  }
  .cost-box::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,98,26,.18) 0%, transparent 65%);
    pointer-events: none;
  }
  .cost-kicker { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 8px; }
  .cost-price { font-size: 36px; font-weight: 900; color: #fff; font-family: 'Poppins', sans-serif; line-height: 1; margin-bottom: 4px; }
  .cost-price-end { font-size: 22px; color: rgba(255,255,255,.7); }
  .cost-note { color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.7; margin-bottom: 28px; }
  .cost-btns { display: grid; gap: 12px; margin-bottom: 24px; }
  .btn-gold {
    background: linear-gradient(90deg, #c79b52, #e2c58c);
    color: #0b1d35;
    padding: 15px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
  }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(199,155,82,.35); color: #0b1d35; }
  .btn-green-wa {
    background: #25d366;
    color: #fff;
    padding: 15px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
  }
  .btn-green-wa:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 10px 28px rgba(37,211,102,.35); }
  .cost-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .cost-detail-item {
    background: rgba(255,255,255,.07);
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.10);
  }
  .cost-detail-item strong { display: block; font-size: 14px; color: #fff; font-weight: 600; margin-bottom: 4px; }
  .cost-detail-item span { font-size: 12px; color: rgba(255,255,255,.5); }

  /* ---- CLINIC TIMINGS ---- */
  .timings-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
  .timings-card {
    background: #fff;
    border: 1px solid rgba(11,29,53,.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11,29,53,.06);
  }
  .timings-header {
    background: linear-gradient(90deg, #0b1d35, #1a3260);
    color: #fff;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
  }
  .timings-header i { color: #f07d3a; font-size: 20px; }
  .timings-body { padding: 0; }
  .timing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(11,29,53,.06);
    font-size: 14px;
    transition: .2s;
  }
  .timing-row:last-child { border-bottom: none; }
  .timing-row:hover { background: rgba(232,98,26,.04); }
  .timing-row .day { color: #0b1d35; font-weight: 600; }
  .timing-row .time { color: #e8621a; font-weight: 700; }
  .timing-row.holiday .time { color: #ef4444; }
  .timings-info { padding: 20px 0; }
  .timings-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0b1d35;
    letter-spacing: -1px;
    margin-bottom: 14px;
  }
  .timings-info p { color: #667085; font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
  .location-list { display: flex; flex-direction: column; gap: 16px; }
  .loc-item { display: flex; align-items: flex-start; gap: 14px; }
  .loc-icon {
    width: 40px; height: 40px;
    border-radius: 13px;
    background: rgba(232,98,26,.10);
    color: #e8621a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
  }
  .loc-item strong { display: block; font-size: 14px; font-weight: 700; color: #0b1d35; margin-bottom: 3px; }
  .loc-item span { font-size: 13px; color: #667085; line-height: 1.55; }

  /* ---- FAQ ---- */
  .faq-wrap .accordion-item {
    border: 1px solid rgba(11,29,53,.08) !important;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(11,29,53,.04);
    margin-bottom: 12px;
  }
  .faq-wrap .accordion-button {
    background: #fff;
    font-weight: 700;
    font-size: 15px;
    color: #0b1d35;
    padding: 20px 24px;
    box-shadow: none !important;
  }
  .faq-wrap .accordion-button:not(.collapsed) {
    background: rgba(232,98,26,.04);
    color: #e8621a;
  }
  .faq-wrap .accordion-button::after {
    filter: none;
  }
  .faq-wrap .accordion-body { color: #5f6878; line-height: 1.85; padding: 16px 24px 22px; font-size: 14.5px; }

  /* ---- BOTTOM CTA ---- */
  .bottom-cta {
    background: linear-gradient(135deg, #0b1d35 0%, #1a3260 100%);
    border-radius: 32px;
    padding: 60px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(11,29,53,.20);
  }
  .bottom-cta::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,98,26,.18) 0%, transparent 65%);
    pointer-events: none;
  }
  .bottom-cta::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199,155,82,.12) 0%, transparent 65%);
    pointer-events: none;
  }
  .bottom-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
  }
  .bottom-cta p { color: rgba(255,255,255,.65); font-size: 16px; margin-bottom: 36px; position: relative; z-index: 2; }
  .bottom-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

  /* ---- WHATSAPP FAB ---- */
  .wa-fab {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 6px 28px rgba(37,211,102,.50);
    z-index: 9999;
    transition: .3s;
    animation: wa-pulse 2.5s infinite;
  }
  .wa-fab:hover { transform: scale(1.12); color: #fff; }
  @keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.50); }
    50%       { box-shadow: 0 6px 40px rgba(37,211,102,.75); }
  }

  /* =========================================================
     RESPONSIVE
  ========================================================= */
  @media (max-width: 1199px) {
    .lipo-banner-grid { gap: 40px; }
    .lipo-banner-content h1 { font-size: 52px; }
    .lipo-banner-image img { height: 560px; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid::before { display: none; }
  }
  @media (max-width: 991px) {
    .lipo-banner { padding: 50px 0 40px; }
    .lipo-banner-grid { grid-template-columns: 1fr; gap: 36px; }
    .lipo-banner-content { text-align: left; }
    .lipo-banner-content h1 { font-size: 44px; }
    .lipo-banner-content .lead-text { margin: 0 auto 28px; }
    .banner-buttons { justify-content: center; }
    .banner-features { justify-content: center; }
    .floating-stat, .floating-rating { display: none; }
    .lipo-banner-image img { height: 420px; }
    .quick-row { grid-template-columns: repeat(2, 1fr); }
    .glance-grid { grid-template-columns: repeat(2, 1fr); }
    .lipo-about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-visual img { height: 380px; }
    .about-highlights { grid-template-columns: 1fr 1fr; }
    .candidates-grid { grid-template-columns: 1fr; gap: 20px; }
    .areas-layout { grid-template-columns: 1fr; }
    .body-map { display: none; }
    .area-list { grid-template-columns: repeat(2, 1fr); }
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .recovery-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .se-grid { grid-template-columns: repeat(2, 1fr); }
    .ba-grid { grid-template-columns: repeat(2, 1fr); }
    .review-cost-grid { grid-template-columns: 1fr; }
    .cost-box { position: relative; top: auto; }
    .timings-wrap { grid-template-columns: 1fr; }
    .why-band { padding: 36px 28px; }
    .cost-detail-item span{font-size:11px;}
  }
  @media (max-width: 767px) {
    .section-block { padding: 52px 0; }
    .lipo-banner-content h1 { font-size: 36px; letter-spacing: -1.5px; }
    .banner-features { flex-direction: column; }
    .feature-pill { min-width: unset; }
    .btn-orange, .btn-wa { width: 100%; justify-content: center; }
    .quick-row { grid-template-columns: 1fr 1fr; gap: 10px; }
    .glance-grid { grid-template-columns: 1fr 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
    .area-list { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .recovery-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .se-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr 1fr; }
    .areas-wrap { padding: 24px 18px; }
    .why-band { border-radius: 24px; padding: 28px 22px; }
    .bottom-cta { padding: 44px 24px; border-radius: 24px; }
    .bottom-cta-btns { flex-direction: column; align-items: center; }
    .cost-details { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .lipo-banner-content h1 { font-size: 30px; letter-spacing: -1px; }
    .quick-row { grid-template-columns: 1fr; }
    .glance-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .recovery-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
  }

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-badge {
  margin: 0;
}

.hero-trust-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
}

.hero-trust-logos img {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.10);
  /*padding: 4px 8px;*/
  border-radius: 100px;
}
@media (max-width: 768px) {
  .hero-trust-row {
    flex-direction: column;
    align-items: center;
    /*gap: 10px;*/
  }
  .hero-trust-logos img {
      height: 60px;
  }
}

.ah-item::before{
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #e8621a;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ah-body-contouring::before{
  content: "\e4fd"; /* heart-circle-check */
}

.ah-targeted-fat::before{
  content: "\f140"; /* bullseye */
}

.ah-results::before{
  content: "\e2ca"; /* wand-magic-sparkles */
}

.ah-safe::before{
  content: "\f3ed"; /* shield-halved */
}
.body-map {
    position: relative;
    height: 420px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(11,29,53,.03), rgba(11,29,53,.01));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.body-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* TESTIMONIALS STRIP- about pages */
    .testi-strip-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
    }
    .testi-strip-card {
      background: #fff; border: 1px solid rgba(11,29,53,.08);
      border-radius: 20px; padding: 26px 24px;
      box-shadow: 0 8px 22px rgba(11,29,53,.05);
      position: relative; transition: .3s;
    }
    .testi-strip-card:hover { box-shadow: 0 16px 40px rgba(11,29,53,.10); }
    .tsc-quote {
      position: absolute; top: 18px; right: 20px;
      font-size: 42px; color: rgba(232,98,26,.12);
      font-family: Georgia, serif; line-height: 1;
    }
    .tsc-stars { color: #ffb400; font-size: 13px; margin-bottom: 12px; }
    .tsc-text { font-size: 14px; color: #5f6878; line-height: 1.8; margin-bottom: 16px; font-style: italic; }
    .tsc-author { display: flex; align-items: center; gap: 12px; }
    .tsc-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, #e8621a, #0b1d35);
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 700; color: #fff;
      text-transform: uppercase; flex-shrink: 0;
    }
    .tsc-name { font-size: 14px; font-weight: 700; color: #0b1d35; }
    .tsc-proc { font-size: 12px; color: #e8621a; margin-top: 2px; }
    
    
    
/* Depends on :root variables defined in redesignmain.css (--navy, --orange, --radius-md, --shadow-md, etc.) — load this file AFTER redesignmain.css. */

/* ═══════════════════════════════════════════════
   VIDEO GALLERY (vg-) — dryvrao-video-gallery.php
═══════════════════════════════════════════════ */
.vg-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vg-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,26,.22) 0%, transparent 65%);
  pointer-events: none;
}
.vg-hero-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 14px;
}
.vg-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 12px;
  position: relative; z-index: 2;
}
.vg-hero p {
  color: rgba(255,255,255,.65);
  font-size: 15.5px;
  max-width: 560px;
  margin: 0 auto;
  position: relative; z-index: 2;
}

.vg-grid-wrap { padding: 56px 0 64px; }
.vg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.vg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.vg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.vg-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--off-white);
  overflow: hidden;
}
.vg-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.vg-card:hover .vg-thumb img { transform: scale(1.06); }
.vg-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(232,98,26,.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(11,29,53,.30);
  transition: transform var(--transition), background var(--transition);
}
.vg-play i { color: var(--white); font-size: 18px; margin-left: 2px; }
.vg-card:hover .vg-play { transform: translate(-50%, -50%) scale(1.12); background: var(--orange); }
.vg-card-body { padding: 16px 18px 20px; }
.vg-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vg-card:hover .vg-card-title { color: var(--orange); }
.vg-empty {
  text-align: center;
  padding: 70px 20px;
  color: var(--text-mid);
  font-size: 15px;
}

.vg-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.vg-page-link {
  min-width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.vg-page-link:hover { border-color: var(--orange); color: var(--orange); }
.vg-page-link.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.vg-page-dots { color: var(--text-light); padding: 0 4px; }

@media (max-width: 1199px) { .vg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .vg-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } .vg-hero { padding: 48px 0 40px; } }
@media (max-width: 480px)  { .vg-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   VIDEO DETAIL (vd-) — video detail template
═══════════════════════════════════════════════ */
.vd-wrap { padding: 44px 0 64px; }
.vd-breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 18px;
}
.vd-breadcrumb a { color: var(--text-mid); }
.vd-breadcrumb a:hover { color: var(--orange); }
.vd-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
  margin-bottom: 28px;
  max-width: 900px;
}
.vd-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 36px; align-items: start; }

.vd-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}
.vd-player img {
  width: 100%; height: 100%; object-fit: cover;
}
.vd-player iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.vd-player-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(232,98,26,.94);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform var(--transition), background var(--transition);
}
.vd-player-play i { color: var(--white); font-size: 26px; margin-left: 3px; }
.vd-player:hover .vd-player-play { transform: translate(-50%, -50%) scale(1.08); background: var(--orange); }

.vd-description {
  margin-top: 26px;
  color: var(--text-mid);
  font-size: 15.5px;
  line-height: 1.85;
  max-width: 900px;
}

.vd-related-heading {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.vd-related-list { display: flex; flex-direction: column; gap: 14px; }
.vd-related-card {
  display: flex;
  gap: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  padding: 6px;
}
.vd-related-card:hover { background: var(--orange-pale); }
.vd-related-thumb {
  flex: 0 0 96px;
  width: 96px; height: 64px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--off-white);
}
.vd-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vd-related-thumb i {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  color: var(--white);
  font-size: 13px;
  background: rgba(11,29,53,.55);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
}
.vd-related-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vd-related-card:hover .vd-related-title { color: var(--orange); }

@media (max-width: 991px) {
  .vd-layout { grid-template-columns: 1fr; }
  .vd-player-play { width: 60px; height: 60px; }
  .vd-player-play i { font-size: 20px; }
}

/* Pure-CSS stagger for the gallery grid reveal — no inline style
   attributes, no JS per-card delay. */
.vg-grid .vg-card:nth-child(1) { transition-delay: 0s; }
.vg-grid .vg-card:nth-child(2) { transition-delay: .05s; }
.vg-grid .vg-card:nth-child(3) { transition-delay: .10s; }
.vg-grid .vg-card:nth-child(4) { transition-delay: .15s; }
.vg-grid .vg-card:nth-child(5) { transition-delay: .20s; }
.vg-grid .vg-card:nth-child(6) { transition-delay: .25s; }
.vg-grid .vg-card:nth-child(7) { transition-delay: .30s; }
.vg-grid .vg-card:nth-child(8) { transition-delay: .35s; }

/* Video-not-found state on the detail template */
.vd-404 { padding: 120px 20px 100px; text-align: center; }
.vd-404 h1 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 14px;
}
.vd-404 p { color: var(--text-mid); margin-bottom: 28px; font-size: 15.5px; }

  /* ── Reviews carousel ── */
  .reviews-section-wrap {
    background: #f8fafc;
    padding: 56px 0 60px;
  }
  .reviews-top-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }
  .reviews-top-row .section-heading { text-align: left; margin-bottom: 0; }
  .reviews-top-row .section-heading .eyebrow { justify-content: flex-start; }
  .reviews-top-row .section-heading .eyebrow::before { display: block; }
  .reviews-top-row .section-heading .eyebrow::after  { display: none; }
  .reviews-top-row h2 { margin-bottom: 6px; }
  .reviews-top-row p  { margin: 0; }

  /* Nav arrows */
  .rv-nav { display: flex; gap: 10px; flex-shrink: 0; }
  .rv-nav-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #0b1d35;
    font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: .25s;
    flex-shrink: 0;
  }
  .rv-nav-btn:hover { background: #e8621a; border-color: #e8621a; color: #fff; }

  /* Track */
  .rv-track-outer {
    overflow: hidden;
    position: relative;
  }
  .rv-track-outer::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 100%;
    background: linear-gradient(to left, #f8fafc, transparent);
    pointer-events: none;
    z-index: 2;
  }
  .rv-track {
    display: flex;
    gap: 20px;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
    cursor: grab;
    user-select: none;
  }
  .rv-track.dragging { cursor: grabbing; transition: none; }

  /* Card */
  .rv-carousel-card {
    background: #fff;
    border: 1px solid rgba(11,29,53,.07);
    border-radius: 20px;
    padding: 28px 26px;
    box-shadow: 0 6px 22px rgba(11,29,53,.06);
    flex: 0 0 340px;
    position: relative;
    transition: box-shadow .3s, transform .3s;
    display: flex;
    flex-direction: column;
  }
  .rv-carousel-card:hover { box-shadow: 0 16px 40px rgba(11,29,53,.11); transform: translateY(-3px); }
  .rv-carousel-card .rvc-quote {
    position: absolute; top: 18px; right: 20px;
    font-size: 44px; color: rgba(232,98,26,.10);
    font-family: Georgia, serif; line-height: 1;
  }
  .rv-carousel-card .rvc-stars { color: #fbbf24; font-size: 14px; margin-bottom: 14px; }
  .rv-carousel-card .rvc-text {
    font-size: 14px; color: #4b5563; line-height: 1.85;
    font-style: italic; flex: 1; margin-bottom: 20px;
    /* clamp long reviews to 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .rv-carousel-card .rvc-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
  .rvc-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, #e8621a, #0b1d35);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 700; color: #fff;
    text-transform: uppercase; flex-shrink: 0;
  }
  .rvc-name { font-size: 14px; font-weight: 700; color: #0b1d35; }
  .rvc-proc { font-size: 12px; color: #e8621a; margin-top: 2px; }

  /* Dots */
  .rv-dots {
    display: flex; gap: 7px; justify-content: center; margin-top: 28px;
  }
  .rv-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #d1d5db; transition: .25s; cursor: pointer; border: none;
  }
  .rv-dot.active { background: #e8621a; width: 24px; border-radius: 4px; }

  /* Mobile adjustments */
  @media (max-width: 767px) {
    .rv-carousel-card { flex: 0 0 280px; }
    .rv-nav { display: none; }
    .reviews-top-row { flex-direction: column; align-items: flex-start; }
  }
  
  
        /* ═══════════════════════════════════════
           BRANCHES & LOCATIONS SECTION
        ════════════════════════════════════════ */
        .branches-section { 
            padding: 60px 0 80px; 
            background: linear-gradient(180deg, #fff, #f8f9fb); 
        }
        .branches-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 40px; 
            margin-top: 40px;
        }
        .branch-card { 
            border-radius: 24px; 
            overflow: hidden; 
            border: 1px solid rgba(11,29,53,.08); 
            box-shadow: 0 10px 30px rgba(11,29,53,.05); 
            background: #fff; 
            transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
            display: flex; 
            flex-direction: column; 
            height: 100%;
        }
        .branch-card:hover { 
            transform: translateY(-8px); 
            box-shadow: 0 24px 60px rgba(11,29,53,.12); 
            border-color: rgba(232,98,26,.3); 
        }
        
        /* Navy Header matching your theme */
        .branch-header { 
            display: flex; 
            align-items: center; 
            gap: 16px; 
            padding: 24px 30px; 
            color: #fff; 
        }
        .branch-icon { 
            width: 50px; 
            height: 50px; 
            border-radius: 14px; 
            background: rgba(232,98,26,.15); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-size: 22px; 
            color: #f07d3a; 
            flex-shrink: 0;
        }
        .branch-header-text { 
            display: flex; 
            align-items: center; 
            gap: 12px; 
            flex-wrap: wrap; 
        }
        .branch-city { 
            font-family: 'Poppins', sans-serif; 
            font-size: 26px; 
            font-weight: 700; 
            line-height: 1.1; 
            margin: 0;
        }
        .branch-badge { 
            display: inline-block; 
            background: #e8621a; 
            color: #fff; 
            font-size: 11px; 
            font-weight: 700; 
            padding: 5px 12px; 
            border-radius: 20px; 
            text-transform: uppercase; 
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(232,98,26,.3);
        }
        
        /* Map Area */
        .branch-map { height: 320px; width: 100%; border-bottom: 1px solid #f1f5f9; }
        .branch-map iframe { width: 100%; height: 100%; border: none; }
        
        /* Content & Details */
        .branch-details { 
            padding: 30px; 
            flex-grow: 1; 
            display: flex; 
            flex-direction: column; 
            gap: 20px; 
        }
        .branch-detail-row { 
            display: flex; 
            gap: 16px; 
            font-size: 15px; 
            color: #4a5568; 
            line-height: 1.6; 
            align-items: flex-start;
        }
        .branch-detail-row i { 
            color: #e8621a; 
            font-size: 18px; 
            margin-top: 3px; 
            width: 24px; 
            text-align: center; 
            flex-shrink: 0;
        }
        .branch-detail-row span { flex-grow: 1; }
        .branch-detail-row a { 
            color: #0b1d35; 
            font-weight: 600; 
            text-decoration: none; 
            transition: .2s; 
        }
        .branch-detail-row a:hover { color: #e8621a; }
        
        /* Solid CTA Button inside the card */
        .branch-cta { 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            gap: 10px;
            margin: 0 30px 30px; 
            background: #0b1d35; 
            color: #fff !important; 
            font-weight: 600; 
            font-size: 15px;
            padding: 16px 24px; 
            border-radius: 14px; 
            transition: .3s;
            text-decoration: none;
        }
        .branch-cta:hover { 
            background: #e8621a; 
            transform: translateY(-2px); 
            box-shadow: 0 10px 24px rgba(232,98,26,.25); 
        }

        @media (max-width: 991px) {
            .branches-grid { grid-template-columns: 1fr; }
            .branch-map { height: 280px; }
        }
        @media (max-width: 575px) {
            .branch-header { padding: 20px; }
            .branch-header-text { flex-direction: column; align-items: flex-start; gap: 8px;}
            .branch-map { height: 240px; }
            .branch-details { padding: 20px; }
            .branch-cta { margin: 0 20px 20px; }
        }

    /* ─── PAGE TITLE STRIP ─── */
    .page-title-strip {
      background: linear-gradient(135deg, #0b1d35 0%, #1a3260 100%);
      padding: 52px 0 56px;
      position: relative;
      overflow: hidden;
    }
    .page-title-strip::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 44px;
      background: #fff;
      clip-path: ellipse(55% 100% at 50% 100%);
    }
    .page-title-strip::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,98,26,.15) 0%, transparent 65%);
      pointer-events: none;
    }
    .pts-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #f07d3a;
      margin-bottom: 14px;
    }
    .pts-eyebrow::before,
    .pts-eyebrow::after {
      content: ''; width: 24px; height: 2px;
      background: #f07d3a; border-radius: 2px;
    }
    .page-title-strip h1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(26px, 4vw, 46px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .pts-rating-row {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .pts-score {
      font-size: 34px;
      font-weight: 800;
      color: #fbbf24;
      line-height: 1;
    }
    .pts-stars { color: #fbbf24; font-size: 16px; display: block; margin-bottom: 3px; }
    .pts-count { color: rgba(255,255,255,.6); font-size: 13px; }

    /* ─── BREADCRUMB (integrated inside title strip) ─── */
    .pts-breadcrumb {
      display: flex;
      align-items: center;
      gap: 0;
      flex-wrap: wrap;
      margin-bottom: 18px;
      font-size: 13px;
    }
    .pts-breadcrumb a {
      color: rgba(255,255,255,.55);
      transition: color .2s;
      text-decoration: none;
    }
    .pts-breadcrumb a:hover { color: #f07d3a; }
    .pts-breadcrumb .bc-sep {
      margin: 0 8px;
      color: rgba(255,255,255,.25);
      font-size: 12px;
    }
    .pts-breadcrumb .bc-current {
      color: rgba(255,255,255,.85);
      font-weight: 500;
    }

    /* ─── MAIN CONTENT (full-width, no sidebar) ─── */
    .prose-area {
      margin: 0 auto;
    }
    .prose-area h2,
    .prose-area h3 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      color: #0b1d35;
      line-height: 1.2;
      margin-top: 32px;
      margin-bottom: 12px;
    }
    .prose-area h2 { font-size: clamp(19px, 2.2vw, 24px); }
    .prose-area h3 { font-size: clamp(16px, 1.8vw, 20px); }
    .prose-area h3 .bluetitle,
    .prose-area h4 .bluetitle { color: #1289ba; }
    .prose-area p {
      color: #374151;
      font-size: 15.5px;
      line-height: 1.9;
      margin-bottom: 14px;
    }
    .prose-area ul.ulstyle,
    .prose-area ol.ulstyle {
      list-style: decimal;
      padding-left: 22px;
      margin-bottom: 18px;
    }
    .prose-area ul.ulstyle li,
    .prose-area ol.ulstyle li {
      color: #374151;
      font-size: 15px;
      line-height: 1.85;
      margin-bottom: 10px;
      padding-left: 4px;
    }
    .prose-area .backgroundfaqs {
      background: linear-gradient(135deg, rgba(11,29,53,.04), rgba(18,137,186,.06));
      border-left: 4px solid #e8621a;
      border-radius: 0 12px 12px 0;
      padding: 14px 22px;
      margin: 36px 0 22px;
    }
    .prose-area .backgroundfaqs h4 {
      margin: 0;
      font-size: 18px;
      font-weight: 700;
      color: #0b1d35;
    }
    .prose-area .textp h4.bluetitle {
      font-size: 15px;
      font-weight: 700;
      color: #e8621a;
      margin-top: 22px;
      margin-bottom: 6px;
    }
    .prose-area .textp p {
      font-size: 14.5px;
      color: #4b5563;
    }

    /* ─── BEFORE & AFTER BANNER (below content) ─── */
    .ba-banner {
      display: flex;
      gap: 14px;
      margin: 40px 0 0;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }
    .ba-banner a {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 24px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 15px;
      transition: .25s;
    }
    .ba-btn-green {
      background: #16a34a;
      color: #fff;
    }
    .ba-btn-green:hover { background: #15803d; color: #fff; transform: translateY(-2px); }
    .ba-btn-amber {
      background: #d97706;
      color: #fff;
    }
    .ba-btn-amber:hover { background: #b45309; color: #fff; transform: translateY(-2px); }
    @media (max-width: 540px) {
      .ba-banner { flex-direction: column; }
    }

    /* ─── GET IN TOUCH STRIP (between content and why-choose) ─── */
    .get-in-touch-strip {
      background: linear-gradient(135deg, #fff7f0, #fff0e8);
      border-top: 1px solid rgba(232,98,26,.15);
      border-bottom: 1px solid rgba(232,98,26,.15);
      padding: 36px 0;
    }
    .git-inner {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .git-text h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: #0b1d35;
      margin-bottom: 4px;
    }
    .git-text p {
      font-size: 14px;
      color: #667085;
      margin: 0;
    }
    .git-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn-orange {
      background: #e8621a;
      color: #fff;
      padding: 13px 26px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: .25s;
      white-space: nowrap;
    }
    .btn-orange:hover { background: #f07d3a; color: #fff; transform: translateY(-2px); }
    .btn-wa-sm {
      background: #25d366;
      color: #fff;
      padding: 13px 26px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: .25s;
      white-space: nowrap;
    }
    .btn-wa-sm:hover { background: #1da851; color: #fff; transform: translateY(-2px); }
    .btn-call-sm {
      background: #f1f5f9;
      color: #0b1d35;
      padding: 13px 26px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid #e2e8f0;
      transition: .25s;
      white-space: nowrap;
    }
    .btn-call-sm:hover { background: #e2e8f0; color: #0b1d35; transform: translateY(-2px); }
    .btn-call-sm i { color: #e8621a; }
    @media (max-width: 700px) {
      .git-inner { flex-direction: column; align-items: flex-start; }
      .git-actions { width: 100%; }
      .git-actions a { flex: 1; justify-content: center; }
    }

    /* ─── REVIEWS ─── */
    .rv-card {
      background: #fff;
      border: 1px solid rgba(11,29,53,.07);
      border-radius: 18px;
      padding: 22px 24px;
      box-shadow: 0 6px 20px rgba(11,29,53,.05);
      margin-bottom: 16px;
      position: relative;
      transition: .3s;
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }
    .rv-card:hover { box-shadow: 0 14px 36px rgba(11,29,53,.10); }
    .rv-quote {
      position: absolute; top: 16px; right: 18px;
      font-size: 38px; color: rgba(232,98,26,.10);
      font-family: Georgia, serif; line-height: 1;
    }
    .rv-stars { color: #fbbf24; font-size: 13px; margin-bottom: 8px; }
    .rv-text { font-size: 14px; color: #4b5563; line-height: 1.8; margin-bottom: 14px; font-style: italic; }
    .rv-author { display: flex; align-items: center; gap: 12px; }
    .rv-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: linear-gradient(135deg, #e8621a, #0b1d35);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700; color: #fff;
      text-transform: uppercase; flex-shrink: 0;
    }
    .rv-name { font-size: 14px; font-weight: 700; color: #0b1d35; }
    .rv-proc { font-size: 12px; color: #e8621a; margin-top: 2px; }

    /* ─── WA FAB ─── */
    .wa-fab {
      position: fixed; bottom: 28px; right: 28px;
      width: 58px; height: 58px;
      background: #25d366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 28px;
      box-shadow: 0 6px 28px rgba(37,211,102,.5);
      z-index: 9999; transition: .3s;
    }
    .wa-fab:hover { transform: scale(1.1); color: #fff; }
    /* ── PAGE TITLE STRIP ── */
    .page-title-strip {
      background: linear-gradient(135deg, #0b1d35 0%, #1a3260 100%);
      padding: 52px 0 56px;
      position: relative;
      overflow: hidden;
    }
    .page-title-strip::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0; right: 0;
      height: 44px;
      background: #fff;
      clip-path: ellipse(55% 100% at 50% 100%);
    }
    .page-title-strip::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,98,26,.15) 0%, transparent 65%);
      pointer-events: none;
    }
    .pts-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #f07d3a;
      margin-bottom: 14px;
    }
    .pts-eyebrow::before,
    .pts-eyebrow::after {
      content: ''; width: 24px; height: 2px;
      background: #f07d3a; border-radius: 2px;
    }
    .page-title-strip h1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(24px, 4vw, 44px);
      font-weight: 700;
      color: #fff;
      letter-spacing: -1px;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .pts-rating-row {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .pts-score {
      font-size: 34px;
      font-weight: 800;
      color: #fbbf24;
      line-height: 1;
    }
    .pts-stars  { color: #fbbf24; font-size: 16px; display: block; margin-bottom: 3px; }
    .pts-count  { color: rgba(255,255,255,.6); font-size: 13px; }

    /* ── BREADCRUMB ── */
    .pts-breadcrumb {
      display: flex;
      align-items: center;
      gap: 0;
      flex-wrap: wrap;
      margin-bottom: 18px;
      font-size: 13px;
    }
    .pts-breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; text-decoration: none; }
    .pts-breadcrumb a:hover { color: #f07d3a; }
    .pts-breadcrumb .bc-sep     { margin: 0 8px; color: rgba(255,255,255,.25); font-size: 12px; }
    .pts-breadcrumb .bc-current { color: rgba(255,255,255,.85); font-weight: 500; }

    /* ── TWO-COLUMN LAYOUT ── */
    .content-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 36px;
      align-items: start;
    }
    @media (max-width: 991px) {
      .content-layout { grid-template-columns: 1fr; }
    }

    /* ── PROSE (main column) ── */
    .prose-area h2,
    .prose-area h3 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      color: #0b1d35;
      line-height: 1.2;
      margin-top: 32px;
      margin-bottom: 12px;
    }
    .prose-area h2 { font-size: clamp(18px, 2.2vw, 23px); }
    .prose-area h3 { font-size: clamp(15px, 1.8vw, 19px); }
    .prose-area p  { color: #374151; font-size: 15px; line-height: 1.9; margin-bottom: 14px; }
    .prose-area ul,
    .prose-area ol { padding-left: 20px; margin-bottom: 18px; }
    .prose-area li { color: #374151; font-size: 15px; line-height: 1.85; margin-bottom: 8px; }

    /* ── PROCEDURE CARDS (sub-page images) ── */
    .proc-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 32px;
    }
    @media (max-width: 767px) { .proc-cards { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .proc-cards { grid-template-columns: 1fr; } }
    .proc-card {
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      overflow: hidden;
      transition: .3s;
      background: #fff;
      box-shadow: 0 4px 16px rgba(11,29,53,.05);
    }
    .proc-card:hover { box-shadow: 0 12px 32px rgba(11,29,53,.12); transform: translateY(-4px); }
    .proc-card img   { width: 100%; height: 160px; object-fit: cover; display: block; }
    .proc-card-body  { padding: 14px 16px 16px; }
    .proc-card-body h3 { font-size: 13px; font-weight: 700; color: #0b1d35; margin: 0 0 6px; }
    .proc-card-body p  { font-size: 12px; color: #6b7280; line-height: 1.6; margin: 0 0 10px; }
    .proc-card-body a  {
      font-size: 12px; font-weight: 600; color: #e8621a;
      display: inline-flex; align-items: center; gap: 4px;
    }
    .proc-card-body a:hover { color: #f07d3a; }

    /* ── APPOINTMENT STRIP ── */
    .appt-strip {
      background: #f1f5f9;
      border-radius: 16px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin: 28px 0;
    }
    .appt-strip-text h3  { font-size: 16px; font-weight: 700; color: #0b1d35; margin-bottom: 4px; }
    .appt-strip-text p   { font-size: 13px; color: #6b7280; margin: 0; }
    .btn-appt-strip {
      background: #e8621a;
      color: #fff;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: .25s;
      white-space: nowrap;
    }
    .btn-appt-strip:hover { background: #f07d3a; color: #fff; transform: translateY(-2px); }

    /* ── SIDEBAR ── */
    .sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 110px; }

    /* Gallery buttons */
    .gallery-btns { display: flex; flex-direction: column; gap: 10px; }
    .gallery-btns a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 16px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 14px;
      transition: .25s;
      text-align: center;
    }
    .gb-green { background: #16a34a; color: #fff; }
    .gb-green:hover { background: #15803d; color: #fff; transform: translateY(-2px); }
    .gb-amber { background: #d97706; color: #fff; }
    .gb-amber:hover { background: #b45309; color: #fff; transform: translateY(-2px); }

    /* Why Choose Us card */
    .why-card-sidebar {
      background: #f7fcff;
      border: 1px solid #cce7f6;
      border-radius: 14px;
      padding: 20px;
    }
    .why-card-sidebar .wcs-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 17px;
      font-weight: 700;
      color: #0a6ea9;
      margin-bottom: 14px;
    }
    .why-card-sidebar ul { list-style: none; padding: 0; margin: 0; }
    .why-card-sidebar li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      color: #374151;
      line-height: 1.6;
      padding: 5px 0;
      border-bottom: 1px solid rgba(0,0,0,.04);
    }
    .why-card-sidebar li:last-child { border-bottom: none; }
    .why-card-sidebar li i { color: #0a6ea9; margin-top: 3px; font-size: 11px; flex-shrink: 0; }

    /* Sub-procedures list card */
    .subcats-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 18px 20px;
    }
    .subcats-card .scc-title {
      font-size: 15px;
      font-weight: 700;
      color: #0a6ea9;
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 2px solid #e8621a;
    }
    .subcats-card ul { list-style: none; padding: 0; margin: 0; }
    .subcats-card li { border-bottom: 1px solid #f1f5f9; }
    .subcats-card li:last-child { border-bottom: none; }
    .subcats-card li a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 4px;
      font-size: 13px;
      color: #374151;
      transition: color .2s;
    }
    .subcats-card li a:hover { color: #e8621a; }
    .subcats-card li a::before {
      content: '›';
      color: #e8621a;
      font-size: 16px;
      font-weight: 700;
      flex-shrink: 0;
    }

    /* Timings card */
    .timings-sidebar {
      background: linear-gradient(135deg, #00878d, #005f63);
      border-radius: 14px;
      padding: 20px;
      color: #fff;
    }
    .timings-sidebar h3 {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .timings-sidebar table { width: 100%; border-collapse: collapse; font-size: 13px; }
    .timings-sidebar tr { border-bottom: 1px solid rgba(255,255,255,.15); }
    .timings-sidebar tr:last-child { border-bottom: none; }
    .timings-sidebar td { padding: 7px 4px; color: rgba(255,255,255,.9); }
    .timings-sidebar td:last-child { text-align: right; font-weight: 500; }
    .timings-sidebar .holiday-row td { color: rgba(255,255,255,.5); }

    /* Contact sidebar card */
    .contact-sidebar {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 14px;
      padding: 20px;
    }
    .contact-sidebar h3 {
      font-size: 15px;
      font-weight: 700;
      color: #0b1d35;
      margin-bottom: 12px;
    }
    .contact-sidebar .cs-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 14px;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 8px;
      transition: .2s;
    }
    .contact-sidebar .cs-btn:last-child { margin-bottom: 0; }
    .cs-appt  { background: #e8621a; color: #fff; }
    .cs-appt:hover  { background: #f07d3a; color: #fff; transform: translateY(-1px); }
    .cs-wa    { background: #25d366; color: #fff; }
    .cs-wa:hover    { background: #1da851; color: #fff; transform: translateY(-1px); }
    .cs-call  { background: #f1f5f9; color: #0b1d35; border: 1px solid #e2e8f0; }
    .cs-call:hover  { background: #e2e8f0; color: #0b1d35; transform: translateY(-1px); }
    .cs-call i { color: #e8621a; }

    /* ── GET IN TOUCH STRIP ── */
    .get-in-touch-strip {
      background: linear-gradient(135deg, #fff7f0, #fff0e8);
      border-top: 1px solid rgba(232,98,26,.15);
      border-bottom: 1px solid rgba(232,98,26,.15);
      padding: 36px 0;
    }
    .git-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .git-text h3 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: #0b1d35; margin-bottom: 4px; }
    .git-text p  { font-size: 14px; color: #667085; margin: 0; }
    .git-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-orange {
      background: #e8621a; color: #fff;
      padding: 13px 26px; border-radius: 50px;
      font-weight: 700; font-size: 14px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: .25s; white-space: nowrap;
    }
    .btn-orange:hover { background: #f07d3a; color: #fff; transform: translateY(-2px); }
    .btn-wa-sm {
      background: #25d366; color: #fff;
      padding: 13px 26px; border-radius: 50px;
      font-weight: 700; font-size: 14px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: .25s; white-space: nowrap;
    }
    .btn-wa-sm:hover { background: #1da851; color: #fff; transform: translateY(-2px); }
    .btn-call-sm {
      background: #f1f5f9; color: #0b1d35;
      padding: 13px 26px; border-radius: 50px;
      font-weight: 700; font-size: 14px;
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid #e2e8f0; transition: .25s; white-space: nowrap;
    }
    .btn-call-sm:hover { background: #e2e8f0; transform: translateY(-2px); }
    .btn-call-sm i { color: #e8621a; }
    @media (max-width: 700px) {
      .git-inner { flex-direction: column; align-items: flex-start; }
      .git-actions { width: 100%; }
      .git-actions a { flex: 1; justify-content: center; }
    }

    /* ── REVIEWS ── */
    .rv-card {
      background: #fff;
      border: 1px solid rgba(11,29,53,.07);
      border-radius: 18px;
      padding: 22px 24px;
      box-shadow: 0 6px 20px rgba(11,29,53,.05);
      margin-bottom: 16px;
      position: relative;
      transition: .3s;
    }
    .rv-card:hover { box-shadow: 0 14px 36px rgba(11,29,53,.10); }
    .rv-quote { position: absolute; top: 16px; right: 18px; font-size: 38px; color: rgba(232,98,26,.10); font-family: Georgia, serif; line-height: 1; }
    .rv-stars { color: #fbbf24; font-size: 13px; margin-bottom: 8px; }
    .rv-text  { font-size: 14px; color: #4b5563; line-height: 1.8; margin-bottom: 14px; font-style: italic; }
    .rv-author { display: flex; align-items: center; gap: 12px; }
    .rv-avatar {
      width: 38px; height: 38px; border-radius: 50%;
      background: linear-gradient(135deg, #e8621a, #0b1d35);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700; color: #fff;
      text-transform: uppercase; flex-shrink: 0;
    }
    .rv-name { font-size: 14px; font-weight: 700; color: #0b1d35; }
    .rv-proc { font-size: 12px; color: #e8621a; margin-top: 2px; }
    .rv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    @media (max-width: 640px) { .rv-grid { grid-template-columns: 1fr; } }

    /* Review form */
    .review-form-wrap {
      background: #f7fcff;
      border: 1px solid #cce7f6;
      border-radius: 18px;
      padding: 28px 28px 24px;
      margin-bottom: 32px;
    }
    .review-form-wrap h2 {
      font-size: 20px;
      font-weight: 700;
      color: #0b1d35;
      margin-bottom: 20px;
    }
    .review-form-wrap h2 span { color: #1289ba; }
    .rfw-group { margin-bottom: 16px; }
    .rfw-group label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
    .rfw-group input,
    .rfw-group textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1px solid #d1d5db;
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      color: #374151;
      transition: border-color .2s;
    }
    .rfw-group input:focus,
    .rfw-group textarea:focus { outline: none; border-color: #1289ba; box-shadow: 0 0 0 3px rgba(18,137,186,.1); }
    .rfw-group textarea { height: 100px; resize: vertical; }
    .btn-submit-review {
      background: #16a34a;
      color: #fff;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 14px;
      border: none;
      cursor: pointer;
      transition: .25s;
      float: right;
    }
    .btn-submit-review:hover { background: #15803d; transform: translateY(-2px); }

    /* Star rating fieldset */
    #demo1 { direction: rtl; unicode-bidi: bidi-override; display: inline-block; }
    #demo1 input { display: none; }
    #demo1 label {
      font-size: 24px;
      color: #d1d5db;
      cursor: pointer;
      transition: color .2s;
    }
    #demo1 label:hover,
    #demo1 label:hover ~ label,
    #demo1 input:checked ~ label { color: #fbbf24; }

    /* ── WA FAB ── */
    .wa-fab {
      position: fixed; bottom: 28px; right: 28px;
      width: 58px; height: 58px;
      background: #25d366; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 28px;
      box-shadow: 0 6px 28px rgba(37,211,102,.5);
      z-index: 9999; transition: .3s;
      animation: wa-pulse 2.5s infinite;
    }
    .wa-fab:hover { transform: scale(1.1); color: #fff; }
    @keyframes wa-pulse {
      0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.50); }
      50%       { box-shadow: 0 6px 40px rgba(37,211,102,.75); }
    }

    /* paratext overrides (dynamic content from DB) */
    .paratext ul { padding-left: 20px; }
    .paratext ul li { list-style: disc; color: #374151; font-size: 15px; line-height: 1.85; margin-bottom: 8px; }
    .paratext h2,
    .paratext h3 { font-family: 'Poppins', sans-serif; font-weight: 700; color: #0b1d35; margin: 28px 0 10px; }
    .paratext h2 { font-size: 21px; }
    .paratext h3 { font-size: 17px; }
    .paratext p  { font-size: 15px; color: #374151; line-height: 1.9; margin-bottom: 14px; }
    .paratext table { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
    .paratext table td,
    .paratext table th { padding: 8px 12px; border: 1px solid #e2e8f0; font-size: 14px; }
    .paratext table th { background: #f1f5f9; font-weight: 600; color: #0b1d35; }
    .fa-arrow-circle-right:before, .fa-circle-arrow-right:before{
        content:none;
    }
