/* =========================================================
   SAMPAX HEALTH 911 — Website Stylesheet
   Brand colours (client supplied):
   Blue    #315bfa   Yellow #fae031   Pink #e22457
   LtBlue  #0986c0   White  #fefefe
   ========================================================= */

:root{
  --blue: #315bfa;
  --blue-dark: #17287a;
  --blue-deep: #0a1440;
  --yellow: #fae031;
  --pink: #e22457;
  --ltblue: #0986c0;
  --white: #fefefe;
  --ink: #10152b;
  --grey-700: #4a4f66;
  --grey-500: #7b7f96;
  --grey-200: #e7e9f5;
  --grey-100: #f4f5fb;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 45px -20px rgba(10, 20, 64, .28);
  --shadow-card: 0 10px 30px -14px rgba(10, 20, 64, .18);
  --container: 1180px;
  --ff: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:clip; max-width:100%; }
body{
  margin:0;
  font-family:var(--ff);
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:clip;
  max-width:100%;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; overflow-wrap:anywhere; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0 0 .5em; line-height:1.15; font-weight:800; letter-spacing:-.01em; }
p{ margin:0 0 1em; color:var(--grey-700); overflow-wrap:anywhere; }
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
section{ position:relative; }
.section-pad{ padding:88px 0; }
@media (max-width:760px){ .section-pad{ padding:56px 0; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  color:var(--pink); margin-bottom:14px;
}
.eyebrow::before{
  content:""; width:22px; height:2px; background:var(--pink); display:inline-block;
}
.section-head{ max-width:680px; margin-bottom:44px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.7rem, 3vw, 2.5rem); color:var(--blue-deep); }
.section-head p{ font-size:1.05rem; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 30px; border-radius:100px; font-weight:700; font-size:.95rem;
  border:2px solid transparent; cursor:pointer; transition:.25s ease; white-space:nowrap;
}
.btn-primary{ background:var(--pink); color:var(--white); box-shadow:0 12px 24px -10px rgba(226,36,87,.55); }
.btn-primary:hover{ background:#c81b48; transform:translateY(-2px); }
.btn-outline{ background:transparent; border-color:rgba(254,254,254,.55); color:var(--white); }
.btn-outline:hover{ background:rgba(254,254,254,.12); border-color:#fff; }
.btn-blue{ background:var(--blue); color:#fff; box-shadow:0 12px 24px -10px rgba(49,91,250,.5); }
.btn-blue:hover{ background:var(--blue-dark); transform:translateY(-2px); }
.btn-dark-outline{ background:transparent; border-color:var(--blue-deep); color:var(--blue-deep); }
.btn-dark-outline:hover{ background:var(--blue-deep); color:#fff; }
.btn-sm{ padding:12px 20px; font-size:.82rem; }
.btn-block{ width:100%; }

/* ---------- Top utility bar ---------- */
.topbar{
  background:var(--blue-deep); color:#dfe4ff; font-size:.82rem;
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; padding:9px 24px; gap:12px; flex-wrap:wrap; }
.topbar-links{ display:flex; gap:22px; flex-wrap:wrap; }
.topbar-links a{ display:inline-flex; align-items:center; gap:6px; }
.topbar-emergency{ color:var(--yellow); font-weight:700; }
.topbar-emergency b{ color:#fff; }

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky; top:0; z-index:200; background:rgba(254,254,254,.96);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--grey-200);
}
/* Keeps the sticky header from covering the target when jumping to any
   #anchor (e.g. header/footer "Book Appointment" -> contact.html#booking). */
[id]{ scroll-margin-top:130px; }
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; padding:14px 24px; gap:20px; }
.brand{ display:flex; align-items:center; gap:12px; font-weight:800; color:var(--blue-deep); font-size:1.05rem; }
.brand img{ height:52px; width:auto; }
.brand span{ display:block; }
.brand small{ display:block; font-weight:600; font-size:.68rem; color:var(--pink); letter-spacing:.04em; text-transform:uppercase; }

.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-links a{ font-weight:700; font-size:.92rem; color:var(--blue-deep); position:relative; padding:6px 0; }
.nav-links a.active, .nav-links a:hover{ color:var(--pink); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-phone{ display:flex; flex-direction:column; font-size:.82rem; font-weight:700; color:var(--blue-deep); }
.nav-phone span{ font-weight:600; color:var(--grey-700); font-size:.72rem; }

.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ display:block; width:26px; height:3px; margin:5px 0; background:var(--blue-deep); border-radius:2px; transition:.25s; }

@media (max-width:980px){
  .nav-links{
    position:fixed; inset:0 0 0 auto; width:78%; max-width:340px; height:100vh;
    background:var(--white); flex-direction:column; align-items:flex-start; justify-content:flex-start;
    padding:100px 32px 32px; gap:26px; box-shadow:-20px 0 50px rgba(10,20,64,.25);
    transform:translateX(100%); transition:transform .3s ease; z-index:250;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-phone{ display:none; }
  .nav-toggle{ display:block; z-index:260; }
  .topbar-links a span.hide-mobile{ display:none; }
}
/* Small phones: the header row (logo + Book Appointment + hamburger) was
   overflowing/squashing on narrow screens. Shrink it down so everything
   fits on one line without overlapping. */
@media (max-width:560px){
  .nav-wrap{ padding:10px 14px; gap:8px; }
  .brand{ gap:8px; }
  .brand img{ height:36px; }
  .brand span{ font-size:.82rem; }
  .brand small{ font-size:.58rem; }
  .nav-cta{ gap:8px; }
  .nav-cta .btn-primary{ padding:9px 14px; font-size:.78rem; }
  .nav-cta .btn span.hide-mobile{ display:none; }
  .nav-toggle{ padding:4px; }
  .nav-toggle span{ width:22px; margin:4px 0; }
  .topbar-emergency{ font-size:.72rem; }
  .topbar-links{ font-size:.78rem; gap:14px; }
}
.nav-overlay{ display:none; position:fixed; inset:0; background:rgba(10,15,40,.5); z-index:220; }
.nav-overlay.open{ display:block; }

/* ---------- Hero (video) ---------- */
.hero{
  position:relative; min-height:92vh; display:flex; align-items:center;
  overflow:hidden; color:#fff; background:var(--blue-deep);
}
.hero-media{ position:absolute; inset:0; width:100%; height:100%; overflow:hidden; }
.hero-media video, .hero-media img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center;
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(120% 100% at 12% 20%, rgba(10,20,64,.55), rgba(10,20,64,.35) 40%, rgba(8,14,48,.88) 100%),
    linear-gradient(115deg, rgba(6,11,40,.92) 0%, rgba(10,20,64,.78) 38%, rgba(49,91,250,.45) 100%);
}
.hero-content{ position:relative; z-index:5; padding:150px 0 110px; }
.hero-tag{
  display:inline-flex; align-items:center; gap:10px; background:rgba(254,254,254,.12);
  border:1px solid rgba(254,254,254,.35); padding:8px 18px; border-radius:100px;
  font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:26px;
}
.hero-tag i{ width:8px; height:8px; border-radius:50%; background:var(--yellow); display:inline-block; }
.hero h1{
  font-size:clamp(2.3rem, 5vw, 3.7rem); max-width:820px; color:#fff; margin-bottom:22px;
}
.hero h1 em{ font-style:normal; color:var(--yellow); }
.hero p.lead{ font-size:1.15rem; max-width:600px; color:#dfe4ff; margin-bottom:36px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:56px; }
.hero-mute{
  position:absolute; right:24px; bottom:24px; z-index:6; background:rgba(254,254,254,.14);
  border:1px solid rgba(254,254,254,.4); color:#fff; width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; cursor:pointer; backdrop-filter:blur(6px);
}

/* Stats strip overlapping hero */
.stats-strip{
  position:relative; z-index:6; display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  background:var(--white); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft);
  margin-top:-10px;
}
.stat{ padding:26px 22px; text-align:left; border-right:1px solid var(--grey-200); }
.stat:last-child{ border-right:none; }
.stat .num{ font-size:clamp(1.5rem,2.6vw,2.1rem); font-weight:800; color:var(--blue-deep); display:block; }
.stat .lbl{ font-size:.82rem; color:var(--grey-700); font-weight:600; }
.stat:nth-child(2){ background:var(--blue); }
.stat:nth-child(2) .num, .stat:nth-child(2) .lbl{ color:#fff; }
.stat:nth-child(4){ background:var(--blue-deep); }
.stat:nth-child(4) .num, .stat:nth-child(4) .lbl{ color:#fff; }
@media (max-width:860px){
  .stats-strip{ grid-template-columns:repeat(2,1fr); }
  .stat{ border-bottom:1px solid var(--grey-200); }
}

/* ---------- Emergency banner ---------- */
.emergency-bar{ background:var(--pink); color:#fff; }
.emergency-bar .container{
  display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap;
  padding:12px 24px; text-align:center; font-weight:700; font-size:.92rem;
}
.emergency-bar a{ text-decoration:underline; }

/* ---------- Services grid ---------- */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media (max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .services-grid{ grid-template-columns:1fr; } }

.service-card{
  background:#fff; border:1px solid var(--grey-200); border-radius:var(--radius-md);
  padding:30px 26px; transition:.25s ease; box-shadow:var(--shadow-card);
}
.service-card:hover{ transform:translateY(-6px); border-color:transparent; box-shadow:var(--shadow-soft); }
.service-icon{
  width:56px; height:56px; border-radius:16px; background:var(--grey-100);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; font-size:1.6rem;
}
.service-card h3{ font-size:1.12rem; color:var(--blue-deep); margin-bottom:10px; }
.service-card p{ font-size:.92rem; margin-bottom:16px; }
.service-card a.link{ font-weight:700; color:var(--pink); font-size:.88rem; }

/* Split services with image (accordion style like reference) */
.split{
  display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center;
}
@media (max-width:900px){ .split{ grid-template-columns:1fr; gap:36px; } }
.split.reverse{ direction:rtl; }
.split.reverse > *{ direction:ltr; }
.split img{ border-radius:var(--radius-lg); box-shadow:var(--shadow-soft); width:100%; object-fit:cover; }

.accordion-list{ margin-top:10px; }
.acc-item{ border-bottom:1px solid var(--grey-200); }
.acc-item:first-child{ border-top:1px solid var(--grey-200); }
.acc-head{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:20px 4px; cursor:pointer; font-weight:700; color:var(--blue-deep); font-size:1.02rem;
}
.acc-head .chev{ transition:.25s ease; color:var(--pink); flex-shrink:0; }
.acc-item.open .acc-head .chev{ transform:rotate(180deg); }
.acc-body{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.acc-item.open .acc-body{ max-height:400px; }
.acc-body-inner{ padding:0 4px 22px; color:var(--grey-700); font-size:.94rem; }

/* ---------- Stat / trust badges row ---------- */
.badge-row{ display:flex; flex-wrap:wrap; gap:34px; align-items:center; justify-content:center; }
.badge-row img{ height:56px; width:auto; object-fit:contain; filter:grayscale(15%); }

/* ---------- About teaser / bio ---------- */
.bio-card{
  background:var(--blue-deep); color:#fff; border-radius:var(--radius-lg); padding:44px;
  display:grid; grid-template-columns:.8fr 1.2fr; gap:40px; align-items:center; overflow:hidden;
}
@media (max-width:840px){ .bio-card{ grid-template-columns:1fr; padding:30px; } }
.bio-card img{ border-radius:var(--radius-md); }
.bio-card h3{ color:#fff; font-size:clamp(1.3rem,3vw,1.6rem); }
.bio-card .role{ color:var(--yellow); font-weight:700; font-size:.85rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px; display:block; }
.bio-card p{ color:#cfd6ff; }

/* ---------- Cards / grids ---------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
@media (max-width:900px){ .grid-3{ grid-template-columns:repeat(2,1fr); } .grid-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .grid-3, .grid-4{ grid-template-columns:1fr; } }

.location-card{
  background:var(--grey-100); border-radius:var(--radius-md); padding:26px; border:1px solid var(--grey-200);
}
.location-card h4{ color:var(--blue-deep); font-size:1.05rem; margin-bottom:8px; }
.location-card p{ font-size:.9rem; margin-bottom:14px; }
.location-card .tag{
  display:inline-block; background:var(--yellow); color:var(--blue-deep); font-weight:800;
  font-size:.68rem; letter-spacing:.06em; text-transform:uppercase; padding:5px 11px; border-radius:100px; margin-bottom:12px;
}

.team-card{ text-align:center; }
.team-photo{
  width:150px; height:150px; border-radius:50%; overflow:hidden; margin:0 auto 18px; border:4px solid var(--grey-100);
  box-shadow:var(--shadow-card); background:var(--blue); display:flex; align-items:center; justify-content:center;
}
.team-photo img{ width:100%; height:100%; object-fit:cover; }
.team-photo.avatar{ font-size:2.4rem; font-weight:800; color:#fff; }
.team-card h4{ color:var(--blue-deep); margin-bottom:2px; font-size:1.05rem; }
.team-card .role{ color:var(--pink); font-size:.84rem; font-weight:700; }

.testi-card{
  background:#fff; border:1px solid var(--grey-200); border-radius:var(--radius-md); padding:30px;
  box-shadow:var(--shadow-card);
}
.testi-card .stars{ color:var(--yellow); letter-spacing:2px; margin-bottom:14px; font-size:1rem; }
.testi-card p{ font-style:italic; color:var(--grey-700); }
.testi-name{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.testi-avatar{
  width:44px; height:44px; border-radius:50%; background:var(--blue); color:#fff; display:flex;
  align-items:center; justify-content:center; font-weight:800;
}
.testi-name strong{ display:block; color:var(--blue-deep); font-size:.92rem; }
.testi-name span{ color:var(--grey-700); font-size:.78rem; }

/* ---------- Timeline ---------- */
.timeline{ position:relative; padding-left:34px; }
.timeline::before{ content:""; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background:var(--grey-200); }
.tl-item{ position:relative; padding-bottom:34px; }
.tl-item::before{
  content:""; position:absolute; left:-34px; top:4px; width:20px; height:20px; border-radius:50%;
  background:var(--white); border:4px solid var(--pink);
}
.tl-item .yr{ color:var(--pink); font-weight:800; font-size:.85rem; letter-spacing:.04em; }
.tl-item h4{ margin:4px 0 6px; color:var(--blue-deep); font-size:1.05rem; }
.tl-item p{ font-size:.92rem; margin:0; }

/* ---------- CTA banner ---------- */
.cta-banner{
  background:linear-gradient(120deg, var(--blue-deep), var(--blue));
  color:#fff; border-radius:var(--radius-lg); padding:60px 44px; text-align:center;
  position:relative; overflow:hidden;
}
.cta-banner::after{
  content:""; position:absolute; width:420px; height:420px; border-radius:50%;
  background:radial-gradient(circle, rgba(250,224,49,.18), transparent 65%); right:-140px; top:-140px;
}
.cta-banner h2{ color:#fff; font-size:clamp(1.5rem,3vw,2.2rem); }
.cta-banner p{ color:#dfe4ff; max-width:560px; margin:0 auto 30px; }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:2; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--blue-deep); color:#c6cdf5; padding:70px 0 0; }
.footer-grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr 1.2fr; gap:44px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.12); }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h5{ color:#fff; font-size:.92rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:20px; }
.footer-grid p, .footer-grid li, .footer-grid a{ font-size:.9rem; color:#b7c0ee; }
.footer-grid li{ margin-bottom:12px; }
.footer-grid a:hover{ color:var(--yellow); }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-brand img{ height:44px; }
.footer-brand strong{ color:#fff; font-size:1.05rem; }
.social-row{ display:flex; gap:12px; margin-top:18px; }
.social-row a{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08); display:flex;
  align-items:center; justify-content:center; font-size:.9rem;
}
.social-row a:hover{ background:var(--pink); color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; padding:24px 0; font-size:.82rem; color:#8f9ad0; }
.footer-legal-links a{ color:#8f9ad0; text-decoration:underline; }
.footer-legal-links a:hover{ color:var(--yellow); }

/* ---------- Page header (inner pages) ---------- */
.page-hero{
  background:linear-gradient(120deg, var(--blue-deep), var(--blue));
  color:#fff; padding:150px 0 76px; position:relative; overflow:hidden;
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero .crumbs{ font-size:.85rem; color:#c6cdf5; margin-bottom:14px; }
.page-hero .crumbs a{ color:var(--yellow); }
.page-hero h1{ color:#fff; font-size:clamp(2rem,4vw,3rem); max-width:700px; }
.page-hero p{ color:#dfe4ff; max-width:600px; font-size:1.05rem; }

/* ---------- Forms ---------- */
.form-card{ background:#fff; border:1px solid var(--grey-200); border-radius:var(--radius-lg); padding:36px; box-shadow:var(--shadow-card); }
@media (max-width:480px){ .form-card{ padding:24px 20px; } }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:600px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.85rem; font-weight:700; color:var(--blue-deep); margin-bottom:7px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 16px; border:1.5px solid var(--grey-200); border-radius:var(--radius-sm);
  font-family:var(--ff); font-size:.94rem; color:var(--ink); background:var(--grey-100); transition:.2s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--blue); background:#fff; box-shadow:0 0 0 4px rgba(49,91,250,.12);
}
.field textarea{ min-height:130px; resize:vertical; }
.checkline{ display:flex; align-items:flex-start; gap:10px; font-size:.85rem; color:var(--grey-700); margin-bottom:20px; }
.checkline input{ margin-top:3px; }
.form-note{ font-size:.8rem; color:var(--grey-700); margin-top:10px; }
.form-success{
  display:none; background:#e9f9ee; border:1px solid #b7e6c6; color:#186a37; padding:16px 18px;
  border-radius:var(--radius-sm); font-size:.9rem; font-weight:600; margin-bottom:18px;
}
.form-success.show{ display:block; }
.form-status{
  display:none; padding:16px 18px; border-radius:var(--radius-sm); font-size:.9rem; font-weight:600; margin-bottom:18px;
}
.form-status.show{ display:block; }
.form-status.success{ background:#e9f9ee; border:1px solid #b7e6c6; color:#186a37; }
.form-status.error{ background:#fdecec; border:1px solid #f3b9b9; color:#9c2626; }
.form-section-title{
  color:var(--blue-deep); font-size:1.05rem; margin:28px 0 12px; padding-top:20px; border-top:1px solid var(--grey-200);
}
.form-section-title:first-of-type{ margin-top:0; padding-top:0; border-top:0; }
.hp-field{ position:absolute; left:-9999px; top:-9999px; }

/* ---------- Tabs (Patient / Booking) ---------- */
.tab-bar{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:34px; }
.tab-btn{
  padding:14px 22px; border-radius:100px; border:2px solid var(--grey-200); background:#fff;
  font-weight:700; font-size:.88rem; color:var(--blue-deep); cursor:pointer; transition:.2s;
}
.tab-btn.active, .tab-btn:hover{ background:var(--blue-deep); border-color:var(--blue-deep); color:#fff; }
.tab-panel{ display:none; }
.tab-panel.active{ display:block; }
.embed-frame{
  width:100%; min-height:760px; border:1px solid var(--grey-200); border-radius:var(--radius-lg);
  overflow:hidden; box-shadow:var(--shadow-card);
}
.embed-note{
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
  background:var(--grey-100); border:1px dashed var(--grey-200); border-radius:var(--radius-sm);
  padding:14px 18px; font-size:.86rem; color:var(--grey-700); margin-bottom:16px;
}

/* ---------- Map ---------- */
.map-wrap{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-soft); }
.map-wrap.full-bleed{ border-radius:0; box-shadow:none; }
#practice-map{ width:100%; height:460px; background:var(--grey-100); }
.map-fallback{ width:100%; height:460px; border:0; }
@media (max-width:600px){ .map-fallback{ height:280px; } }

/* ---------- Utilities ---------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.flex{ display:flex; }
.gap-14{ gap:14px; }
.items-center{ align-items:center; }
.pill{ display:inline-block; background:var(--grey-100); color:var(--blue-deep); font-weight:700; font-size:.78rem; padding:6px 14px; border-radius:100px; }
.divider{ height:1px; background:var(--grey-200); margin:60px 0; }
.bg-tint{ background:var(--grey-100); }
.icon-circle{
  width:46px; height:46px; border-radius:50%; background:var(--pink); color:#fff; display:flex;
  align-items:center; justify-content:center; flex-shrink:0; font-size:1.05rem;
}
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:150; width:60px; height:60px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 12px 30px -8px rgba(37,211,102,.6); font-size:1.6rem;
}

/* ---- POPIA / GDPR cookie consent banner ---- */
.cookie-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:400;
  background:var(--navy,#17287a); color:#fff;
  padding:18px 22px; display:none;
  box-shadow:0 -10px 30px -12px rgba(10,20,64,.4);
}
.cookie-banner.show{ display:block; }
.cookie-banner-inner{
  max-width:1180px; margin:0 auto; display:flex; align-items:center; gap:20px; flex-wrap:wrap;
}
.cookie-banner p{ margin:0; font-size:.88rem; line-height:1.55; color:rgba(255,255,255,.9); flex:1 1 320px; }
.cookie-banner a{ color:#fff; text-decoration:underline; font-weight:700; }
.cookie-banner-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.cookie-banner-actions button{
  border:none; cursor:pointer; font-family:inherit; font-weight:700; font-size:.86rem;
  padding:10px 18px; border-radius:999px; white-space:nowrap;
}
.cookie-banner-actions .cookie-accept{ background:var(--pink); color:#fff; }
.cookie-banner-actions .cookie-essential{ background:rgba(255,255,255,.12); color:#fff; }
@media (max-width:640px){
  .cookie-banner{ padding:16px; }
  .cookie-banner-actions{ width:100%; }
  .cookie-banner-actions button{ flex:1 1 auto; }
}
