/* ═══════════════════════════════════════════════════════════════════════
   OPTIC EXCLUSIVE — Shared Stylesheet
   Jibraeel Consulting | April 2026
   opticexclusive.co.za
════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────────────── */
:root {
  --navy:    #1B2B4B;
  --navy-d:  #0D1A30;
  --navy-l:  #243860;
  --gold:    #E8A020;
  --gold-d:  #C4850F;
  --teal:    #0EA5A0;
  --teal-d:  #0a7a76;
  --white:   #FFFFFF;
  --off-w:   #F4F6F9;
  --cream:   #FDF6EC;
  --grey:    #6B7280;
  --dark:    #1F2937;
  --border:  #E5E7EB;
  --wa:      #25D366;
  --wa-d:    #1ebe5c;
  --r:       10px;
  --shadow:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:0 8px 40px rgba(0,0,0,.16);
  --t:       .25s ease;
  --fw:      1140px;
  --fh:      'Montserrat', Arial, sans-serif;
  --fb:      'Open Sans', Arial, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--fb);color:var(--dark);background:var(--white);line-height:1.6;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}

/* ── Layout ─────────────────────────────────────────────────────────── */
.container{max-width:var(--fw);margin:0 auto;padding:0 1.25rem}
.section{padding:4rem 0}
.section-sm{padding:2.5rem 0}
.section-dark{background:var(--navy)}
.section-grey{background:var(--off-w)}
.section-cream{background:var(--cream)}

/* ── Typography ─────────────────────────────────────────────────────── */
.tag{display:inline-block;background:var(--cream);color:var(--gold-d);font-family:var(--fh);font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:.3rem .9rem;border-radius:20px;margin-bottom:.85rem}
.tag.light{background:rgba(255,255,255,.15);color:var(--gold)}
h1,h2,h3,h4{font-family:var(--fh);line-height:1.2}
.h2{font-size:clamp(1.6rem,4vw,2.4rem);font-weight:800;color:var(--navy);margin-bottom:.75rem}
.h2.light{color:var(--white)}
.lead{font-size:1.05rem;color:var(--grey);max-width:600px;margin-bottom:2.5rem;line-height:1.75}
.lead.light{color:rgba(255,255,255,.8)}
.text-center{text-align:center}
.text-center .lead{margin-left:auto;margin-right:auto}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;gap:.5rem;font-family:var(--fh);font-weight:700;font-size:.95rem;padding:.85rem 2rem;border-radius:50px;transition:all var(--t);white-space:nowrap}
.btn-primary{background:var(--gold);color:var(--navy)}
.btn-primary:hover{background:var(--gold-d);transform:translateY(-2px);box-shadow:var(--shadow)}
.btn-navy{background:var(--navy);color:var(--white)}
.btn-navy:hover{background:var(--navy-l);transform:translateY(-2px);box-shadow:var(--shadow)}
.btn-outline{background:transparent;color:var(--white);border:2px solid rgba(255,255,255,.6)}
.btn-outline:hover{background:rgba(255,255,255,.15);border-color:var(--white)}
.btn-outline-navy{background:transparent;color:var(--navy);border:2px solid var(--navy)}
.btn-outline-navy:hover{background:var(--navy);color:var(--white)}
.btn-wa{background:var(--wa);color:var(--white)}
.btn-wa:hover{background:var(--wa-d);transform:translateY(-2px);box-shadow:0 4px 16px rgba(37,211,102,.4)}
.btn-teal{background:var(--teal);color:var(--white)}
.btn-teal:hover{background:var(--teal-d);transform:translateY(-2px)}
.btn-sm{padding:.55rem 1.3rem;font-size:.82rem}
.btn-block{width:100%;justify-content:center}

/* ── WhatsApp Float ──────────────────────────────────────────────────── */
#wa-float{position:fixed;bottom:1.5rem;right:1.5rem;z-index:9999;display:flex;align-items:center;gap:.6rem;background:var(--wa);color:white;font-family:var(--fh);font-weight:700;font-size:.88rem;padding:.75rem 1.25rem .75rem 1rem;border-radius:50px;box-shadow:0 4px 20px rgba(37,211,102,.5);transition:all var(--t);animation:wa-pulse 3s infinite}
#wa-float:hover{transform:scale(1.05)}
@keyframes wa-pulse{0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.5)}50%{box-shadow:0 4px 30px rgba(37,211,102,.75)}}

/* ── Sticky Header ───────────────────────────────────────────────────── */
#site-header{position:sticky;top:0;z-index:1000;background:var(--navy);box-shadow:0 2px 12px rgba(0,0,0,.2)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:.65rem 1.25rem;gap:.75rem}
.header-logo{display:flex;align-items:center;gap:.7rem;flex-shrink:0}
.header-logo img{width:52px;height:52px;border-radius:10px;object-fit:cover;border:2px solid rgba(232,160,32,.4);box-shadow:0 2px 8px rgba(0,0,0,.3)}
.logo-text strong{display:block;font-family:var(--fh);font-weight:800;font-size:1.05rem;color:var(--white);line-height:1}
.logo-text span{font-size:.72rem;color:var(--gold);font-weight:600;letter-spacing:.02em}
.main-nav{display:flex;align-items:center;gap:.15rem}
.main-nav a,.main-nav button{font-family:var(--fh);font-size:.82rem;font-weight:600;color:rgba(255,255,255,.85);padding:.4rem .8rem;border-radius:6px;transition:all var(--t);background:none;border:none;cursor:pointer;white-space:nowrap}
.main-nav a:hover,.main-nav button:hover,.main-nav a.active{color:var(--gold);background:rgba(255,255,255,.08)}
.main-nav .btn-wa{padding:.4rem 1rem;font-size:.82rem;border-radius:50px}
.main-nav .btn-wa:hover{transform:none}

/* Dropdown */
.nav-dropdown{position:relative}
.dropdown-menu{position:absolute;top:calc(100% + .5rem);left:0;background:var(--navy-d);border:1px solid rgba(255,255,255,.1);border-radius:var(--r);padding:.5rem 0;min-width:200px;box-shadow:var(--shadow-lg);opacity:0;visibility:hidden;transform:translateY(-8px);transition:all var(--t);z-index:200}
.nav-dropdown:hover .dropdown-menu,.nav-dropdown:focus-within .dropdown-menu{opacity:1;visibility:visible;transform:none}
.dropdown-menu a{display:block;padding:.6rem 1.2rem;font-family:var(--fh);font-size:.82rem;font-weight:600;color:rgba(255,255,255,.8);transition:all var(--t)}
.dropdown-menu a:hover{color:var(--gold);padding-left:1.6rem}
.dropdown-menu .divider{height:1px;background:rgba(255,255,255,.08);margin:.4rem 0}
.dropdown-arrow{font-size:.65rem;margin-left:.2rem;transition:transform var(--t)}
.nav-dropdown:hover .dropdown-arrow{transform:rotate(180deg)}

/* Language toggle */
.lang-toggle{display:flex;border:1px solid rgba(255,255,255,.25);border-radius:20px;overflow:hidden;flex-shrink:0}
.lang-toggle a{font-family:var(--fh);font-size:.75rem;font-weight:700;padding:.3rem .7rem;color:rgba(255,255,255,.7);transition:all var(--t)}
.lang-toggle a.active,.lang-toggle a:hover{background:var(--gold);color:var(--navy)}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;padding:6px}
.hamburger span{display:block;width:24px;height:2px;background:var(--white);border-radius:2px;transition:all var(--t)}
.hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* Mobile Nav */
.mobile-nav{display:none;background:var(--navy-d);border-top:1px solid rgba(255,255,255,.08)}
.mobile-nav.open{display:block}
.mobile-nav a,.mobile-nav .mob-section{display:block;font-family:var(--fh);font-size:.95rem;font-weight:600;color:rgba(255,255,255,.85);padding:.75rem 1.5rem;border-bottom:1px solid rgba(255,255,255,.07);transition:color var(--t)}
.mobile-nav a:hover,.mobile-nav a:active{color:var(--gold);background:rgba(255,255,255,.05)}
.mobile-nav .mob-sub{font-size:.85rem;padding:.65rem 2.5rem;color:rgba(255,255,255,.7);border-bottom:1px solid rgba(255,255,255,.04)}
.mobile-nav .mob-sub:hover,.mobile-nav .mob-sub:active{color:var(--gold)}
.mobile-nav .mob-section{color:var(--gold);font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;padding:.9rem 1.5rem .3rem;border-bottom:none;opacity:.9}
.mobile-nav .mob-cta{margin:.75rem 1.25rem 1.25rem;display:flex;flex-direction:column;gap:.6rem}
/* ensure tap targets are large enough */
@media(max-width:900px){
  .mobile-nav a{min-height:48px;display:flex;align-items:center}
  .mobile-nav .mob-sub{min-height:44px}
}

/* ── Trust Bar ────────────────────────────────────────────────────────── */
.trust-bar{background:var(--gold);padding:.85rem 0}
.trust-bar-inner{display:flex;flex-wrap:wrap;justify-content:center;gap:.5rem 2.5rem}
.trust-item{display:flex;align-items:center;gap:.45rem;font-family:var(--fh);font-size:.82rem;font-weight:700;color:var(--navy)}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero{position:relative;background:linear-gradient(135deg,var(--navy-d) 0%,var(--navy) 50%,#1a3a5c 100%);min-height:58vh;display:flex;align-items:center;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%,rgba(14,165,160,.18) 0%,transparent 60%),radial-gradient(ellipse at 15% 80%,rgba(232,160,32,.12) 0%,transparent 50%);pointer-events:none}
.hero::after{content:'';position:absolute;right:-100px;top:-100px;width:380px;height:380px;border:50px solid rgba(14,165,160,.1);border-radius:50%;pointer-events:none}
.hero-content{position:relative;z-index:2;max-width:660px;padding:2.25rem 0}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(232,160,32,.15);border:1px solid rgba(232,160,32,.4);color:var(--gold);font-family:var(--fh);font-size:.75rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.35rem .9rem;border-radius:20px;margin-bottom:.9rem}
.hero-badge::before{content:'';width:7px;height:7px;background:var(--gold);border-radius:50%}
.hero h1{font-size:clamp(1.9rem,5vw,3.2rem);font-weight:800;color:var(--white);line-height:1.12;margin-bottom:.9rem}
.hero h1 span{color:var(--gold)}
.hero p{font-size:clamp(.95rem,2vw,1.08rem);color:rgba(255,255,255,.82);margin-bottom:1.5rem;max-width:540px;line-height:1.7}
.hero-btns{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:1.5rem}
.hero-trust{display:flex;flex-wrap:wrap;gap:1rem}
.hero-trust-item{display:flex;align-items:center;gap:.35rem;color:rgba(255,255,255,.75);font-size:.82rem;font-weight:500}
.hero-trust-item svg{color:var(--gold);flex-shrink:0}

/* ── Page Hero (inner pages) ────────────────────────────────────────── */
.page-hero{background:linear-gradient(135deg,var(--navy-d),var(--navy));padding:2.5rem 0 2rem;border-bottom:4px solid var(--gold)}
.page-hero .tag{margin-bottom:.5rem}
.page-hero h1{font-family:var(--fh);font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;color:var(--white);margin-bottom:.75rem}
.page-hero p{color:rgba(255,255,255,.8);max-width:580px;font-size:1.05rem}

/* ── Cards ──────────────────────────────────────────────────────────── */
.card{background:var(--white);border-radius:var(--r);box-shadow:var(--shadow);padding:1.75rem;transition:all var(--t);border:2px solid transparent}
.card:hover{border-color:var(--teal);transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.card-icon{width:52px;height:52px;background:var(--navy);border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:1rem;flex-shrink:0}
.card h3{font-family:var(--fh);font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:.4rem}
.card p{font-size:.88rem;color:var(--grey);line-height:1.65}

/* ── Grids ──────────────────────────────────────────────────────────── */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:2rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.grid-auto{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1.25rem}
.grid-auto-lg{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:1.5rem}

/* ── Booking Form ──────────────────────────────────────────────────── */
.booking-card{background:var(--white);border-radius:var(--r);box-shadow:var(--shadow-lg);padding:2.5rem;max-width:540px;margin:0 auto}
.booking-card h3{font-family:var(--fh);font-size:1.3rem;font-weight:800;color:var(--navy);margin-bottom:1.5rem}
.field{margin-bottom:1.25rem}
.field label{display:block;font-family:var(--fh);font-size:.8rem;font-weight:700;color:var(--navy);margin-bottom:.4rem;text-transform:uppercase;letter-spacing:.06em}
.field input,.field select,.field textarea{width:100%;padding:.75rem 1rem;border:2px solid var(--border);border-radius:8px;font-family:var(--fb);font-size:.95rem;color:var(--dark);transition:border-color var(--t);background:var(--white)}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--teal)}
.field textarea{resize:vertical;min-height:90px}
.field-note{font-size:.78rem;color:var(--grey);margin-top:.35rem}

/* ── Medical Aids ────────────────────────────────────────────────────── */
.aids-list{display:flex;flex-wrap:wrap;gap:.6rem}
.aid-badge{background:var(--white);border:1.5px solid rgba(27,43,75,.15);border-radius:6px;padding:.4rem 1rem;font-family:var(--fh);font-size:.8rem;font-weight:700;color:var(--navy)}

/* ── Contact ─────────────────────────────────────────────────────────── */
.contact-row{display:flex;gap:1rem;align-items:flex-start;margin-bottom:1.25rem}
.contact-icon{width:42px;height:42px;background:var(--off-w);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.contact-row strong{display:block;font-family:var(--fh);font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--grey);margin-bottom:.15rem}
.hours-table{width:100%;border-collapse:collapse}
.hours-table td{padding:.45rem .75rem;font-size:.88rem;border-bottom:1px solid var(--border)}
.hours-table td:last-child{font-weight:600;text-align:right}
.hours-table tr:last-child td{border-bottom:none}
.map-wrap{border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow);height:340px}
.map-wrap iframe{width:100%;height:100%;border:none;display:block}

/* ── Frames Catalogue ───────────────────────────────────────────────── */
.frame-card{background:var(--white);border-radius:var(--r);box-shadow:var(--shadow);overflow:hidden;transition:all var(--t);border:2px solid transparent}
.frame-card:hover{border-color:var(--teal);transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.frame-img{background:var(--off-w);height:180px;display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative}
.frame-img img{width:100%;height:100%;object-fit:cover}
.frame-img .placeholder{font-size:3rem;opacity:.4}
.frame-badge{position:absolute;top:.6rem;left:.6rem;background:var(--gold);color:var(--navy);font-family:var(--fh);font-size:.68rem;font-weight:700;padding:.2rem .6rem;border-radius:20px;text-transform:uppercase}
.frame-badge.new{background:var(--teal);color:var(--white)}
.frame-badge.sale{background:var(--wa-d);color:var(--white)}
.frame-body{padding:1.1rem}
.frame-brand{font-family:var(--fh);font-size:.7rem;font-weight:700;color:var(--teal);text-transform:uppercase;letter-spacing:.08em;margin-bottom:.2rem}
.frame-name{font-family:var(--fh);font-size:.95rem;font-weight:700;color:var(--navy);margin-bottom:.35rem}
.frame-desc{font-size:.82rem;color:var(--grey);margin-bottom:.6rem}
.frame-colors{display:flex;gap:.35rem;margin-bottom:.75rem}
.color-dot{width:14px;height:14px;border-radius:50%;border:1.5px solid var(--border)}
.frame-price{font-family:var(--fh);font-size:1rem;font-weight:800;color:var(--navy)}
.frame-price .from{font-size:.72rem;font-weight:400;color:var(--grey)}
.frame-actions{display:flex;gap:.5rem;margin-top:.75rem}
.filter-bar{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:2rem}
.filter-btn{font-family:var(--fh);font-size:.82rem;font-weight:700;padding:.45rem 1.1rem;border-radius:20px;border:2px solid var(--border);color:var(--grey);transition:all var(--t);cursor:pointer;background:var(--white)}
.filter-btn:hover,.filter-btn.active{background:var(--navy);color:var(--white);border-color:var(--navy)}

/* ── Eye Health ──────────────────────────────────────────────────────── */
.condition-card{background:var(--white);border-radius:var(--r);padding:2rem;box-shadow:var(--shadow);border-left:4px solid var(--teal);margin-bottom:1.5rem}
.condition-card h3{font-family:var(--fh);font-size:1.1rem;font-weight:700;color:var(--navy);margin-bottom:.75rem}
.condition-card p{color:var(--grey);margin-bottom:.6rem;font-size:.95rem;line-height:1.75}
.condition-card .symptoms{background:var(--off-w);border-radius:8px;padding:1rem 1.25rem;margin:.75rem 0}
.condition-card .symptoms h4{font-family:var(--fh);font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--navy);margin-bottom:.5rem}
.condition-card .symptoms li{font-size:.88rem;color:var(--grey);padding:.2rem 0 .2rem 1.2rem;position:relative}
.condition-card .symptoms li::before{content:'•';position:absolute;left:0;color:var(--teal)}
.alert-box{background:rgba(14,165,160,.1);border:1.5px solid var(--teal);border-radius:var(--r);padding:1.25rem 1.5rem;margin-top:2rem}
.alert-box h4{font-family:var(--fh);font-size:.95rem;font-weight:700;color:var(--teal);margin-bottom:.5rem}

/* ── Lenses Page ─────────────────────────────────────────────────────── */
.lens-type-card{background:var(--white);border-radius:var(--r);box-shadow:var(--shadow);padding:2rem;text-align:center;transition:all var(--t);border:2px solid transparent}
.lens-type-card:hover{border-color:var(--teal);transform:translateY(-4px)}
.lens-icon{font-size:2.5rem;margin-bottom:1rem}
.lens-type-card h3{font-family:var(--fh);font-size:1rem;font-weight:700;color:var(--navy);margin-bottom:.5rem}
.lens-type-card p{font-size:.85rem;color:var(--grey)}

/* ── Footer ──────────────────────────────────────────────────────────── */
footer{background:var(--navy-d);padding:2.5rem 0 1.5rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2rem;margin-bottom:2rem}
.footer-brand-name{font-family:var(--fh);font-size:1.1rem;font-weight:800;color:var(--white);margin-bottom:.35rem}
.footer-tagline{font-size:.82rem;color:rgba(255,255,255,.55);margin-bottom:1rem}
.footer-contact a,.footer-contact p{display:block;font-size:.85rem;color:rgba(255,255,255,.7);margin-bottom:.4rem;transition:color var(--t)}
.footer-contact a:hover{color:var(--gold)}
.footer-col h4{font-family:var(--fh);font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.4);margin-bottom:1rem}
.footer-col a{display:block;font-size:.85rem;color:rgba(255,255,255,.65);margin-bottom:.4rem;transition:color var(--t)}
.footer-col a:hover{color:var(--gold)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:1.25rem;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem}
.footer-copy{font-size:.78rem;color:rgba(255,255,255,.35)}
.social-icons{display:flex;gap:.5rem}
.social-icon{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;transition:all var(--t);font-size:.85rem}
.social-icon.fb{background:#1877F2}
.social-icon.ig{background:radial-gradient(circle at 30% 107%,#fdf497 0%,#fd5949 45%,#d6249f 60%,#285AEB 90%)}
.social-icon:hover{transform:scale(1.12)}

/* ── Scroll animations ────────────────────────────────────────────── */
@media(prefers-reduced-motion:no-preference){
  .fade-up{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
  .fade-up.visible{opacity:1;transform:none}
  .fade-up:nth-child(2){transition-delay:.1s}
  .fade-up:nth-child(3){transition-delay:.2s}
  .fade-up:nth-child(4){transition-delay:.3s}
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════ */
@media(max-width:1024px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:900px){
  .main-nav{display:none}
  .hamburger{display:flex}
  .lang-toggle{margin-right:.5rem}
  .grid-2{grid-template-columns:1fr}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .hero{min-height:auto;padding:.75rem 0 2.5rem}
  .hero-content{padding:1.5rem 0}
  .hero h1{font-size:clamp(1.7rem,7vw,2.6rem)}
  .hero p{font-size:.95rem;margin-bottom:1.2rem}
  .hero-badge{margin-bottom:.6rem}
  .hero-btns{margin-bottom:1.2rem}
  .section{padding:3rem 0}
  .section-sm{padding:2rem 0}
  .page-hero{padding:2rem 0 1.5rem}
  .page-hero h1{font-size:clamp(1.5rem,5vw,2.2rem)}
}
@media(max-width:640px){
  .section{padding:2.5rem 0}
  .section-sm{padding:1.75rem 0}
  .grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .hero{padding:.5rem 0 2rem}
  .hero-content{padding:1.25rem 0}
  .hero h1{font-size:1.75rem;margin-bottom:.65rem}
  .hero p{font-size:.92rem;margin-bottom:1rem;line-height:1.6}
  .hero-badge{font-size:.68rem;padding:.28rem .75rem;margin-bottom:.5rem}
  .hero-btns{flex-direction:column;gap:.6rem;margin-bottom:1rem}
  .hero-btns .btn{justify-content:center;padding:.75rem 1.5rem}
  .hero-trust{gap:.6rem .9rem}
  .hero-trust-item{font-size:.76rem}
  #wa-float .wa-label{display:none}
  #wa-float{padding:.85rem;border-radius:50%}
  .trust-bar-inner{gap:.6rem 1.25rem}
  .trust-item{font-size:.75rem}
  .booking-card{padding:1.25rem}
  .grid-auto{grid-template-columns:1fr}
  .grid-auto-lg{grid-template-columns:1fr}
  .card{padding:1.25rem}
  .card-icon{width:44px;height:44px;font-size:1.3rem}
  .page-hero{padding:1.75rem 0 1.25rem}
  .page-hero h1{font-size:1.5rem;margin-bottom:.5rem}
  .page-hero p{font-size:.9rem}
}
