/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DESIGN TOKENS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --navy:      #0a1628;
  --navy-mid:  #0d1f3c;
  --teal:      #7dd3fc;
  --teal-2:    #38bdf8;
  --teal-pale: #f0f9ff;
  --gold:      #f0a030;
  --gold-2:    #f5c842;
  --gold-pale: #fff8e7;
  --cream:     #f5f8fc;
  --white:     #ffffff;
  --text:      #0d1b30;
  --muted:     #5a6e8a;
  --border:    #dce6f0;
  --grad-hero: linear-gradient(135deg, #0a1628 0%, #0d2a4a 50%, #0a2240 100%);
  --grad-teal: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 100%);
  --grad-gold: linear-gradient(135deg, #f0a030 0%, #f5c842 100%);
  --shadow-sm: 0 2px 12px rgba(125, 211, 252, .12);
  --shadow:    0 6px 32px rgba(125, 211, 252, .18);
  --shadow-lg: 0 16px 60px rgba(125, 211, 252, .25);
  --radius:    16px;
  --radius-lg: 24px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESET & BASE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Outfit',sans-serif;
  background:var(--cream);
  color:var(--text);
  line-height:1.65;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font-family:'Outfit',sans-serif;cursor:pointer}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CURSOR GLOW
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cursor-glow{
  position:fixed;width:300px;height:300px;
  background:radial-gradient(circle,rgba(14,138,120,.06) 0%,transparent 70%);
  border-radius:50%;pointer-events:none;z-index:0;
  transform:translate(-50%,-50%);
  transition:transform .1s ease;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
nav{
  position:fixed;top:0;left:0;right:0;z-index:999;
  padding:0 2.5%;
  transition:background .4s,box-shadow .4s;
  background:rgba(10,22,40,.95);
}
nav.scrolled{
  background:rgba(255,255,255,.97);
  backdrop-filter:blur(20px);
  box-shadow:0 1px 0 var(--border),var(--shadow-sm);
}
.nav-inner{
  max-width:none;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  height:76px;
}
.logo{display:flex;align-items:center;gap:12px;cursor:pointer}
.logo-mark{
  width:44px;height:44px;border-radius:12px;
  background:var(--grad-teal);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;
  box-shadow:0 4px 16px rgba(14,138,120,.35);
  transition:box-shadow .3s;
  overflow:hidden;
}
.logo-image{width:100%;height:100%;object-fit:contain;display:block}
.logo:hover .logo-mark{box-shadow:0 6px 18px rgba(14,138,120,.4)}
.logo-words{line-height:1.15}
.logo-name{
  font-family:'Playfair Display',serif;
  font-size:17px;font-weight:700;
  color:var(--white);
  display:block;
  transition:color .3s;
}
nav.scrolled .logo-name{color:var(--navy)}
.logo-tag{
  font-size:10px;font-weight:500;letter-spacing:.1em;
  text-transform:uppercase;color:rgba(255,255,255,.6);
  display:block;transition:color .3s;
}
nav.scrolled .logo-tag{color:var(--teal)}

.nav-links{display:flex;align-items:center;gap:4px;list-style:none}
.nav-links a{
  padding:8px 15px;border-radius:10px;
  font-size:14px;font-weight:500;
  color:rgba(255,255,255,.85);
  transition:all .25s;
  cursor:pointer;
  position:relative;
}
nav.scrolled .nav-links a{color:var(--text)}
.nav-links a::after{
  content:'';position:absolute;bottom:4px;left:50%;right:50%;
  height:2px;background:var(--teal);border-radius:2px;
  transition:all .25s;
}
.nav-links a:hover::after,.nav-links a.active::after{left:15%;right:15%}
.nav-links a:hover{color:white;background:rgba(255,255,255,.1)}
nav.scrolled .nav-links a:hover{color:var(--teal);background:var(--teal-pale)}
.nav-cta-btn{
  background:var(--grad-teal)!important;
  color:white!important;
  padding:10px 20px!important;
  border-radius:10px!important;
  box-shadow:0 4px 16px rgba(14,138,120,.3);
  transition:all .3s!important;
}
.nav-cta-btn::after{display:none!important}
.nav-cta-btn:hover{transform:translateY(-2px)!important;box-shadow:0 8px 24px rgba(14,138,120,.45)!important;background:rgba(255,255,255,.1)!important}
nav.scrolled .nav-cta-btn{background:var(--grad-teal)!important;color:white!important}

.hamburger{
  display:none;flex-direction:column;gap:6px;cursor:pointer;
  padding:10px;min-width:44px;min-height:44px;
  align-items:center;justify-content:center;
  border-radius:12px;transition:all .3s cubic-bezier(.4,0,.2,1);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
}
.hamburger:hover{background:rgba(255,255,255,.15);border-color:rgba(255,255,255,.2)}
nav.scrolled .hamburger{background:var(--teal-pale);border-color:var(--teal-pale)}
nav.scrolled .hamburger:hover{background:rgba(125,211,252,.2);border-color:var(--teal)}
.hamburger span{display:block;width:22px;height:2.5px;background:white;border-radius:10px;transition:all .35s cubic-bezier(.68,-.6, .32, 1.6)}
nav.scrolled .hamburger span{background:var(--navy)}

.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(6px,6px)}
.hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(6px,-6px)}

/* ══ MOBILE MENU BACKDROP ══ */
.mob-menu-backdrop{
  display:none;
  position:fixed;inset:0;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(4px);
  z-index:997;
  opacity:0;transition:opacity .35s ease;
}
.mob-menu-backdrop.open{display:block;opacity:1}

/* ══ MOBILE MENU PANEL ══ */
.mob-menu{
  display:none;
  position:fixed;top:0;right:0;
  width:82%;max-width:340px;height:100vh;
  background:#ffffff;
  z-index:998;
  flex-direction:column;
  overflow-y:auto;
  transform:translateX(100%);
  transition:transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow:-8px 0 40px rgba(0,0,0,.18);
}
.mob-menu.open{
  display:flex;
  transform:translateX(0);
}

/* Menu header row */
.mob-menu-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 20px 16px;
  border-bottom:1px solid var(--border);
  background:var(--navy);
  flex-shrink:0;
}
.mob-menu-brand{
  display:flex;align-items:center;gap:10px;
  text-decoration:none;
}
.mob-menu-brand-icon{font-size:22px}
.mob-menu-brand-text{
  display:flex;flex-direction:column;gap:2px;
}
.mob-menu-brand-name{
  display:block;font-family:'Playfair Display',serif;
  font-size:16px;font-weight:700;color:#fff;
  line-height:1.1;
}
.mob-menu-brand-tag{
  display:block;font-size:9px;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--teal);
}
.mob-menu-close{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  color:white;border-radius:8px;
  width:36px;height:36px;
  font-size:16px;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;flex-shrink:0;
}
.mob-menu-close:hover{background:rgba(255,255,255,.22)}

/* Nav links */
.mob-menu-links{
  flex:1;padding:8px 12px;
}
.mob-menu-link{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 20px;
  border-radius:12px;
  font-size:16px;font-weight:600;
  color:var(--navy);text-decoration:none;
  margin-bottom:4px;
  transition:all .25s ease;
}
.mob-menu-link:last-child{margin-bottom:0}
.mob-menu-link:hover{
  background:#f0f7ff;color:var(--teal);
}
.mob-menu-link--active{
  background:linear-gradient(90deg,#e8f4ff,#f0f9ff);
  color:#0077b6;font-weight:600;
  border-left:3px solid #0077b6;
  padding-left:17px;
}
.mob-menu-link-icon{
  font-size:18px;width:28px;text-align:center;flex-shrink:0;
}
.mob-menu-link-arrow{
  margin-left:auto;color:#94a3b8;font-size:18px;font-weight:300;
}
.mob-menu-link--active .mob-menu-link-arrow{color:#0077b6}

/* CTA buttons */
.mob-menu-cta{
  padding:16px 20px;display:flex;flex-direction:column;gap:10px;
  border-top:1px solid var(--border);flex-shrink:0;
  background:#f8fafc;
}
.mob-menu-cta-call{
  display:flex;align-items:center;justify-content:center;
  padding:13px 16px;border-radius:10px;
  background:var(--navy);color:#fff;
  font-size:14px;font-weight:700;
  text-decoration:none;min-height:44px;
  transition:background .2s;
}
.mob-menu-cta-call:hover{background:#0d2a4a;color:#fff}
.mob-menu-cta-book{
  display:flex;align-items:center;justify-content:center;
  padding:13px 16px;border-radius:10px;
  background:var(--grad-teal);color:#fff;
  font-size:14px;font-weight:700;
  text-decoration:none;min-height:44px;
  transition:opacity .2s;
}
.mob-menu-cta-book:hover{opacity:.88;color:#fff}

/* Clinic info footer */
.mob-menu-info{
  padding:14px 20px;background:#f1f5f9;
  border-top:1px solid var(--border);
  flex-shrink:0;
}
.mob-menu-info p{
  font-size:12px;color:#64748b;
  line-height:1.8;margin:0;
}

@media(max-width:860px){
  .nav-links{display:none}
  .hamburger{display:flex}
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL REVEAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal{opacity:0;transform:translateY(36px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}
.reveal-left{opacity:0;transform:translateX(-40px);transition:opacity .7s ease,transform .7s ease}
.reveal-left.visible{opacity:1;transform:none}
.reveal-right{opacity:0;transform:translateX(40px);transition:opacity .7s ease,transform .7s ease}
.reveal-right.visible{opacity:1;transform:none}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}.d5{transition-delay:.5s}.d6{transition-delay:.6s}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REUSABLE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.container{max-width:1240px;margin:0 auto;padding:0 6%}
section{padding:90px 6%}
/* Hero wrapper has no section padding â€” hero-wrap handles its own spacing */
.hero-wrap + section, #homeHero + section{ padding-top:90px }
.sec-label{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11px;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--teal);
  margin-bottom:14px;
}
.sec-label::before{content:'';width:24px;height:2px;background:var(--teal);border-radius:2px}
.sec-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(30px,4vw,48px);
  font-weight:700;line-height:1.1;
  color:var(--navy);margin-bottom:18px;
}
.sec-sub{font-size:16px;color:var(--muted);max-width:520px;line-height:1.75}

.btn-primary{
  display:inline-flex;align-items:center;gap:9px;
  background:var(--grad-teal);color:white;
  padding:14px 28px;border-radius:12px;
  font-size:15px;font-weight:600;border:none;
  box-shadow:0 6px 24px rgba(14,138,120,.32);
  transition:all .3s;
  cursor:pointer;
}
.btn-primary:hover{transform:translateY(-3px);box-shadow:0 12px 36px rgba(14,138,120,.42)}
.btn-outline{
  display:inline-flex;align-items:center;gap:9px;
  background:transparent;color:white;
  padding:14px 28px;border-radius:12px;
  font-size:15px;font-weight:500;
  border:1.5px solid rgba(255,255,255,.35);
  transition:all .3s;cursor:pointer;
}
.btn-outline:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.7)}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PAGE HEADER (inner pages)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-header{
  padding-top:76px;
  background:var(--grad-hero);
  position:relative;overflow:hidden;
}
.page-header::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header-body{
  max-width:1240px;margin:0 auto;
  padding:70px 6% 60px;position:relative;z-index:1;
}
.breadcrumb{
  font-size:13px;color:rgba(255,255,255,.65);
  margin-bottom:14px;letter-spacing:.03em;
  display:flex;align-items:center;gap:4px;
  flex-wrap:wrap;
}
.breadcrumb a{color:rgba(255,255,255,.65);text-decoration:none;transition:color .2s}
.breadcrumb a:hover{color:#fff}
.breadcrumb span{color:#fff;font-weight:600}
@media(max-width:768px){
  .breadcrumb{
    font-size:12px;
    padding:4px 10px;
    background:rgba(0,0,0,.25);
    border-radius:20px;
    display:inline-flex;
    width:auto;
  }
}
.page-header h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(34px,5vw,60px);
  color:white;font-weight:700;line-height:1.1;
  margin-bottom:14px;
}
.page-header p{color:rgba(255,255,255,.7);font-size:16px;max-width:540px;line-height:1.75}
@media(max-width:768px){
  .page-header-body{
    text-align:center;
    padding:60px 6% 50px;
  }
  .page-header p{
    margin:0 auto;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero{
  padding-top:76px;min-height:100vh;
  background:var(--grad-hero);
  display:flex;align-items:center;
  position:relative;overflow:hidden;
}
.hero-mesh{
  position:absolute;inset:0;pointer-events:none;
}
.mesh-blob{
  position:absolute;border-radius:50%;filter:blur(80px);
  animation:blobDrift 10s ease-in-out infinite;
}
.mesh-blob:nth-child(1){
  width:600px;height:600px;right:-100px;top:-100px;
  background:radial-gradient(circle,rgba(0,180,220,.22),transparent 70%);
  animation-delay:0s;
}
.mesh-blob:nth-child(2){
  width:400px;height:400px;left:-80px;bottom:0;
  background:radial-gradient(circle,rgba(240,160,48,.14),transparent 70%);
  animation-delay:-4s;
}
.mesh-blob:nth-child(3){
  width:300px;height:300px;right:30%;bottom:10%;
  background:radial-gradient(circle,rgba(0,180,220,.15),transparent 70%);
  animation-delay:-7s;
}
@keyframes blobDrift{
  0%,100%{transform:translate(0,0) scale(1)}
  33%{transform:translate(30px,-20px) scale(1.05)}
  66%{transform:translate(-20px,30px) scale(.96)}
}
.hero-dots{
  position:absolute;inset:0;
  background-image:radial-gradient(rgba(255,255,255,.08) 1px,transparent 1px);
  background-size:44px 44px;
}
.hero-inner{
  max-width:1240px;margin:0 auto;padding:90px 6%;
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
}
@media(max-width:900px){.hero-inner{grid-template-columns:1fr}}

.hero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(240,160,48,.15);
  border:1px solid rgba(240,160,48,.35);
  color:#f5c842;padding:7px 16px;border-radius:100px;
  font-size:12px;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;margin-bottom:28px;
  animation:badgePop .8s .2s both;
}
@keyframes badgePop{from{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}
.dot-pulse{
  width:7px;height:7px;border-radius:50%;
  background:#f5c842;
  animation:dotPulse 1.5s ease infinite;
}
@keyframes dotPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.7)}}

.hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(40px,5.5vw,68px);
  font-weight:700;color:white;line-height:1.08;
  margin-bottom:22px;
  animation:heroTitleIn .9s .3s both;
}
@keyframes heroTitleIn{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:none}}
.hero-title em{
  color:#00d4f0;font-style:italic;
  font-weight:400;
}
.hero-para{
  color:rgba(255,255,255,.72);font-size:17px;line-height:1.8;
  margin-bottom:40px;max-width:480px;
  animation:heroTitleIn .9s .45s both;
}
.hero-btns{
  display:flex;gap:14px;flex-wrap:wrap;
  animation:heroTitleIn .9s .55s both;
}

.hero-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(20px);
  border-radius:24px;padding:32px;
  animation:heroCardIn 1s .6s both;
}
@keyframes heroCardIn{from{opacity:0;transform:translateX(40px) scale(.97)}to{opacity:1;transform:none}}

.hero-card-title{
  font-family:'Playfair Display',serif;
  font-size:20px;color:white;margin-bottom:22px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.doc-row{
  display:flex;align-items:center;gap:14px;
  padding:13px 0;border-bottom:1px solid rgba(255,255,255,.08);
  transition:background .2s;border-radius:10px;
}
.doc-row:last-of-type{border:none}
.doc-ava{
  width:48px;height:48px;border-radius:50%;
  background:var(--grad-teal);
  display:flex;align-items:center;justify-content:center;
  font-size:22px;flex-shrink:0;
  box-shadow:0 4px 16px rgba(14,138,120,.35);
}
.doc-name{font-weight:600;font-size:14px;color:white}
.doc-role{font-size:12px;color:rgba(255,255,255,.5);margin-top:2px}
.stat-row{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:10px;margin-top:20px;
}
.stat-box{
  background:rgba(255,255,255,.07);border-radius:12px;
  padding:14px 8px;text-align:center;
  transition:background .3s;
}
.stat-box:hover{background:rgba(14,138,120,.2)}
.stat-num{
  font-family:'Playfair Display',serif;
  font-size:26px;font-weight:700;color:#00d4f0;
}
.stat-lbl{font-size:10px;color:rgba(255,255,255,.45);letter-spacing:.06em;text-transform:uppercase;margin-top:2px}

.scroll-hint{
  position:absolute;bottom:32px;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:8px;
  animation:fadeIn 1s 1.5s both;
  cursor:pointer;
}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.scroll-hint span{font-size:11px;color:rgba(255,255,255,.4);letter-spacing:.1em;text-transform:uppercase}
.scroll-wheel{
  width:22px;height:34px;border:2px solid rgba(255,255,255,.25);
  border-radius:100px;display:flex;justify-content:center;padding-top:5px;
}
.scroll-dot{
  width:4px;height:4px;background:rgba(255,255,255,.6);
  border-radius:50%;animation:scrollDot 1.8s ease infinite;
}
@keyframes scrollDot{0%{transform:translateY(0);opacity:1}80%{transform:translateY(14px);opacity:0}100%{transform:translateY(0);opacity:0}}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES GRID (home preview)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:22px;margin-top:52px;
}
.svc-card{
  background:var(--white);border-radius:var(--radius);
  padding:30px 26px;border:1px solid var(--border);
  transition:all .35s cubic-bezier(.22,.68,0,1.2);
  position:relative;overflow:hidden;cursor:default;
}
.svc-card::before{
  content:'';position:absolute;bottom:0;left:0;right:0;height:3px;
  background:var(--grad-teal);transform:scaleX(0);transform-origin:left;
  transition:transform .35s ease;
}
.svc-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);border-color:transparent}
.svc-card:hover::before{transform:scaleX(1)}
.svc-ico{
  width:56px;height:56px;border-radius:14px;
  background:var(--teal-pale);
  display:flex;align-items:center;justify-content:center;
  font-size:26px;margin-bottom:18px;
  transition:transform .3s,background .3s;
  overflow:hidden;
}
.svc-ico img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:8px;
}
.svc-card:hover .svc-ico{transform:scale(1.1);background:var(--grad-teal)}
.svc-nm{font-weight:700;font-size:16px;color:var(--navy);margin-bottom:8px}
.svc-ds{font-size:13.5px;color:var(--muted);line-height:1.65}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY CHOOSE US
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-sec{
  background:linear-gradient(180deg, #eaf6ff 0%, #dff1ff 55%, #d6ecff 100%);
  position:relative;overflow:hidden;
}
.why-sec::after{
  content:'';position:absolute;bottom:-1px;left:0;right:0;height:80px;
  background:#d6ecff;
  clip-path:ellipse(60% 100% at 50% 100%);
}
.why-sec .sec-label{color:#127ea4}
.why-sec .sec-label::before{background:#127ea4}
.why-sec .sec-title{color:#0d2a4a}
.why-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;margin-top:52px;
}
.why-card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(18,126,164,.16);
  border-radius:var(--radius);padding:30px 22px;text-align:center;
  transition:all .35s;
  position:relative;overflow:hidden;
}
.why-card::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg, rgba(24,180,212,.20) 0%, rgba(0,212,240,.16) 100%);
  opacity:0;transition:opacity .35s;
}
.why-card:hover{transform:translateY(-6px);border-color:rgba(18,126,164,.2);box-shadow:0 16px 36px rgba(13,42,74,.14)}
.why-card:hover::before{opacity:1}
.why-ico{font-size:40px;margin-bottom:16px;position:relative;z-index:1;display:block;transition:transform .3s}
.why-card:hover .why-ico{transform:scale(1.2) rotate(-8deg)}
.why-title{font-weight:700;font-size:16px;color:#0f3157;margin-bottom:8px;position:relative;z-index:1}
.why-desc{font-size:13px;color:#496b8d;position:relative;z-index:1;line-height:1.6}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NUMBERS STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.numbers-strip{
  background:#ffffff;padding:60px 6%;
  border-top:1px solid var(--border);border-bottom:1px solid var(--border);
}
.numbers-inner{
  max-width:1240px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);gap:20px;
}
@media(max-width:640px){.numbers-inner{grid-template-columns:repeat(2,1fr)}}
.num-item{text-align:center;padding:24px 10px}
.num-val{
  font-family:'Playfair Display',serif;
  font-size:52px;font-weight:700;
  background:var(--grad-teal);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1;margin-bottom:8px;
}
.num-lbl{font-size:14px;color:var(--muted);font-weight:500}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA STRIP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-strip{
  background:var(--grad-teal);
  padding:70px 6%;position:relative;overflow:hidden;
}
.cta-strip::before{
  content:'';position:absolute;right:-100px;top:-100px;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,.06);
}
.cta-inner{
  max-width:1240px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  gap:32px;flex-wrap:wrap;position:relative;z-index:1;
}
.cta-text h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,3vw,38px);color:white;
  margin-bottom:8px;font-weight:700;
}
.cta-text p{color:rgba(255,255,255,.8);font-size:15px}
.btn-white{
  display:inline-flex;align-items:center;gap:9px;
  background:white;color:var(--teal);
  padding:15px 30px;border-radius:12px;
  font-size:15px;font-weight:700;border:none;
  box-shadow:0 8px 24px rgba(0,0,0,.12);
  transition:all .3s;white-space:nowrap;cursor:pointer;
  text-decoration:none;
}
.btn-white:hover{transform:translateY(-3px);box-shadow:0 16px 40px rgba(0,0,0,.18)}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME MODERN CTA
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.home-cta-modern{
  padding:78px 6% 96px;
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(24,180,212,.14), transparent 70%),
    radial-gradient(700px 260px at 90% 100%, rgba(240,160,48,.12), transparent 72%),
    linear-gradient(180deg, #f7fbff 0%, #eff6fc 100%);
}
.home-cta-card{
  max-width:1240px;
  margin:0 auto;
  background:linear-gradient(135deg, #0b1f3a 0%, #12335c 58%, #0f5f7c 100%);
  color:var(--white);
  border-radius:26px;
  padding:44px;
  display:block;
  box-shadow:0 18px 60px rgba(10,22,40,.24);
  border:1px solid rgba(255,255,255,.12);
  position:relative;
  overflow:hidden;
}
.home-cta-card::before,
.home-cta-card::after{
  content:'';
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
.home-cta-card::before{
  width:280px;
  height:280px;
  right:-90px;
  top:-110px;
  background:rgba(255,255,255,.08);
}
.home-cta-card::after{
  width:210px;
  height:210px;
  left:-76px;
  bottom:-95px;
  background:rgba(0,212,240,.18);
}
.home-cta-copy,
.home-cta-actions{position:relative;z-index:1}
.home-cta-copy{
  max-width:860px;
  margin:0 auto;
  text-align:center;
}
.home-cta-kicker{
  display:inline-block;
  font-size:11px;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-weight:700;
  color:#b7f5ff;
  margin-bottom:12px;
}
.home-cta-copy h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px, 3.5vw, 46px);
  line-height:1.1;
  margin-bottom:14px;
}
.home-cta-copy p{
  color:rgba(255,255,255,.83);
  max-width:700px;
  line-height:1.75;
  font-size:15px;
}
.home-cta-tags{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.home-cta-tags span{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  color:#e6fbff;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.24);
}
.home-cta-actions{
  margin-top:24px;
  display:flex;
  flex-direction:row;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.home-cta-call,
.home-cta-book{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:14px 18px;
  border-radius:12px;
  font-size:15px;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.home-cta-call{
  background:var(--white);
  color:#0a4f7e;
  box-shadow:0 8px 26px rgba(0,0,0,.18);
}
.home-cta-book{
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,.45);
}
.home-cta-call:hover,
.home-cta-book:hover{
  transform:translateY(-2px);
}
.home-cta-book:hover{
  background:rgba(255,255,255,.12);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES CTA MODERN
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-cta-modern{
  padding:72px 6% 84px;
  background:linear-gradient(135deg, #e0f3ff 0%, #d4ebff 58%, #c0e4ff 100%);
  border-radius:32px;
  margin:0 6%;
}
.services-cta-content{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}
.services-cta-content h2{
  font-family:'Playfair Display',serif;
  font-size:42px;
  font-weight:700;
  line-height:1.2;
  color:#0a1f3a;
  margin:0 0 16px;
}
.services-cta-content p{
  font-size:18px;
  line-height:1.6;
  color:#2f4f72;
  margin:0 0 32px;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}
.services-cta-actions{
  display:flex;
  flex-direction:row;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.services-cta-call,
.services-cta-book{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:14px 28px;
  border-radius:12px;
  font-size:15px;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.services-cta-call{
  background:#0a1f3a;
  color:#ffffff;
  box-shadow:0 8px 26px rgba(10,31,58,.24);
}
.services-cta-book{
  background:rgba(10,31,58,.1);
  color:#0a1f3a;
  border:1.5px solid rgba(10,31,58,.4);
}
.services-cta-call:hover,
.services-cta-book:hover{
  transform:translateY(-3px);
}
.services-cta-call:hover{
  box-shadow:0 12px 32px rgba(10,31,58,.28);
  background:#0f2c47;
}
.services-cta-book:hover{
  background:rgba(10,31,58,.2);
  border-color:rgba(10,31,58,.8);
  box-shadow:0 8px 24px rgba(10,31,58,.15);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG CTA MODERN
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-cta-modern{
  padding:72px 6% 84px;
  background:linear-gradient(135deg, #e0f3ff 0%, #d4ebff 58%, #c0e4ff 100%);
  border-radius:32px;
  margin:0 6%;
}
.blog-cta-content{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}
.blog-cta-content h2{
  font-family:'Playfair Display',serif;
  font-size:42px;
  font-weight:700;
  line-height:1.2;
  color:#0a1f3a;
  margin:0 0 16px;
}
.blog-cta-content p{
  font-size:18px;
  line-height:1.6;
  color:#2f4f72;
  margin:0 0 32px;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}
.blog-cta-actions{
  display:flex;
  flex-direction:row;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
}
.blog-cta-call,
.blog-cta-book{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:14px 28px;
  border-radius:12px;
  font-size:15px;
  font-weight:700;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.blog-cta-call{
  background:#0a1f3a;
  color:#ffffff;
  box-shadow:0 8px 26px rgba(10,31,58,.24);
}
.blog-cta-book{
  background:rgba(10,31,58,.1);
  color:#0a1f3a;
  border:1.5px solid rgba(10,31,58,.4);
}
.blog-cta-call:hover,
.blog-cta-book:hover{
  transform:translateY(-3px);
}
.blog-cta-call:hover{
  box-shadow:0 12px 32px rgba(10,31,58,.28);
  background:#0f2c47;
}
.blog-cta-book:hover{
  background:rgba(10,31,58,.2);
  border-color:rgba(10,31,58,.8);
  box-shadow:0 8px 24px rgba(10,31,58,.15);
}

.gallery-cta-modern{
  padding:72px 6% 84px;
  background:linear-gradient(135deg, #e0f3ff 0%, #d4ebff 58%, #c0e4ff 100%);
  border-radius:32px;
  margin:0 6%;
}
.gallery-cta-content{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}
.gallery-cta-content h2{
  font-family:'Playfair Display',serif;
  font-size:42px;
  font-weight:700;
  line-height:1.2;
  color:#0a1f3a;
  margin:0 0 16px;
}
.gallery-cta-content p{
  font-size:18px;
  line-height:1.6;
  color:#2f4f72;
  margin:0 0 32px;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}
.gallery-cta-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}
.gallery-cta-call,
.gallery-cta-book{
  text-decoration:none;
  border:none;
  cursor:pointer;
  transition:all .3s ease;
  font-weight:600;
  border-radius:8px;
  padding:16px 28px;
  font-size:16px;
}
.gallery-cta-call{
  background:#0a1f3a;
  color:#ffffff;
  box-shadow:0 8px 26px rgba(10,31,58,.24);
}
.gallery-cta-call:hover{
  box-shadow:0 12px 32px rgba(10,31,58,.28);
  background:#0f2c47;
}
.gallery-cta-book{
  background:rgba(10,31,58,.1);
  color:#0a1f3a;
  border:1.5px solid rgba(10,31,58,.4);
  backdrop-filter:blur(10px);
}
.gallery-cta-book:hover{
  background:rgba(10,31,58,.2);
  border-color:rgba(10,31,58,.8);
  box-shadow:0 8px 24px rgba(10,31,58,.15);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME ABOUT INTRO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.home-about-intro{
  padding:78px 6% 70px;
  background:#ecf6ff;
}
.home-about-intro-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:34px;
  align-items:stretch;
}
.home-about-intro-copy{
  background:transparent;
  border:none;
  border-radius:0;
  padding:0;
  box-shadow:none;
}
.home-about-intro-copy .sec-label{margin-bottom:12px}
.home-about-intro-copy .sec-title{
  margin-bottom:16px;
  font-size:clamp(28px, 3.2vw, 42px);
  line-height:1.15;
}
.home-about-intro-copy p{
  font-size:16px;
  color:#395a7a;
  line-height:1.8;
  margin:0 0 14px;
}
.home-about-intro-copy p:last-child{margin-bottom:0}
.home-about-intro-media{
  border-radius:14px;
  overflow:hidden;
  border:none;
  box-shadow:none;
  min-height:100%;
}
.home-about-intro-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@media(max-width:900px){
  .home-about-intro-grid{
    grid-template-columns:1fr;
  }
  .home-about-intro-copy{
    padding:0;
  }
  .home-about-intro-media{
    min-height:320px;
  }
  .home-cta-card{
    padding:34px 24px;
    border-radius:20px;
  }
  .home-cta-actions{
    flex-direction:column;
    width:100%;
  }
  .services-cta-modern{
    padding:52px 4% 64px;
    margin:0 4%;
    border-radius:28px;
  }
  .services-cta-content h2{
    font-size:32px;
  }
  .services-cta-content p{
    font-size:16px;
  }
  .services-cta-actions{
    flex-direction:column;
    gap:12px;
  }
  .services-cta-call,
  .services-cta-book{
    width:100%;
    max-width:300px;
    margin:0 auto;
  }
  .blog-cta-modern{
    padding:52px 4% 64px;
    margin:0 4%;
    border-radius:28px;
  }
  .blog-cta-content h2{
    font-size:32px;
  }
  .blog-cta-content p{
    font-size:16px;
  }
  .blog-cta-actions{
    flex-direction:column;
    gap:12px;
  }
  .blog-cta-call,
  .blog-cta-book{
    width:100%;
    max-width:300px;
    margin:0 auto;
  }
  .gallery-cta-modern{
    padding:52px 4% 64px;
    margin:0 4%;
    border-radius:28px;
  }
  .gallery-cta-content h2{
    font-size:32px;
  }
  .gallery-cta-content p{
    font-size:16px;
  }
  .gallery-cta-actions{
    flex-direction:column;
    gap:12px;
  }
  .gallery-cta-call,
  .gallery-cta-book{
    width:100%;
    max-width:300px;
    margin:0 auto;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES FULL PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.svc-full-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:26px;margin-top:52px;
}
.svc-full-card{
  background:white;border-radius:var(--radius-lg);
  overflow:hidden;border:1px solid var(--border);
  transition:all .35s;
}
.svc-full-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:transparent}
.svc-full-head{
  padding:30px;
  background:var(--grad-hero);
  position:relative;overflow:hidden;
  display:flex;align-items:flex-start;gap:18px;
}
.svc-full-head::after{
  content:'';position:absolute;right:-30px;top:-30px;
  width:130px;height:130px;border-radius:50%;
  background:rgba(255,255,255,.04);
}
.svc-full-ico{font-size:38px;flex-shrink:0}
.svc-full-head h3{
  font-family:'Playfair Display',serif;
  font-size:22px;font-weight:700;color:white;margin-bottom:4px;
}
.svc-full-head .sub{font-size:12px;color:rgba(255,255,255,.55);letter-spacing:.06em;text-transform:uppercase}
@media(max-width:540px){
  .svc-full-head{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:12px;
    padding:24px 20px;
  }
  .svc-full-ico{
    margin-bottom:8px;
  }
}
.svc-full-body{padding:26px}
.svc-full-body p{color:var(--muted);line-height:1.75;font-size:14.5px}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BLOG PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.blog-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;margin-top:40px;
}
@media(max-width:480px){
  .blog-grid{
    grid-template-columns:1fr;
    gap:20px;
  }
}
.blog-card{
  background:white;border-radius:var(--radius-lg);
  overflow:hidden;border:1px solid var(--border);
  transition:all .35s cubic-bezier(.22,.68,0,1.2);
  display:flex;flex-direction:column;
}
.blog-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);border-color:transparent}
.blog-thumb{
  height:200px;display:flex;align-items:center;justify-content:center;
  font-size:64px;position:relative;overflow:hidden;
  transition:transform .5s;
}
.blog-image{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .5s;
}
.blog-card:hover .blog-image{transform:scale(1.05)}
.blog-card:hover .blog-thumb{transform:scale(1.05)}
.blog-thumb.th1{background:linear-gradient(135deg,#e6f7f5 0%,#b2ece4 100%)}
.blog-thumb.th2{background:linear-gradient(135deg,#fdf4e7 0%,#f5ddb0 100%)}
.blog-thumb.th3{background:linear-gradient(135deg,#ede8f8 0%,#c9bff0 100%)}

.blog-body{padding:26px 26px 28px;flex:1;display:flex;flex-direction:column}
.blog-cat{
  font-size:11px;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--teal);margin-bottom:10px;
  display:flex;align-items:center;gap:6px;
}
.blog-cat::before{content:'';width:16px;height:2px;background:var(--teal);border-radius:2px}
.blog-body h3{
  font-family:'Playfair Display',serif;
  font-size:20px;font-weight:700;color:var(--navy);
  margin-bottom:12px;line-height:1.3;
}
.blog-body p{font-size:14px;color:var(--muted);line-height:1.75;flex:1}
.blog-footer{
  margin-top:20px;padding-top:18px;
  border-top:1px solid var(--border);
  display:flex;align-items:center;justify-content:space-between;
}
.blog-meta{font-size:12px;color:var(--muted)}
.read-more-btn{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--teal-pale);color:var(--teal);
  padding:8px 16px;border-radius:8px;
  font-size:13px;font-weight:600;border:none;
  cursor:pointer;transition:all .25s;
}
.read-more-btn:hover{background:var(--teal);color:white;transform:translateX(3px)}
.read-more-btn .arrow{transition:transform .25s}
.read-more-btn:hover .arrow{transform:translateX(4px)}
.page-header .breadcrumb a{opacity:.92}
.page-header .breadcrumb a:hover{color:var(--teal)}

.article-shell{
  margin-top:52px;padding:34px;
  background:white;border:1px solid var(--border);
  border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);
}
.article-back{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--teal);font-size:14px;font-weight:600;
}
.article-back:hover{transform:translateX(-2px)}
.article-hero{
  margin-top:26px;display:grid;
  grid-template-columns:minmax(280px,360px) 1fr;
  gap:32px;align-items:center;
}
.article-thumb{height:100%;min-height:260px}
.blog-feature-image{
  width:100%;height:100%;
  object-fit:cover;object-position:center;
  border-radius:var(--radius-lg);
  display:block;
}
.article-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(30px,4vw,42px);
  color:var(--navy);line-height:1.15;
}
.article-meta{
  margin:16px 0 12px;
  font-size:13px;color:var(--muted);
  text-transform:uppercase;letter-spacing:.12em;
}
.article-excerpt{font-size:15px;color:var(--muted);line-height:1.85}
.article-prose{
  margin-top:32px;padding-top:28px;
  border-top:1px solid var(--border);
  font-size:15px;line-height:1.95;color:var(--text);
}
.article-prose h3{
  margin:28px 0 10px;
  font-family:'Playfair Display',serif;
  font-size:24px;
  font-weight:700;
  color:var(--navy);
  line-height:1.2;
}
.article-prose p{
  margin:0 0 16px;
}
.article-prose a{
  color:var(--teal);
  font-weight:600;
}
.article-prose a:hover{
  color:var(--navy);
}
.article-prose strong{
  color:var(--navy);
}
@media(max-width:860px){
  .article-shell{padding:24px}
  .article-hero{grid-template-columns:1fr}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:48px;margin-top:52px;
  align-items:start;
}
@media(max-width:860px){.contact-grid{grid-template-columns:1fr}}
.contact-info{
  background:linear-gradient(135deg, #e0f3ff 0%, #d4ebff 58%, #c0e4ff 100%);
  border-radius:20px;
  padding:42px;
  color:#0a1f3a;
  box-shadow:0 10px 40px rgba(0,0,0,.08);
}
@media(max-width:640px){
  .contact-info, .contact-form-box{
    padding:30px 20px;
  }
  .contact-grid{
    gap:32px;
    margin-top:32px;
  }
}
.contact-info h3{
  font-family:'Playfair Display',serif;
  font-size:28px;
  font-weight:700;
  margin-bottom:32px;
  color:#0a1f3a;
  letter-spacing:.05em;
}
@media(max-width:480px){
  .contact-info h3{
    font-size:24px;
    margin-bottom:20px;
  }
}
.c-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:18px 0;
  border-bottom:1px solid rgba(10,31,58,.15);
}
.c-item:last-of-type{
  border:none;
  padding-bottom:0;
}
.c-ico{
  width:50px;
  height:50px;
  flex-shrink:0;
  border-radius:12px;
  background:rgba(212,165,116,.3);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  transition:background .3s, transform .3s;
  color:#0a1f3a;
}
.c-ico.whatsapp-ico{
  background:rgba(37,211,102,.3);
}
.c-item:hover .c-ico{
  background:rgba(212,165,116,.5);
  transform:scale(1.15);
}
.c-item:hover .c-ico.whatsapp-ico{
  background:rgba(37,211,102,.6);
  transform:scale(1.15);
}
.c-content{
  flex:1;
}
.c-lbl{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.15em;
  color:#0a1f3a;
  margin-bottom:6px;
  font-weight:700;
}
.c-val{
  font-weight:600;
  font-size:15px;
  color:#0a1f3a;
  text-decoration:none;
  display:block;
  transition:color .3s;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.c-val:hover{
  color:#2f4f72;
}
.whatsapp-link{
  color:#25d366;
}
.whatsapp-link:hover{
  color:#20ba5a;
}
.c-sub{
  font-size:12px;
  color:rgba(10,31,58,.6);
  margin-top:4px;
}

.hours-box{
  background:white;border-radius:var(--radius);
  border:1px solid var(--border);padding:26px;margin-top:22px;
}
.hours-box h4{font-size:15px;font-weight:700;color:var(--navy);margin-bottom:16px}
.h-row{
  display:flex;justify-content:space-between;
  padding:9px 0;border-bottom:1px solid var(--border);font-size:13.5px;
}
.h-row:last-child{border:none;padding-bottom:0}
.h-day{color:var(--muted)}
.h-time{font-weight:600;color:var(--teal)}
.h-time.closed{color:#e57373}

.contact-form-box{
  background:white;
  border-radius:20px;
  padding:42px;
  border:1px solid #e5e5e5;
  box-shadow:0 4px 16px rgba(0,0,0,.05);
}
.contact-form-box h3{
  font-family:'Playfair Display',serif;
  font-size:28px;
  font-weight:700;
  color:#0a1f3a;
  margin-bottom:28px;
  letter-spacing:.05em;
}
.fg{
  margin-bottom:22px;
}
.fl{
  display:block;
  font-size:12px;
  font-weight:700;
  color:#0a1f3a;
  margin-bottom:8px;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.fi,.ft,.fs{
  width:100%;
  padding:14px 16px;
  border:1.5px solid #e5e5e5;
  border-radius:10px;
  font-family:'Outfit',sans-serif;
  font-size:14px;
  color:#2f4f72;
  background:#fafbfc;
  outline:none;
  transition:all .25s;
}
.fi:focus,.ft:focus,.fs:focus{
  border-color:#d4a574;
  background:white;
  box-shadow:0 0 0 3px rgba(212,165,116,.1);
}
.fi::placeholder,.ft::placeholder,.fs::placeholder{
  color:#0a1f3a !important;
  opacity:1 !important;
}
.fi::-webkit-input-placeholder,.ft::-webkit-input-placeholder,.fs::-webkit-input-placeholder{
  color:#0a1f3a !important;
  opacity:1 !important;
}
.fi:-ms-input-placeholder,.ft:-ms-input-placeholder,.fs:-ms-input-placeholder{
  color:#0a1f3a !important;
}
.ft{
  height:140px;
  resize:vertical;
}
.sub-btn{
  width:100%;
  background:#c0e4ff;
  color:#0a1f3a;
  padding:16px;
  border-radius:12px;
  border:none;
  font-family:'Outfit',sans-serif;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:all .3s;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  box-shadow:0 6px 24px rgba(192,228,255,.4);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.sub-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 36px rgba(192,228,255,.6);
  background:#a8d5ff;
}
.form-ok{
  display:none;background:var(--teal-pale);
  border:1px solid rgba(14,138,120,.3);border-radius:10px;
  padding:16px;color:var(--teal);font-weight:600;
  text-align:center;margin-top:14px;
  animation:fadeIn .4s ease;
}
.map-wrap{
  max-width:1240px;margin:0 auto 0;padding:0 6% 60px;
}
.map-ph{
  border-radius:var(--radius-lg);height:280px;
  background:linear-gradient(135deg,#e8eef5,#c8d8e8);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:12px;border:1px solid var(--border);
}
.map-ph .map-ico{font-size:48px}
.map-ph p{color:var(--muted);font-size:15px;text-align:center}
.map-ph a{color:var(--teal);font-weight:700;font-size:14px}

.map-section{
  padding:60px 6%;
  background:#f8f9fb;
}
.map-container{
  max-width:1240px;
  margin:0 auto;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,.1);
}
.map-container iframe{
  width:100%;
  height:500px;
  border:none;
}
@media(max-width:768px){
  .map-container iframe{
    height:350px;
  }
  .map-section{
    padding:40px 6%;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
footer{
  background:var(--navy);color:rgba(255,255,255,.65);
  padding:60px 6% 30px;
}
.footer-grid{
  max-width:1240px;margin:0 auto;
  display:grid;grid-template-columns:1.8fr 1fr 1fr;
  gap:48px;padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,.09);
}
@media(max-width:860px){.footer-grid{grid-template-columns:1fr;gap:32px}}
.footer-brand h3{
  font-family:'Playfair Display',serif;
  font-size:22px;color:white;margin-bottom:12px;font-weight:700;
}
.footer-brand p{font-size:13.5px;line-height:1.75;max-width:280px}
.phone-chip{
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(24,180,212,.15);border:1px solid rgba(24,180,212,.35);
  color:#00d4f0;padding:8px 14px;border-radius:100px;
  font-size:13px;font-weight:600;margin-top:18px;
  text-decoration:none;transition:all .25s;
}
.phone-chip:hover{background:rgba(14,138,120,.35)}
.footer-col h4{color:white;font-size:14px;font-weight:700;margin-bottom:18px;letter-spacing:.04em}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:10px}
.footer-col a{
  color:rgba(255,255,255,.55);font-size:13.5px;cursor:pointer;
  transition:all .2s;display:inline-flex;align-items:center;gap:6px;
}
.footer-col a::before{content:'â†’';font-size:11px;opacity:0;transform:translateX(-6px);transition:all .25s}
.footer-col a:hover{color:#00d4f0;padding-left:4px}
.footer-col a:hover::before{opacity:1;transform:none}
.footer-bottom{
  max-width:1240px;margin:0 auto;
  padding-top:24px;display:flex;justify-content:space-between;
  align-items:center;flex-wrap:wrap;gap:12px;
  font-size:12px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media(max-width:640px){
  section{padding:60px 5%}
  .cta-inner{flex-direction:column;text-align:center}
  .services-cta-modern{
    padding:40px 4% 48px;
    margin:0 4%;
    border-radius:24px;
  }
  .services-cta-content h2{
    font-size:28px;
    margin-bottom:12px;
  }
  .services-cta-content p{
    font-size:15px;
    margin-bottom:24px;
  }
  .services-cta-call,
  .services-cta-book{
    padding:12px 16px;
    font-size:14px;
  }
  .blog-cta-modern{
    padding:40px 4% 48px;
    margin:0 4%;
    border-radius:24px;
  }
  .blog-cta-content h2{
    font-size:28px;
    margin-bottom:12px;
  }
  .blog-cta-content p{
    font-size:15px;
    margin-bottom:24px;
  }
  .blog-cta-call,
  .blog-cta-book{
    padding:12px 16px;
    font-size:14px;
  }
  .gallery-cta-modern{
    padding:40px 4% 48px;
    margin:0 4%;
    border-radius:24px;
  }
  .gallery-cta-content h2{
    font-size:28px;
    margin-bottom:12px;
  }
  .gallery-cta-content p{
    font-size:15px;
    margin-bottom:24px;
  }
  .gallery-cta-call,
  .gallery-cta-book{
    padding:12px 16px;
    font-size:14px;
  }
}

.site-footer{
  margin-top:0;
  padding:0;
  background:none;
  color:#345577;
}
.site-footer-main{
  background:linear-gradient(180deg,#eef8ff 0%,#dff1ff 58%,#d4ebff 100%);
  padding:52px 6% 42px;
  border-top:none;
}
.site-footer-grid{
  display:flex;
  gap:30px;
  align-items:flex-start;
}
.site-footer-brand,
.site-footer-column{
  flex:1 1 0;
  min-width:160px;
  display:flex;
  flex-direction:column;
}
.site-footer-main .container,
.site-footer-bottom .container{
  max-width:1200px;
  margin:0 auto;
  width:100%;
  padding:0;
}
.site-footer-brand-link{
  display:inline-flex;align-items:center;gap:16px;
  width:auto;
  margin-bottom:22px;
}
.site-footer-brand-mark{
  width:62px;height:62px;border-radius:18px;
  background:linear-gradient(135deg,#d9efff,#bde3ff);
  border:1px solid #9fcdf2;
  display:flex;align-items:center;justify-content:center;
  font-size:30px;box-shadow:0 16px 36px rgba(6,17,33,.24);
  overflow:hidden;
}
.site-footer-brand-image{width:100%;height:100%;object-fit:contain;display:block}
.site-footer-brand-name{
  font-family:'Playfair Display',serif;
  font-size:20px;font-weight:700;line-height:1.2;color:#102f50;
}
.site-footer-brand-tag{
  margin-top:6px;
  color:#4d7ca8;
  font-size:12px;letter-spacing:.14em;text-transform:uppercase;
}
.site-footer-brand-copy{
  max-width:100%;
  margin:0;
  color:#416489;font-size:15px;line-height:1.6;
}
.site-footer-title{
  position:relative;
  width:max-content;
  margin:0 0 16px;
  font-size:18px;font-weight:700;color:#113558;
}
.site-footer-title::after{
  content:'';
  position:absolute;left:0;bottom:-6px;
  width:36px;height:3px;border-radius:999px;
  background:#18b4d4;
}
.site-footer-links,
.site-footer-contact-list{
  display:flex;flex-direction:column;gap:12px;
}
.site-footer-links{
  list-style:none;padding:0;margin:0;
}
.site-footer-links a{
  display:inline-flex;align-items:center;gap:12px;
  color:#2d567e;font-size:17px;
  transition:color .25s,transform .25s;
}
.site-footer-links a span{
  color:#18b4d4;
  font-size:20px;line-height:1;
}
.site-footer-links a:hover{
  color:#0b3d66;transform:translateX(4px);
}
.site-footer-contact-item{
  display:grid;
  grid-template-columns:28px 1fr;
  gap:16px;align-items:flex-start;
}
.site-footer-contact-item > div{
  display:block;
}
.site-footer-contact-icon{
  width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  margin-top:0;
  background:transparent;
  border:none;
  color:#22c55e;
  font-size:22px;
}
.site-footer-contact-item p,
.site-footer-contact-item a{
  color:#2f4f72;font-size:16px;line-height:1.6;
}
.site-footer-contact-item p{max-width:300px}
.site-footer-contact-item p,
.site-footer-bottom-row p{margin:0}
.site-footer-contact-item a:hover{color:#0b3d66}
.site-footer-social-icons{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(24,180,212,.1);
  display:flex;
  gap:10px;
}
.site-footer-social-link{
  width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(24,180,212,.08);
  border:1px solid rgba(24,180,212,.15);
  border-radius:50%;
  color:#18b4d4;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
  transition:all .3s ease;
}
.site-footer-social-link:hover{
  background:rgba(24,180,212,.16);
  border-color:rgba(24,180,212,.3);
  color:#0ba3ba;
  transform:translateY(-3px);
}
.site-footer-bottom{
  background:#c7e4fa;
  border-top:1px solid #b2d6f0;
}
.site-footer-bottom-row{
  min-height:auto;
  padding:20px 0;
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;flex-wrap:wrap;
}
.site-footer-bottom-row p{
  margin:0;
  color:#345577;font-size:14px;
}
.site-footer-bottom-links a{
  color:#345577;font-size:14px;
}
.site-footer-bottom-links{
  display:flex;align-items:center;gap:26px;flex-wrap:wrap;
}
.site-footer-bottom-links a:hover{color:#113558}
@media(max-width:1200px){
  .site-footer-grid{flex-direction:column;gap:30px}
  .site-footer-main{padding:44px 4% 38px}
}
@media(max-width:768px){
  .site-footer-main{padding:36px 4% 32px}
  .site-footer-grid{flex-direction:column;gap:24px}
  .site-footer-brand-copy{font-size:15px}
  .site-footer-title{font-size:16px;margin:0 0 14px}
  .site-footer-bottom-row{padding:14px 0;font-size:13px}
  .site-footer-contact-item p,
  .site-footer-contact-item a{font-size:15px}
  .site-footer-social-icons{gap:9px}
  .site-footer-social-link{width:36px;height:36px;font-size:16px}
  .blog-cta-modern{
    padding:56px 4% 68px;
    margin:0 4%;
    border-radius:28px;
  }
  .blog-cta-content h2{
    font-size:32px;
    margin-bottom:14px;
  }
  .blog-cta-content p{
    font-size:16px;
    margin-bottom:28px;
  }
  .blog-cta-call,
  .blog-cta-book{
    padding:14px 20px;
    font-size:15px;
  }
  .gallery-cta-modern{
    padding:56px 4% 68px;
    margin:0 4%;
    border-radius:28px;
  }
  .gallery-cta-content h2{
    font-size:32px;
    margin-bottom:14px;
  }
  .gallery-cta-content p{
    font-size:16px;
    margin-bottom:28px;
  }
  .gallery-cta-call,
  .gallery-cta-book{
    padding:14px 20px;
    font-size:15px;
  }
}
@media(max-width:480px){
  .site-footer-main{padding:28px 4% 24px}
  .site-footer-grid{gap:24px}
  .site-footer-brand-link{margin-bottom:14px}
  .site-footer-bottom-row{gap:14px;flex-direction:column;text-align:center}
  .site-footer-bottom-links{justify-content:center}
  .site-footer-contact-item{grid-template-columns:24px 1fr;gap:12px}
  .site-footer-contact-icon{width:24px;height:24px;font-size:20px}
  .site-footer-contact-item p,
  .site-footer-contact-item a{font-size:14px}
  .site-footer-social-icons{gap:8px;margin-top:10px;padding-top:10px;justify-content:flex-start}
  .site-footer-social-link{width:34px;height:34px;font-size:15px}
  .services-cta-modern{
    padding:32px 3% 40px;
    margin:0 3%;
    border-radius:20px;
  }
  .services-cta-content h2{
    font-size:24px;
    margin-bottom:10px;
  }
  .services-cta-content p{
    font-size:14px;
    margin-bottom:20px;
  }
  .services-cta-actions{flex-direction:column}
  .services-cta-call,
  .services-cta-book{
    width:100%;
    padding:12px 14px;
    font-size:13px;
  }
  .blog-cta-modern{
    padding:32px 3% 40px;
    margin:0 3%;
    border-radius:20px;
  }
  .blog-cta-content h2{
    font-size:24px;
    margin-bottom:10px;
  }
  .blog-cta-content p{
    font-size:14px;
    margin-bottom:20px;
  }
  .blog-cta-actions{flex-direction:column}
  .blog-cta-call,
  .blog-cta-book{
    width:100%;
    padding:12px 14px;
    font-size:13px;
  }
  .gallery-cta-modern{
    padding:32px 3% 40px;
    margin:0 3%;
    border-radius:20px;
  }
  .gallery-cta-content h2{
    font-size:24px;
    margin-bottom:10px;
  }
  .gallery-cta-content p{
    font-size:14px;
    margin-bottom:20px;
  }
  .gallery-cta-actions{flex-direction:column}
  .gallery-cta-call,
  .gallery-cta-book{
    width:100%;
    padding:12px 14px;
    font-size:13px;
  }
}

.page-header + section{padding-top:42px}

.home-banners-section{
  padding:0;
  margin:0;
  width:100%;
}
.home-banners-section + section{
  padding-top:60px; /* Reduced gap as requested */
}
.banner-slider{
  position:relative;
  min-height: 100vh;
  overflow:hidden;
  background:#0d1f3c;
  margin:0;
  width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw;
  margin-right:-50vw;
}
.banner-slider-track{
  position:relative;
  min-height: 100vh;
}
.banner-slide{
  position:absolute!important;
  inset:0!important;
  background-color:#0d1f3c;
  opacity:0;
  transition:opacity .6s ease;
  pointer-events:none;
  background-size: cover!important;
  background-position: center top!important;
  display:block!important;
  width:100%!important;
  height:100%!important;
}
.banner-slide.is-active{
  opacity:1;
  pointer-events:auto;
}
.banner-slide::after{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(100deg,
    rgba(10,22,40,.82) 0%,
    rgba(10,22,40,.55) 55%,
    rgba(10,22,40,.20) 100%);
}
.banner-slide-shell{
  position:relative;
  z-index:2;
  max-width:1240px;
  margin:0 auto;
  padding: 90px 6% 0; /* push content down to avoid nav bar overlap */
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
}
.banner-slide-content{
  max-width:860px;
  animation:hsFadeUp .9s ease both;
}
@keyframes hsFadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:none}
}
.banner-slide-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0 0 18px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#ffd357;
}
.banner-slide-eyebrow::before{
  content:'';
  width:12px;
  height:12px;
  border-radius:999px;
  background:#ffd357;
  box-shadow:0 0 0 8px rgba(255,211,87,.12);
}
.banner-slide-title{
  margin:0;
  max-width:920px;
  font-family:'Playfair Display',serif;
  font-size:clamp(52px,7vw,96px);
  font-weight:700;
  line-height:.98;
  color:white;
  text-shadow:0 8px 24px rgba(5,15,32,.22);
}
.banner-slide-description{
  margin:24px 0 0;
  max-width:560px;
  font-size:19px;
  line-height:1.8;
  color:rgba(255,255,255,.84);
}
.banner-slide-button{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-top:34px;
  padding:18px 34px;
  border-radius:999px;
  background:linear-gradient(135deg,#ffd21a 0%,#f0a030 100%);
  color:#16253d;
  font-size:18px;
  font-weight:700;
  box-shadow:0 18px 36px rgba(240,160,48,.26);
  transition:transform .25s ease,box-shadow .25s ease;
}
.banner-slide-button:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 42px rgba(240,160,48,.34);
}
.banner-slide-button span{
  font-size:20px;
  line-height:1;
}
.banner-slider-control{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:2;
  width:46px;
  height:46px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:white;
  font-size:30px;
  line-height:1;
  backdrop-filter:blur(12px);
  transition:background .25s ease,transform .25s ease;
}
.banner-slider-control:hover{
  background:rgba(255,255,255,.26);
  transform:translateY(-50%) scale(1.05);
}
.banner-slider-control.is-prev{left:18px}
.banner-slider-control.is-next{right:18px}
.banner-slider-dots{
  position:absolute;
  left:50%;
  bottom:26px;
  transform:translateX(-50%);
  z-index:2;
  display:flex;
  align-items:center;
  gap:10px;
}
.banner-dot{
  width:11px;
  height:11px;
  padding:0;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.38);
  transition:transform .25s ease,background .25s ease;
}
.banner-dot.is-active{
  background:white;
  transform:scale(1.18);
}
@media(max-width:860px){
  .home-banners-section{padding-top:76px}
  .banner-slider,
  .banner-slider-track,
  .banner-slide-image{min-height:520px}
  .banner-slide-shell{
    align-items:flex-end;
  }
  .banner-slide-content{
    margin-left:0;
    padding:0 24px 82px;
  }
  .banner-slide-title{
    font-size:clamp(38px,11vw,62px);
    line-height:1.02;
  }
  .banner-slide-description{
    font-size:16px;
    line-height:1.7;
  }
  .banner-slide-button{
    margin-top:26px;
    padding:15px 24px;
    font-size:16px;
  }
  .banner-slider-control{
    width:40px;
    height:40px;
    font-size:26px;
  }
  .banner-slider-control.is-prev{left:12px}
  .banner-slider-control.is-next{right:12px}
}

.gallery-showcase-section{
  position:relative;
  background:linear-gradient(180deg,#fdfaf5 0%,#f7f8fc 100%);
}
.gallery-showcase-section::before{
  content:'';
  position:absolute;
  right:10%;
  top:28px;
  width:240px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(24,180,212,.1) 0%,rgba(24,180,212,0) 72%);
  filter:blur(12px);
  pointer-events:none;
}
.gallery-filters{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:8px;
  position:relative;
  z-index:1;
}
.gallery-filter{
  padding:14px 26px;
  border-radius:999px;
  border:1px solid rgba(56,189,248,.3);
  background:var(--teal-pale);
  color:var(--navy);
  font-size:15px;
  font-weight:700;
  transition:all .25s ease;
  box-shadow:0 10px 24px rgba(56,189,248,.08);
}
.gallery-filter:hover{
  transform:translateY(-2px);
  border-color:rgba(24,180,212,.35);
}
.gallery-filter.is-active{
  background:var(--grad-teal);
  border-color:transparent;
  color:white;
  box-shadow:0 16px 30px rgba(56,189,248,.3);
}
.gallery-grid-showcase{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  position:relative;
  z-index:1;
}
.gallery-showcase-card{
  display:block;
}
.gallery-showcase-card.is-hidden{
  display:none;
}
.gallery-showcase-surface{
  position:relative;
  aspect-ratio:4/3;
  border-radius:24px;
  padding:0;
  border:none;
  overflow:hidden;
  display:block;
  transition:box-shadow .3s ease;
  box-shadow:0 8px 24px rgba(10,22,40,.10);
}
.gallery-showcase-card:hover .gallery-showcase-surface{
  box-shadow:0 20px 48px rgba(10,22,40,.18);
}
.gallery-showcase-surface.tone-1{background:linear-gradient(135deg,#d9f5f5 0%,#bcebe4 100%)}
.gallery-showcase-surface.tone-2{background:linear-gradient(135deg,#fff3d6 0%,#fde2a2 100%)}
.gallery-showcase-surface.tone-3{background:linear-gradient(135deg,#f7d9dc 0%,#f0c1c6 100%)}
.gallery-showcase-surface.tone-4{background:linear-gradient(135deg,#132748 0%,#17355d 100%)}
.gallery-showcase-surface.tone-5{background:linear-gradient(135deg,#dfe9f7 0%,#cdd9eb 100%)}
.gallery-showcase-surface.tone-6{background:linear-gradient(135deg,#f1ecff 0%,#e0d5ff 100%)}
.gallery-showcase-icon{
  width:82px;
  height:82px;
  border-radius:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.46);
  box-shadow:0 12px 24px rgba(10,22,40,.08);
  font-size:40px;
  line-height:1;
}
.gallery-showcase-title{
  margin:0;
  color:var(--navy);
  font-size:24px;
  font-weight:700;
  line-height:1.25;
}
.gallery-showcase-surface.tone-4 .gallery-showcase-title,
.gallery-showcase-surface.tone-4 .gallery-showcase-tag{
  color:white;
}
.gallery-showcase-surface.has-image{
  padding:0;
  align-items:stretch;
  justify-content:flex-end;
}
.gallery-showcase-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME PAGE - HERO BANNER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-banner-section {
  position: relative;
  min-height: 700px;
  background: var(--grad-hero);
  overflow: hidden;
  padding-top: 76px;
  display: flex;
  align-items: center;
}

.banner-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: none;
}

.banner-slide.active {
  display: flex;
  align-items: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.5);
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 6%;
  width: 100%;
  text-align: center;
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 4px 16px rgba(10, 22, 40, 0.4);
}

.banner-subtitle {
  font-size: clamp(16px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.banner-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-cta .btn {
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--grad-teal);
  color: white;
  box-shadow: 0 8px 32px rgba(24, 180, 212, 0.35);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(24, 180, 212, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-4px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME PAGE - ABOUT US SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about-us-section {
  padding: 80px 6%;
  background: white;
}

.about-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.about-image-col {
  position: relative;
}

.about-image-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
  background: var(--teal-pale);
}

.about-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image-box:hover .about-image {
  transform: scale(1.02);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(10, 22, 40, 0.15);
  z-index: 10;
}

.badge-text {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.about-content-col {
  padding: 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-intro {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.highlight-item {
  display: flex;
  gap: 20px;
  animation: slideInRight 0.6s ease-out backwards;
}

.highlight-item:nth-child(1) { animation-delay: 0.1s; }
.highlight-item:nth-child(2) { animation-delay: 0.2s; }
.highlight-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.05);
  transition: all 0.4s ease;
}

.highlight-item:hover .highlight-icon {
  transform: scale(1.08) rotate(-3deg);
  border-color: var(--teal);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.15);
}

.highlight-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.highlight-item:hover .highlight-icon-img {
  transform: scale(1.15);
}

.highlight-icon-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 165, 233, 0.1), transparent);
  pointer-events: none;
}

.highlight-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.highlight-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME PAGE - WHY CHOOSE US
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-choose-section {
  padding: 100px 6%;
  background: linear-gradient(135deg, #e0f7fc 0%, #cff0f8 50%, #e8f8fb 100%);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.section-label.light {
  color: var(--teal-2);
}

.section-label.light::before {
  background: var(--teal-2);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-title.light {
  color: white;
}

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

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 70px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 70px;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid,
  .features-grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
  }
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.15);
  border-bottom-color: var(--teal);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FEATURE CARDS V2
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.feature-card-v2 {
  background: #ffffff;
  padding: 50px 38px;
  border-radius: 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.feature-card-v2::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.feature-card-v2:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.1);
}

.feature-card-v2:hover::before { opacity: 1; }

.feature-card-painless:hover::before { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); }
.feature-card-pricing:hover::before { background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); }
.feature-card-doctors:hover::before { background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%); }
.feature-card-equipment:hover::before { background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%); }

.feature-card-v2 > * {
  position: relative;
  z-index: 2;
}

.feature-icon-v2 {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: var(--teal-pale);
  transition: all 0.5s ease;
}

.feature-card-v2:hover .feature-icon-v2 {
  background: white;
  transform: scale(1.1) rotate(-5deg);
}

.feature-icon-v2 svg {
  width: 40px;
  height: 40px;
  stroke: var(--teal);
  stroke-width: 1.5;
  fill: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-card-dark .feature-title {
  color: var(--navy);
}

.feature-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-card-dark .feature-desc {
  color: var(--muted);
}

.feature-icon-image {
  width: 48px;
  height: 48px;
  display: block;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME PAGE - SERVICES SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services-section {
  padding: 100px 6%;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 70px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 70px;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1200px) {
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid-4 {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
  }
}

.service-card {
  background: white;
  border: 2px solid #f0f4f8;
  padding: 34px 32px;
  border-radius: 16px;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal-pale);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 48px rgba(24, 180, 212, 0.15);
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-bg {
  width: 90px;
  height: 90px;
  background: var(--cream);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.service-card:hover .service-icon-bg {
  transform: scale(1.08) translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
}

.service-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon-img {
  transform: scale(1.15);
}

.service-icon-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 165, 233, 0.1), transparent);
  pointer-events: none;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 108px; /* 4 lines * 1.8 * 15px */
}

.services-cta {
  text-align: center;
  margin-top: 60px;
}


.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
}

.service-link:hover {
  gap: 8px;
  transform: translateX(4px);
}

.services-cta {
  text-align: center;
  margin-top: 70px;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME PAGE - FINAL CTA SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-final-section {
  padding: 50px 6%;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  width: calc(100% - 48px);
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 28px;
}

.cta-final-section.light-blue {
  background: linear-gradient(135deg, #e0f7fc 0%, #cff0f8 50%, #e8f8fb 100%);
}

.cta-final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(24, 180, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(240, 160, 48, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-content {
  width: 100%;
  margin-bottom: 0;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 4px;
}

.cta-final-section.light-blue .cta-title {
  color: var(--navy);
}

.cta-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 10px;
  line-height: 1.8;
}

.cta-final-section.light-blue .cta-subtitle {
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
  margin: 10px auto 14px;
}

.cta-actions .btn {
  border-radius: 28px !important;
  border-top-left-radius: 28px !important;
  border-top-right-radius: 28px !important;
  border-bottom-right-radius: 28px !important;
  border-bottom-left-radius: 28px !important;
  overflow: hidden;
}

.btn-cta-primary {
  background: var(--navy);
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.15);
  min-width: auto;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.25);
  background: rgba(10, 22, 40, 0.95);
}

.btn-cta-secondary {
  background: white;
  color: var(--navy);
  border: 1px solid #ccc;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: auto;
}

.btn-cta-secondary:hover {
  background: #f5f5f5;
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
}

.btn-text {
  display: inline-block;
}

.cta-benefits {
  display: none;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  width: fit-content;
  margin: 0 auto;
}

.cta-benefit-item {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.cta-final-section.light-blue .cta-benefit-item {
  color: var(--navy);
}

@media (max-width: 768px) {
  .cta-final-section {
    width: calc(100% - 24px);
    margin: 20px auto;
    border-radius: 20px;
  }

  .cta-actions {
    margin-top: 24px;
    margin-bottom: 30px;
    gap: 14px;
    width: 100%;
  }

  .cta-actions .btn {
    width: auto;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: min(100%, 340px);
    justify-content: center;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    width: 100%;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpAnim 0.6s ease-out forwards;
}

.reveal.fade-up:nth-child(1) { animation-delay: 0.1s; }
.reveal.fade-up:nth-child(2) { animation-delay: 0.2s; }
.reveal.fade-up:nth-child(3) { animation-delay: 0.3s; }
.reveal.fade-up:nth-child(4) { animation-delay: 0.4s; }
.reveal.fade-up:nth-child(5) { animation-delay: 0.5s; }
.reveal.fade-up:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 6%;
  }

  .about-wrapper {
    gap: 40px;
  }

  .features-grid,
  .services-grid {
    gap: 24px;
  }

  .feature-card,
  .service-card {
    padding: 30px 20px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 14px;
  }

  .cta-actions .btn {
    width: min(100%, 340px);
  }

  .cta-benefits {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.gallery-showcase-overlay{
  position:relative;
  z-index:1;
  margin-top:auto;
  padding:84px 24px 22px;
  background:linear-gradient(180deg,rgba(10,22,40,0) 0%,rgba(10,22,40,.78) 100%);
  text-align:left;
}
.gallery-showcase-overlay .gallery-showcase-title{
  color:white;
  font-size:22px;
}
.gallery-showcase-tag{
  display:inline-flex;
  align-items:center;
  margin-bottom:10px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  color:white;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
}
@media(max-width:980px){
  .gallery-grid-showcase{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media(max-width:720px){
  .gallery-filters{
    gap:10px;
  }
  .gallery-filter{
    padding:12px 18px;
    font-size:14px;
  }
  .gallery-grid-showcase{
    grid-template-columns:1fr;
    gap:18px;
  }
  .gallery-showcase-surface{
    min-height:208px;
    border-radius:24px;
  }
  .gallery-showcase-title{
    font-size:22px;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MODERN CTA CARD (site-wide)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta-modern-section{
  padding: 10px 0 20px;
}
.cta-modern-section .container{
  max-width:1240px;
  margin:0 auto;
  padding:0 6%;
}
.cta-modern-card{
  position:relative;
  overflow:hidden;
  border-radius:40px;
  padding:70px 40px;
  text-align:center;
  background: var(--grad-teal);
  box-shadow: 0 25px 60px -12px rgba(125, 211, 252, 0.4);
}
.cta-modern-card h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(30px,4vw,48px);
  color:white;
  margin-bottom:16px;
}
.cta-modern-card p{
  font-size:18px;
  color:rgba(255,255,255,.85);
  max-width:620px;
  margin:0 auto 36px;
  line-height:1.7;
}
.cta-modern-card .btn-white-solid{
  background:white;
  color:var(--navy);
  border:none;
  padding:16px 42px;
  border-radius:100px;
  font-weight:700;
  font-size:16px;
  cursor:pointer;
  transition:all .3s;
  box-shadow:0 10px 24px rgba(0,0,0,.15);
  display:inline-block;
}
.cta-modern-card .btn-white-solid:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(0,0,0,.22);
}
.cta-modern-card .btn-ghost{
  background:rgba(255,255,255,.12);
  color:white;
  border:1.5px solid rgba(255,255,255,.3);
  padding:14px 32px;
  border-radius:100px;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition:all .3s;
  backdrop-filter:blur(10px);
  display:inline-block;
}
.cta-modern-card .btn-ghost:hover{
  background:rgba(255,255,255,.22);
  border-color:rgba(255,255,255,.6);
}
@media(max-width:640px){
  .cta-modern-card{
    padding:48px 24px;
    border-radius:28px;
  }
  .cta-modern-card h2{font-size:26px}
  .cta-modern-card p{font-size:16px}
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WHY CHOOSE US - MODERN CARDS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.why-choose-section {
  background-color: #f0f9ff;
  padding: 100px 6%;
}

.feature-card-v2 {
  background: #ffffff;
  padding: 50px 38px;
  border-radius: 28px;
  text-align: center;
  border: 1px solid rgba(14, 165, 233, 0.1);
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-card-v2::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.feature-card-v2:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 25px 50px rgba(10, 22, 40, 0.08);
}

.feature-card-v2:hover::before { opacity: 1; }

/* Different Colors for Different Cards on Hover */
.feature-card-painless:hover::before { background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); }
.feature-card-pricing:hover::before { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%); }
.feature-card-doctors:hover::before { background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); }
.feature-card-equipment:hover::before { background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%); }

.feature-card-v2 > * {
  position: relative;
  z-index: 2;
}

.feature-icon-v2 {
  width: 90px;
  height: 90px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* circular for variety */
  background: white;
  transition: all 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow: hidden;
  position: relative;
  border: 4px solid var(--teal-pale);
  box-shadow: 0 10px 25px rgba(10, 22, 40, 0.05);
}

.feature-card-v2:hover .feature-icon-v2 {
  transform: scale(1.1);
  border-color: white;
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.2);
}

.feature-icon-img-v2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-card-v2:hover .feature-icon-img-v2 {
  transform: scale(1.15);
}

.feature-icon-overlay-v2 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 165, 233, 0.15), transparent);
  pointer-events: none;
}

.feature-icon-v2 svg {
  width: 42px;
  height: 42px;
  stroke: var(--teal);
  stroke-width: 1.5;
  fill: none;
}

.feature-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ══════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #25d366;
  border-radius: 50%;
  z-index: -1;
  animation: wa-pulse 2s infinite;
  opacity: 0.7;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 860px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

