/* ═══════════════════════════════════════════
   CSS VARIABLES & RESET
═══════════════════════════════════════════ */
:root{
  --cream:#FAF8F4; --warm:#FDFCFA; --navy:#1A477E;
  --navy-light:#EAF1FA;
  --teal:#1D75BC; --teal2:#5BBBEB; --teal-pale:#E9F2FB;
  --gold:#C9974A; --gold-pale:#FDF4E7;
  --txt:#1A477E; --txt2:#3A5C82; --txt3:#7A8FA8;
  --brd:rgba(26,71,126,0.08);
  --sh:0 4px 32px rgba(26,71,126,0.07);
  --sh2:0 16px 56px rgba(26,71,126,0.14);
  --r:12px; --rl:20px;
  --nav-h:96px;
  --px:5%; /* horizontal page padding */
}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body{font-family:'DM Sans',sans-serif;background:var(--warm);color:var(--txt);overflow-x:hidden;line-height:1.6;-webkit-font-smoothing:antialiased;}
img{max-width:100%;display:block;height:auto;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{cursor:pointer;font-family:'DM Sans',sans-serif;border:none;background:none;}
.page{display:none;}
.page.active{display:block;}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
nav{
  position:fixed;top:0;left:0;right:0;z-index:900;
  height:var(--nav-h);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 var(--px);
  background:rgba(253,252,250,0.96);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--brd);
  border-top:4px solid var(--navy);
  transition:box-shadow .3s;
}
nav.scrolled{box-shadow:var(--sh);}
.nav-logo{display:flex;align-items:center;gap:9px;cursor:pointer;flex-shrink:0;}
.logo-box{height:56px;display:flex;align-items:center;flex-shrink:0;}
.logo-box img{height:100%;width:auto;object-fit:contain;}
.logo-name{font-family:'Cormorant Garamond',serif;font-size:19px;font-weight:600;color:var(--navy);line-height:1;}
.logo-sub{font-size:9px;color:var(--txt3);letter-spacing:1.2px;text-transform:uppercase;}
/* Desktop links */
.nav-links{display:flex;gap:30px;}
.nav-links a{font-size:16px;font-weight:500;color:var(--txt2);transition:color .2s;padding:3px 0;border-bottom:2px solid transparent;white-space:nowrap;}
.nav-links a:hover,.nav-links a.active{color:var(--teal);border-bottom-color:var(--teal);}
.nav-ctas{display:flex;gap:8px;align-items:center;}
.nav-book-btn{padding:15px 26px;border-radius:8px;font-size:14.5px;font-weight:600;background:var(--navy);color:white;transition:all .2s;white-space:nowrap;line-height:1.3;text-align:center;}
.nav-book-btn:hover{background:var(--teal);transform:translateY(-1px);box-shadow:0 4px 16px rgba(26,71,126,.3);}
.btn-ghost{padding:8px 14px;border-radius:7px;font-size:12.5px;font-weight:500;border:1px solid var(--brd);background:transparent;color:var(--txt);transition:all .2s;white-space:nowrap;}
.btn-ghost:hover{border-color:var(--teal);color:var(--teal);}
.btn-fill{padding:9px 16px;border-radius:7px;font-size:12.5px;font-weight:500;background:var(--teal);color:white;transition:all .2s;white-space:nowrap;}
.btn-fill:hover{background:var(--teal2);transform:translateY(-1px);box-shadow:0 4px 16px rgba(26,122,110,.3);}
/* Hamburger */
.nav-hamburger{display:none;flex-direction:column;gap:5px;padding:6px;cursor:pointer;background:none;border:none;}
.nav-hamburger span{display:block;width:22px;height:2px;background:var(--navy);border-radius:2px;transition:all .3s;}
/* Mobile drawer */
.mobile-nav{
  display:none;position:fixed;top:var(--nav-h);left:0;right:0;z-index:800;
  background:var(--warm);border-bottom:1px solid var(--brd);
  flex-direction:column;padding:16px var(--px) 24px;gap:4px;
  box-shadow:0 8px 32px rgba(26,71,126,.1);
}
.mobile-nav.open{display:flex;}
.mobile-nav a{padding:12px 0;font-size:15px;color:var(--txt2);border-bottom:1px solid var(--brd);font-weight:500;transition:color .2s;}
.mobile-nav a:last-of-type{border-bottom:none;}
.mobile-nav a:hover,.mobile-nav a.active{color:var(--teal);}
.mobile-nav-ctas{display:flex;gap:10px;margin-top:12px;flex-wrap:wrap;}
.mobile-nav-ctas button{flex:1;min-width:120px;padding:12px;border-radius:8px;font-size:14px;font-weight:600;}

/* ═══════════════════════════════════════════
   COMMON
═══════════════════════════════════════════ */
section{padding:70px var(--px);}
.sec-lbl{display:block;font-size:10px;letter-spacing:3px;text-transform:uppercase;color:var(--teal);font-weight:600;margin-bottom:12px;}
h2.sec-h{font-family:'Cormorant Garamond',serif;font-size:clamp(28px,5vw,48px);font-weight:400;color:var(--navy);line-height:1.15;margin-bottom:14px;}
h2.sec-h em{font-style:italic;color:var(--teal);}
.sec-sub{font-size:15px;color:var(--txt2);line-height:1.75;font-weight:300;}
/* CTA Buttons */
.btn-cta{display:inline-flex;align-items:center;gap:8px;padding:13px 24px;border-radius:10px;font-family:'DM Sans',sans-serif;font-size:14px;font-weight:500;transition:all .25s;cursor:pointer;border:none;}
.bh-green{background:var(--teal);color:white;}
.bh-green:hover{background:var(--teal2);transform:translateY(-2px);box-shadow:0 8px 24px rgba(26,122,110,.3);}
.bh-outline{background:transparent;color:var(--navy);border:1.5px solid rgba(26,71,126,.18);}
.bh-outline:hover{border-color:var(--teal);color:var(--teal);}
.bh-wa{background:#25D366;color:white;}
.bh-wa:hover{background:#1eb856;transform:translateY(-2px);box-shadow:0 8px 24px rgba(37,211,102,.28);}
/* Scroll reveal */
.rv{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease;}
.rl{opacity:0;transform:translateX(-24px);transition:opacity .6s ease,transform .6s ease;}
.rr{opacity:0;transform:translateX(24px);transition:opacity .6s ease,transform .6s ease;}
.rv.in,.rl.in,.rr.in{opacity:1;transform:none;}
.d1{transition-delay:.05s}.d2{transition-delay:.11s}.d3{transition-delay:.17s}
.d4{transition-delay:.23s}.d5{transition-delay:.29s}.d6{transition-delay:.35s}
.d7{transition-delay:.41s}.d8{transition-delay:.47s}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero{
  min-height:100svh;padding-top:var(--nav-h);
  display:grid;grid-template-columns:1fr 1fr;
  background:var(--cream);overflow:hidden;
}
.hero-left{
  padding:60px var(--px) 60px var(--px);
  display:flex;flex-direction:column;justify-content:center;
}
.hero-badge{
  display:inline-flex;align-items:center;gap:7px;
  padding:6px 14px;border-radius:50px;
  background:var(--teal-pale);border:1px solid rgba(26,122,110,.2);
  font-size:11.5px;font-weight:500;color:var(--teal);
  margin-bottom:22px;width:fit-content;
  animation:fsu .7s ease both;
}
.badge-dot{width:6px;height:6px;border-radius:50%;background:var(--teal);flex-shrink:0;}
h1.hero-h{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(34px,4.2vw,60px);line-height:1.1;font-weight:400;
  color:var(--navy);margin-bottom:16px;
  animation:fsu .7s .1s ease both;
}
h1.hero-h em{font-style:italic;color:var(--teal);}
.hero-sub{
  font-size:15px;color:var(--txt2);line-height:1.75;font-weight:300;
  max-width:440px;margin-bottom:28px;
  animation:fsu .7s .2s ease both;
}
.hero-ctas{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:32px;animation:fsu .7s .3s ease both;}
.trust-row{display:flex;gap:8px;flex-wrap:wrap;animation:fsu .7s .4s ease both;}
.t-pill{
  display:flex;align-items:center;gap:6px;
  padding:6px 12px;border-radius:50px;
  background:white;border:1px solid var(--brd);
  font-size:11.5px;font-weight:500;color:var(--txt2);box-shadow:var(--sh);
}
.t-pill svg{width:12px;height:12px;stroke:var(--teal);fill:none;stroke-width:2;flex-shrink:0;}
/* Hero Right */
.hero-right{position:relative;overflow:hidden;background:var(--navy);display:flex;align-items:center;justify-content:center;}
.hero-main-img{width:100%;height:100%;object-fit:contain;object-position:center;min-height:500px;}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,var(--cream) 0%,transparent 20%,transparent 80%,rgba(26,71,126,.2) 100%);}
.hero-overlay2{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,71,126,.5) 0%,transparent 50%);}
.fc-avail{position:absolute;top:20px;left:20px;background:var(--teal);border-radius:9px;padding:7px 12px;display:flex;align-items:center;gap:7px;}
.fc-avail-dot{width:7px;height:7px;border-radius:50%;background:#4ade80;animation:blink 1.6s infinite;}
.fc-avail-txt{font-size:11px;font-weight:600;color:white;}
.fc-dr{position:absolute;bottom:20px;left:20px;background:rgba(253,252,250,.97);backdrop-filter:blur(12px);border-radius:12px;padding:12px 16px;min-width:190px;box-shadow:var(--sh2);border:1px solid var(--brd);}
.fc-dr-name{font-size:13px;font-weight:600;color:var(--navy);}
.fc-dr-sub{font-size:11px;color:var(--txt3);margin-top:2px;}
.fc-dr-badge{margin-top:7px;display:inline-flex;align-items:center;gap:4px;background:var(--teal-pale);padding:3px 9px;border-radius:20px;font-size:10px;color:var(--teal);font-weight:600;}
.fc-rating{position:absolute;top:20px;right:20px;background:rgba(253,252,250,.97);backdrop-filter:blur(12px);border-radius:12px;padding:12px 16px;text-align:center;box-shadow:var(--sh2);border:1px solid var(--brd);}
.fc-rating-num{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:600;color:var(--navy);line-height:1;}
.fc-rating-stars{color:var(--gold);font-size:14px;letter-spacing:1px;margin-top:2px;}
.fc-rating-lbl{font-size:10px;color:var(--txt3);margin-top:3px;}

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar{background:var(--navy);padding:28px var(--px);display:grid;grid-template-columns:repeat(4,1fr);gap:0;}
.stat-item{text-align:center;padding:0 10px;border-right:1px solid rgba(255,255,255,.08);opacity:0;transform:translateY(16px);transition:all .5s ease;}
.stat-item.vis{opacity:1;transform:translateY(0);}
.stat-item:last-child{border-right:none;}
.sn{font-family:'Cormorant Garamond',serif;font-size:40px;font-weight:300;color:white;line-height:1;}
.sn span{color:var(--teal2);}
.sl{font-size:10px;color:rgba(255,255,255,.45);letter-spacing:1.5px;text-transform:uppercase;margin-top:5px;}

/* ═══════════════════════════════════════════
   ABOUT GRID
═══════════════════════════════════════════ */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;}
.about-img-wrap{position:relative;}
.about-img-main{width:100%;height:480px;object-fit:cover;object-position:top center;border-radius:var(--rl);}
.about-badge{position:absolute;bottom:20px;right:-16px;background:var(--navy);color:white;padding:14px 18px;border-radius:12px;box-shadow:var(--sh2);}
.ab-num{font-family:'Cormorant Garamond',serif;font-size:34px;font-weight:300;line-height:1;}
.ab-lbl{font-size:9px;opacity:.55;letter-spacing:1.5px;text-transform:uppercase;margin-top:4px;}
.qual-list{margin-bottom:26px;}
.qual-list li{display:flex;align-items:flex-start;gap:10px;padding:9px 0;border-bottom:1px solid var(--brd);font-size:13.5px;color:var(--txt2);}
.qual-list li:last-child{border-bottom:none;}
.qdot{width:6px;height:6px;border-radius:50%;background:var(--teal);flex-shrink:0;margin-top:6px;}
.about-nums{display:flex;gap:24px;}
.an-n{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:400;color:var(--teal);}
.an-l{font-size:10px;color:var(--txt3);text-transform:uppercase;letter-spacing:1px;margin-top:2px;}

/* ═══════════════════════════════════════════
   DR PHOTO (from SGRH)
═══════════════════════════════════════════ */
.dr-photo-sgrh{width:100%;height:100%;object-fit:cover;object-position:top center;}

/* DR STRIP */
.dr-strip{display:grid;grid-template-columns:1fr 1fr;min-height:500px;overflow:hidden;background:linear-gradient(135deg,var(--teal) 0%,#0F2D52 100%);}
.dr-img-col{position:relative;overflow:hidden;}
.dr-img-col img{width:100%;height:100%;object-fit:cover;object-position:top center;}
.dr-img-ov{position:absolute;inset:0;background:linear-gradient(to right,transparent 55%,rgba(15,45,82,.5) 100%);}
.dr-content{padding:50px var(--px);display:flex;flex-direction:column;justify-content:center;}
.dr-content .sec-lbl{color:rgba(255,255,255,.6);}
.dr-content h2{font-family:'Cormorant Garamond',serif;font-size:clamp(26px,3.2vw,44px);font-weight:400;color:white;line-height:1.15;margin-bottom:12px;}
.dr-content h2 em{font-style:italic;opacity:.8;}
.dr-content p{font-size:14px;color:rgba(255,255,255,.75);line-height:1.75;font-weight:300;margin-bottom:22px;}
.cert-pills{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:26px;}
.cert-pill{padding:5px 12px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);border-radius:50px;font-size:11px;color:rgba(255,255,255,.9);}
.btn-dr{padding:12px 22px;border-radius:9px;background:white;color:var(--teal);font-family:'DM Sans',sans-serif;font-size:13px;font-weight:600;border:none;transition:all .2s;width:fit-content;cursor:pointer;}
.btn-dr:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.15);}

/* ═══════════════════════════════════════════
   SERVICES GRID
═══════════════════════════════════════════ */
.svc-bg{background:var(--cream);}
.svc-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:40px;flex-wrap:wrap;gap:16px;}
.svc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;}
.sc{background:white;border-radius:var(--rl);overflow:hidden;border:1px solid var(--brd);transition:all .3s ease;}
.sc:hover{transform:translateY(-5px);box-shadow:var(--sh2);}
.sc-img{height:160px;overflow:hidden;position:relative;}
.sc-img img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .5s ease;}
.sc:hover .sc-img img{transform:scale(1.07);}
.sc-img-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,71,126,.4) 0%,transparent 60%);opacity:0;transition:opacity .3s;}
.sc:hover .sc-img-ov{opacity:1;}
.sc-body{padding:16px 14px;}
.sc-icon-wrap{width:36px;height:36px;border-radius:9px;background:var(--teal-pale);display:flex;align-items:center;justify-content:center;margin-bottom:10px;transition:background .3s;}
.sc:hover .sc-icon-wrap{background:var(--teal);}
.sc-icon-wrap svg{width:18px;height:18px;stroke:var(--teal);fill:none;stroke-width:1.5;transition:stroke .3s;}
.sc:hover .sc-icon-wrap svg{stroke:white;}
.sc-title{font-family:'Cormorant Garamond',serif;font-size:16px;font-weight:600;color:var(--navy);margin-bottom:4px;line-height:1.25;}
.sc-desc{font-size:12px;color:var(--txt2);line-height:1.55;margin-bottom:10px;}
.sc-lnk{font-size:11.5px;font-weight:600;color:var(--teal);display:inline-flex;align-items:center;gap:4px;cursor:pointer;}
.sc-lnk svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2.5;}

/* ═══════════════════════════════════════════
   WHY CHOOSE
═══════════════════════════════════════════ */
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:44px;}
.wc{padding:24px 20px;border-radius:var(--rl);border:1px solid var(--brd);background:white;transition:all .3s;}
.wc:hover{border-color:var(--teal);transform:translateY(-3px);box-shadow:var(--sh);}
.wi{width:40px;height:40px;border-radius:10px;background:var(--teal-pale);display:flex;align-items:center;justify-content:center;margin-bottom:14px;transition:all .3s;}
.wi svg{width:20px;height:20px;stroke:var(--teal);fill:none;stroke-width:1.5;transition:stroke .3s;}
.wc:hover .wi{background:var(--teal);}
.wc:hover .wi svg{stroke:white;}
.wc-t{font-size:14px;font-weight:600;color:var(--navy);margin-bottom:5px;}
.wc-d{font-size:12.5px;color:var(--txt2);line-height:1.6;}

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gal-sec{background:var(--navy);padding:70px var(--px);}
.gal-head{display:flex;justify-content:space-between;align-items:flex-end;margin-bottom:36px;flex-wrap:wrap;gap:16px;}
.gal-tags{display:flex;gap:7px;flex-wrap:wrap;}
.gtag{padding:5px 12px;border-radius:50px;font-size:11px;font-weight:500;border:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.65);background:transparent;transition:all .2s;cursor:pointer;}
.gtag.active,.gtag:hover{background:var(--teal);border-color:var(--teal);color:white;}
.gal-grid{display:grid;grid-template-columns:2fr 1fr 1fr;grid-template-rows:240px 240px;gap:12px;}
.gi{border-radius:var(--r);overflow:hidden;position:relative;cursor:pointer;}
.gi img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.gi:hover img{transform:scale(1.05);}
.gi-ov{position:absolute;inset:0;background:linear-gradient(to top,rgba(26,71,126,.6) 0%,transparent 55%);}
.gi-lbl{position:absolute;bottom:12px;left:12px;background:rgba(0,0,0,.45);backdrop-filter:blur(6px);padding:4px 10px;border-radius:50px;font-size:10.5px;color:white;letter-spacing:.3px;}
.gi:first-child{grid-row:span 2;}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-bg{background:var(--gold-pale);}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:44px;}
.tc{background:white;border-radius:var(--rl);padding:22px 20px;border:1px solid var(--brd);}
.tq{font-size:44px;color:var(--teal);opacity:.18;font-family:Georgia,serif;line-height:.7;margin-bottom:9px;}
.tstars{color:var(--gold);font-size:12px;letter-spacing:1px;margin-bottom:9px;}
.ttxt{font-size:13.5px;color:var(--txt2);line-height:1.7;font-style:italic;margin-bottom:16px;}
.tftr{display:flex;align-items:center;gap:10px;}
.tava-ph{width:38px;height:38px;border-radius:50%;background:var(--teal-pale);display:flex;align-items:center;justify-content:center;font-weight:600;font-size:12px;color:var(--teal);flex-shrink:0;}
.tn{font-size:13.5px;font-weight:600;color:var(--navy);}
.tr{font-size:11.5px;color:var(--txt3);}

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:44px;}
.bc{border-radius:var(--rl);overflow:hidden;border:1px solid var(--brd);background:white;transition:all .3s;cursor:pointer;}
.bc:hover{transform:translateY(-4px);box-shadow:var(--sh2);}
.bc-img{height:180px;overflow:hidden;}
.bc-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.bc:hover .bc-img img{transform:scale(1.05);}
.bc-body{padding:18px 16px;}
.bc-cat{font-size:10.5px;font-weight:600;color:var(--teal);text-transform:uppercase;letter-spacing:1px;margin-bottom:7px;}
.bc-title{font-family:'Cormorant Garamond',serif;font-size:18px;font-weight:600;color:var(--navy);line-height:1.3;margin-bottom:7px;}
.bc-exc{font-size:12.5px;color:var(--txt2);line-height:1.6;margin-bottom:12px;}
.bc-meta{display:flex;gap:12px;font-size:11px;color:var(--txt3);}

/* ═══════════════════════════════════════════
   BOOKING CTA STRIP
═══════════════════════════════════════════ */
.book-strip{background:linear-gradient(135deg,var(--teal) 0%,#0F2D52 100%);padding:70px var(--px);text-align:center;}
.book-strip .sec-lbl{color:rgba(255,255,255,.6);}
.book-strip h2{font-family:'Cormorant Garamond',serif;font-size:clamp(28px,4vw,46px);font-weight:400;color:white;margin-bottom:12px;}
.book-strip p{color:rgba(255,255,255,.75);font-size:15px;font-weight:300;margin-bottom:28px;max-width:520px;margin-left:auto;margin-right:auto;}
.book-ctas{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;}
.btn-bk{padding:12px 24px;border-radius:9px;font-family:'DM Sans',sans-serif;font-size:14px;font-weight:500;display:inline-flex;align-items:center;gap:8px;transition:all .25s;cursor:pointer;}
.btn-bk-w{background:white;color:var(--teal);border:none;}
.btn-bk-w:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(0,0,0,.15);}
.btn-bk-o{background:transparent;color:white;border:2px solid rgba(255,255,255,.35);}
.btn-bk-o:hover{border-color:white;background:rgba(255,255,255,.1);}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact-bg{background:var(--cream);}
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:48px;align-items:start;margin-top:40px;}
.cd{display:flex;align-items:flex-start;gap:12px;padding:13px 0;border-bottom:1px solid var(--brd);}
.cd.no-border{border-bottom:none;}
.cd-ico{width:38px;height:38px;border-radius:9px;background:var(--teal-pale);display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.cd-ico svg{width:16px;height:16px;stroke:var(--teal);fill:none;stroke-width:1.5;}
.cd-lbl{font-size:10px;color:var(--txt3);text-transform:uppercase;letter-spacing:1px;}
.cd-val{font-size:13.5px;color:var(--txt);font-weight:500;margin-top:2px;line-height:1.6;}
.map-tabs{display:flex;gap:8px;margin-bottom:14px;}
.map-tab{padding:7px 16px;border-radius:7px;font-size:12.5px;font-weight:500;border:1px solid var(--brd);background:white;color:var(--txt2);cursor:pointer;transition:all .2s;}
.map-tab.active{background:var(--teal);color:white;border-color:var(--teal);}
.map-wrap{border-radius:var(--rl);overflow:hidden;height:360px;}
.map-wrap iframe{width:100%;height:100%;border:0;display:block;}

/* ═══════════════════════════════════════════
   PAGE HEROES
═══════════════════════════════════════════ */
.page-hero{padding:calc(var(--nav-h) + 60px) var(--px) 60px;background:var(--cream);text-align:center;}
.page-hero h1{font-family:'Cormorant Garamond',serif;font-size:clamp(36px,5vw,62px);font-weight:400;color:var(--navy);margin-bottom:14px;}
.page-hero h1 em{font-style:italic;color:var(--teal);}
.page-hero p{font-size:16px;color:var(--txt2);font-weight:300;max-width:560px;margin:0 auto;}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-page-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:start;margin-bottom:60px;}
.about-big-img{width:100%;height:540px;object-fit:cover;object-position:top center;border-radius:var(--rl);}
.timeline-item{display:flex;gap:18px;padding:18px 0;border-bottom:1px solid var(--brd);}
.timeline-item:last-child{border-bottom:none;}
.tl-yr{font-family:'Cormorant Garamond',serif;font-size:26px;font-weight:300;color:var(--teal);min-width:64px;}
.tl-body h4{font-size:14px;font-weight:600;color:var(--navy);margin-bottom:4px;}
.tl-body p{font-size:13px;color:var(--txt2);line-height:1.65;}
.awards-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:44px;}
.award-card{padding:22px 18px;border-radius:var(--rl);border:1px solid var(--brd);background:white;text-align:center;transition:all .3s;}
.award-card:hover{border-color:var(--teal);box-shadow:var(--sh);}
.award-icon{font-size:32px;margin-bottom:10px;}
.award-title{font-size:14px;font-weight:600;color:var(--navy);margin-bottom:5px;}
.award-desc{font-size:12px;color:var(--txt3);line-height:1.6;}

/* ═══════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════ */
.svc-full-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;}
.svc-detail-card{display:grid;grid-template-columns:260px 1fr;border-radius:var(--rl);overflow:hidden;border:1px solid var(--brd);background:white;transition:all .3s;}
.svc-detail-card:hover{box-shadow:var(--sh2);transform:translateY(-4px);}
.svc-detail-img{overflow:hidden;min-height:220px;}
.svc-detail-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.svc-detail-card:hover .svc-detail-img img{transform:scale(1.05);}
.svc-detail-body{padding:24px 22px;display:flex;flex-direction:column;justify-content:space-between;}
.svc-detail-body h3{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:600;color:var(--navy);margin-bottom:8px;}
.svc-detail-body p{font-size:13.5px;color:var(--txt2);line-height:1.7;margin-bottom:14px;}
.svc-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:16px;}
.svc-tag{padding:3px 10px;background:var(--teal-pale);border-radius:50px;font-size:11px;color:var(--teal);font-weight:500;}
.btn-svc{padding:9px 18px;background:var(--teal);color:white;border:none;border-radius:7px;font-family:'DM Sans',sans-serif;font-size:13px;font-weight:500;transition:all .2s;width:fit-content;cursor:pointer;}
.btn-svc:hover{background:var(--teal2);transform:translateY(-1px);}

/* ═══════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════ */
.blog-page-grid{display:grid;grid-template-columns:1fr 300px;gap:40px;}
.blog-full-list{display:flex;flex-direction:column;gap:22px;}
.blog-full-card{display:grid;grid-template-columns:240px 1fr;border-radius:var(--rl);overflow:hidden;border:1px solid var(--brd);background:white;transition:all .3s;}
.blog-full-card:hover{transform:translateY(-4px);box-shadow:var(--sh2);}
.bfc-img{overflow:hidden;}
.bfc-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s;}
.blog-full-card:hover .bfc-img img{transform:scale(1.05);}
.bfc-body{padding:20px;display:flex;flex-direction:column;justify-content:space-between;}
.bfc-cat{font-size:10.5px;font-weight:600;color:var(--teal);text-transform:uppercase;letter-spacing:1px;margin-bottom:7px;}
.bfc-title{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:600;color:var(--navy);line-height:1.3;margin-bottom:8px;}
.bfc-exc{font-size:13px;color:var(--txt2);line-height:1.65;margin-bottom:12px;}
.bfc-meta{display:flex;gap:14px;font-size:11.5px;color:var(--txt3);}
.bfc-read{font-size:13px;font-weight:600;color:var(--teal);display:inline-flex;align-items:center;gap:4px;}
.sidebar{display:flex;flex-direction:column;gap:18px;}
.sidebar-card{background:white;border-radius:var(--rl);border:1px solid var(--brd);padding:18px 16px;}
.sidebar-card h4{font-size:13px;font-weight:600;color:var(--navy);margin-bottom:12px;padding-bottom:9px;border-bottom:1px solid var(--brd);}
.recent-post{display:flex;gap:10px;padding:9px 0;border-bottom:1px solid var(--brd);cursor:pointer;}
.recent-post:last-child{border-bottom:none;padding-bottom:0;}
.recent-post:hover .rp-title{color:var(--teal);}
.rp-img{width:50px;height:50px;border-radius:7px;overflow:hidden;flex-shrink:0;}
.rp-img img{width:100%;height:100%;object-fit:cover;}
.rp-title{font-size:12px;font-weight:500;color:var(--navy);line-height:1.4;margin-bottom:3px;transition:color .2s;}
.rp-date{font-size:11px;color:var(--txt3);}
.cat-list li{padding:7px 0;border-bottom:1px solid var(--brd);display:flex;justify-content:space-between;align-items:center;font-size:13px;color:var(--txt2);cursor:pointer;transition:color .2s;}
.cat-list li:last-child{border-bottom:none;padding-bottom:0;}
.cat-list li:hover{color:var(--teal);}
.cat-count{background:var(--teal-pale);color:var(--teal);font-size:10.5px;font-weight:600;padding:2px 7px;border-radius:20px;}
.cta-sidebar{background:linear-gradient(135deg,var(--teal),#0F2D52);padding:20px 16px;border-radius:var(--rl);text-align:center;}
.cta-sidebar h4{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:400;color:white;margin-bottom:8px;}
.cta-sidebar p{font-size:12.5px;color:rgba(255,255,255,.75);margin-bottom:14px;line-height:1.6;}
.btn-cta-sb{padding:10px 18px;border-radius:7px;background:white;color:var(--teal);border:none;font-family:'DM Sans',sans-serif;font-size:13px;font-weight:600;cursor:pointer;transition:all .2s;}
.btn-cta-sb:hover{transform:translateY(-1px);box-shadow:0 5px 14px rgba(0,0,0,.12);}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer{background:var(--navy-light);padding:52px var(--px) 24px;}
.ft{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;margin-bottom:36px;}
.ft-logo img{height:40px;object-fit:contain;}
.ft-about{font-size:12.5px;color:var(--txt2);line-height:1.8;margin-top:10px;max-width:250px;}
.f-social{display:flex;gap:8px;margin-top:16px;}
.fsoc{width:33px;height:33px;border-radius:7px;background:rgba(26,71,126,.06);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .2s;border:1px solid rgba(26,71,126,.12);}
.fsoc:hover{background:var(--teal);border-color:var(--teal);}
.fsoc svg{width:14px;height:14px;fill:var(--navy);transition:fill .2s;}
.fsoc:hover svg{fill:white;}
.fc-h{font-size:11px;font-weight:600;color:var(--navy);letter-spacing:.5px;margin-bottom:12px;text-transform:uppercase;}
.fl li{padding:4px 0;}
.fl a{font-size:12.5px;color:var(--txt2);transition:color .2s;}
.fl a:hover{color:var(--teal);}
.fb{border-top:1px solid rgba(26,71,126,.1);padding-top:18px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;}
.fb-copy{font-size:11.5px;color:var(--txt3);}
.fb-schema{font-size:10.5px;color:rgba(26,71,126,.3);}

/* ═══════════════════════════════════════════
   STICKY BUTTONS
═══════════════════════════════════════════ */
.sticky-wa{position:fixed;bottom:22px;right:20px;z-index:700;width:52px;height:52px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;border:none;box-shadow:0 6px 22px rgba(37,211,102,.4);transition:all .2s;animation:pulseWA 2.5s infinite;}
.sticky-wa:hover{transform:scale(1.1);}
.sticky-wa svg{width:24px;height:24px;fill:white;}
.sticky-call{position:fixed;bottom:86px;right:20px;z-index:700;width:44px;height:44px;border-radius:50%;background:var(--teal);display:flex;align-items:center;justify-content:center;border:none;box-shadow:0 5px 18px rgba(26,122,110,.35);transition:all .2s;}
.sticky-call:hover{transform:scale(1.1);background:var(--teal2);}
.sticky-call svg{width:20px;height:20px;stroke:white;fill:none;stroke-width:2;}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fsu{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}
@keyframes fsr{from{opacity:0;transform:translateX(28px)}to{opacity:1;transform:none}}
@keyframes pulseWA{0%,100%{box-shadow:0 6px 22px rgba(37,211,102,.4)}50%{box-shadow:0 6px 28px rgba(37,211,102,.65),0 0 0 8px rgba(37,211,102,.1)}}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.3}}

/* ═══════════════════════════════════════════
   MOBILE — ≤ 768px
═══════════════════════════════════════════ */
@media(max-width:768px){
  :root{--px:4%;}

  /* NAV */
  .nav-links,.nav-ctas{display:none;}
  .nav-hamburger{display:flex;}

  /* HERO — stacked */
  .hero{grid-template-columns:1fr;min-height:auto;}
  .hero-left{padding:48px var(--px) 36px;order:1;}
  .hero-right{order:2;height:300px;min-height:300px;}
  .hero-main-img{min-height:300px;height:300px;}
  .hero-overlay{background:linear-gradient(to bottom,var(--cream) 0%,transparent 15%);}
  .hero-badge{font-size:10.5px;padding:5px 12px;}
  h1.hero-h{font-size:clamp(30px,8vw,42px);}
  .hero-sub{font-size:14px;max-width:100%;}
  .hero-ctas{gap:8px;}
  .btn-cta{padding:11px 18px;font-size:13.5px;}
  .trust-row{gap:6px;}
  .t-pill{font-size:11px;padding:5px 10px;}
  .fc-avail,.fc-dr,.fc-rating{display:none;}

  /* STATS */
  .stats-bar{grid-template-columns:repeat(2,1fr);gap:0;}
  .stat-item{padding:14px 8px;border-right:1px solid rgba(255,255,255,.08);}
  .stat-item:nth-child(2){border-right:none;}
  .stat-item:nth-child(3){border-top:1px solid rgba(255,255,255,.08);border-right:1px solid rgba(255,255,255,.08);}
  .stat-item:nth-child(4){border-top:1px solid rgba(255,255,255,.08);border-right:none;}
  .sn{font-size:32px;}

  /* ABOUT */
  .about-grid{grid-template-columns:1fr;gap:32px;}
  .about-img-wrap .rl{order:1;}
  .about-grid > .rr{order:2;}
  .about-img-main{height:320px;}
  .about-badge{right:10px;bottom:10px;padding:10px 14px;}
  .ab-num{font-size:28px;}

  /* SERVICES HOME */
  .svc-head{flex-direction:column;align-items:flex-start;gap:12px;}
  .svc-grid{grid-template-columns:1fr 1fr;gap:12px;}
  .sc-img{height:130px;}
  .sc-title{font-size:14px;}
  .sc-desc{display:none;}

  /* WHY */
  .why-grid{grid-template-columns:1fr;gap:12px;margin-top:32px;}

  /* DR STRIP */
  .dr-strip{grid-template-columns:1fr;}
  .dr-img-col{height:280px;}
  .dr-img-col img{height:280px;}
  .dr-img-ov{background:none;}
  .dr-content{padding:32px var(--px);}
  .dr-content h2{font-size:clamp(24px,6vw,36px);}
  .cert-pills{gap:7px;}
  .cert-pill{font-size:10.5px;padding:4px 10px;}

  /* GALLERY */
  .gal-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto;gap:10px;}
  .gi{height:160px;}
  .gi:first-child{grid-row:span 1;grid-column:span 2;height:200px;}
  .gal-head{flex-direction:column;align-items:flex-start;gap:12px;}

  /* TESTIMONIALS */
  .testi-grid{grid-template-columns:1fr;gap:14px;margin-top:32px;}

  /* BLOG */
  .blog-grid{grid-template-columns:1fr;gap:16px;margin-top:32px;}
  .bc-img{height:160px;}

  /* BOOK STRIP */
  .book-strip{padding:52px var(--px);}
  .book-ctas{flex-direction:column;align-items:center;}
  .btn-bk{width:100%;max-width:320px;justify-content:center;}

  /* CONTACT */
  .contact-grid{grid-template-columns:1fr;gap:28px;}
  .map-wrap{height:280px;}

  /* PAGE HERO */
  .page-hero{padding:calc(var(--nav-h) + 36px) var(--px) 40px;}
  .page-hero h1{font-size:clamp(30px,7vw,48px);}
  .page-hero p{font-size:14px;}

  /* ABOUT PAGE */
  .about-page-grid{grid-template-columns:1fr;gap:32px;}
  .about-big-img{height:300px;}
  .awards-grid{grid-template-columns:1fr 1fr;gap:12px;}
  .award-card{padding:18px 14px;}

  /* SERVICES PAGE */
  .svc-full-grid{grid-template-columns:1fr;gap:16px;}
  .svc-detail-card{grid-template-columns:1fr;}
  .svc-detail-img{min-height:180px;height:180px;}

  /* BLOG PAGE */
  .blog-page-grid{grid-template-columns:1fr;gap:28px;}
  .blog-full-card{grid-template-columns:1fr;}
  .bfc-img{height:170px;}
  .sidebar{gap:14px;}

  /* FOOTER */
  .ft{grid-template-columns:1fr 1fr;gap:28px;}
  .ft>div:first-child{grid-column:1/-1;}
  .ft-about{max-width:100%;}
  .fb{flex-direction:column;gap:6px;text-align:center;}

  /* STICKY — smaller on mobile */
  .sticky-wa{width:48px;height:48px;bottom:18px;right:16px;}
  .sticky-call{width:40px;height:40px;bottom:78px;right:16px;}

  /* SECTIONS spacing */
  section{padding:52px var(--px);}
  .gal-sec{padding:52px var(--px);}
}

/* ═══════════════════════════════════════════
   TABLET — 769–1024px
═══════════════════════════════════════════ */
@media(min-width:769px) and (max-width:1024px){
  .nav-links{gap:18px;}
  .nav-links a{font-size:14px;}
  .svc-grid{grid-template-columns:repeat(2,1fr);}
  .testi-grid{grid-template-columns:repeat(2,1fr);}
  .gal-grid{grid-template-columns:1fr 1fr;grid-template-rows:auto;}
  .gi:first-child{grid-row:span 1;grid-column:span 2;height:220px;}
  .gi{height:170px;}
  .about-page-grid{gap:40px;}
  .svc-full-grid{grid-template-columns:1fr;}
  .svc-detail-card{grid-template-columns:220px 1fr;}
  .blog-page-grid{grid-template-columns:1fr 260px;}
  .ft{grid-template-columns:1fr 1fr;gap:32px;}
  .ft>div:first-child{grid-column:1/-1;}
  .awards-grid{grid-template-columns:repeat(2,1fr);}
  .why-grid{grid-template-columns:repeat(2,1fr);}
}

/* WordPress body class conflict fix */
body.dentalpeace-claude-homepage.page,
body.dentalpeace-claude-homepage {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Keep only the active internal page visible */
body.dentalpeace-claude-homepage > .page {
    display: none !important;
}

body.dentalpeace-claude-homepage > .page.active,
body.dentalpeace-claude-homepage > #page-home {
    display: block !important;
}

/* Animation fallback fix */
body.dentalpeace-claude-homepage .rv,
body.dentalpeace-claude-homepage .rl,
body.dentalpeace-claude-homepage .rr {
    opacity: 1 !important;
    transform: none !important;
}

/* Header correction for WordPress + Elementor environment */
body.dentalpeace-claude-homepage nav#nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: var(--nav-h) !important;
    min-height: var(--nav-h) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 var(--px) !important;
    background: rgba(253,252,250,0.96) !important;
    border-top: 4px solid var(--navy) !important;
    border-bottom: 1px solid var(--brd) !important;
    z-index: 9999 !important;
    overflow: visible !important;
}

body.admin-bar.dentalpeace-claude-homepage nav#nav {
    top: 32px !important;
}

body.admin-bar.dentalpeace-claude-homepage .mobile-nav {
    top: calc(var(--nav-h) + 32px) !important;
}

body.dentalpeace-claude-homepage .nav-logo,
body.dentalpeace-claude-homepage .logo-box {
    display: flex !important;
    align-items: center !important;
    height: 56px !important;
    overflow: visible !important;
}

body.dentalpeace-claude-homepage .logo-box img {
    height: 56px !important;
    width: auto !important;
    max-height: 56px !important;
    object-fit: contain !important;
}

body.dentalpeace-claude-homepage .nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
}

body.dentalpeace-claude-homepage .nav-links a {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--txt2) !important;
    line-height: 1.3 !important;
    padding: 3px 0 !important;
    border-bottom: 2px solid transparent !important;
    background: transparent !important;
}

body.dentalpeace-claude-homepage .nav-links a:hover,
body.dentalpeace-claude-homepage .nav-links a.active {
    color: var(--teal) !important;
    border-bottom-color: var(--teal) !important;
}

body.dentalpeace-claude-homepage .nav-ctas {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

body.dentalpeace-claude-homepage .nav-book-btn {
    width: auto !important;
    height: auto !important;
    min-width: 148px !important;
    min-height: auto !important;
    max-width: none !important;
    border-radius: 8px !important;
    padding: 15px 26px !important;
    background: var(--navy) !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    text-align: center !important;
    border: none !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

body.dentalpeace-claude-homepage .nav-book-btn:hover {
    background: var(--teal) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(26,71,126,.3) !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar.dentalpeace-claude-homepage nav#nav {
        top: 46px !important;
    }

    body.admin-bar.dentalpeace-claude-homepage .mobile-nav {
        top: calc(var(--nav-h) + 46px) !important;
    }
}

@media(max-width:768px) {
    body.dentalpeace-claude-homepage .nav-links,
    body.dentalpeace-claude-homepage .nav-ctas {
        display: none !important;
    }

    body.dentalpeace-claude-homepage .nav-hamburger {
        display: flex !important;
    }
}
