:root{
  --brand:#014a73;
  --brand-2:#0369a1;
  --ink:#0b1b2b;
  --bg:#f7fafc;
  --muted:#64748b;
  --border:#e2e8f0;
  --radius:18px;
  --shadow: 0 10px 30px rgba(2, 6, 23, .10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background: var(--bg);
  line-height:1.6;
}
a{color:var(--brand); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; height:auto}
.container{max-width:1100px; margin:0 auto; padding:0 18px}
.pill{display:inline-flex; align-items:center; gap:10px; padding:10px 14px; border:1px solid var(--border); border-radius:999px; background:#fff}
.badges{display:flex; flex-wrap:wrap; gap:10px}

.header{position:sticky; top:0; z-index:50; background: rgba(247,250,252,.9); backdrop-filter: blur(10px); border-bottom:1px solid rgba(226,232,240,.9)}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:12px 0; gap:12px}
.brand{display:flex; align-items:center; gap:12px; min-width: 220px}
.brand img{width:170px; height:auto}
.nav{display:none; gap:18px; align-items:center}
.nav a{font-weight:600; color:var(--ink); opacity:.9}
.nav a:hover{opacity:1; text-decoration:none}
.cta-row{display:flex; gap:10px; align-items:center}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:12px 14px; border-radius:999px; border:1px solid var(--border); background:#fff; font-weight:700; cursor:pointer}
.btn-primary{background:var(--brand); border-color:var(--brand); color:#fff}
.btn-primary:hover{filter:brightness(1.05)}
.btn-outline{background:#fff}
.btn-outline:hover{background:#f8fafc}
.btn-whatsapp{background:#25D366; border-color:#25D366; color:#fff}
.btn-whatsapp:hover{filter:brightness(1.02)}
.btn-small{padding:10px 12px; font-weight:700}
.icon{width:18px; height:18px; flex:0 0 auto}

.hero{padding:34px 0 24px}
.hero-grid{display:grid; grid-template-columns: 1fr; gap:18px}
.card{background:#fff; border:1px solid var(--border); border-radius:var(--radius); box-shadow: var(--shadow)}
.hero-card{padding:22px}
.kicker{display:inline-flex; align-items:center; gap:10px; font-weight:800; color:var(--brand); letter-spacing:.02em}
.h1{font-size: clamp(28px, 5vw, 44px); line-height:1.12; margin:10px 0 10px}
.sub{font-size: 18px; color: rgba(11,27,43,.85); margin:0 0 16px}
.hero-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.note{color:var(--muted); font-size:14px; margin-top:10px}
.hero-side{padding:22px; overflow:hidden}
.hero-side .imgwrap{border-radius:var(--radius); overflow:hidden; border:1px solid var(--border)}
.hero-side .imgwrap img{display:block}

.section{padding:28px 0}
.h2{font-size: clamp(22px, 3.2vw, 30px); margin:0 0 12px}
.lead{color: rgba(11,27,43,.78); margin:0 0 16px}
.grid-3{display:grid; grid-template-columns: 1fr; gap:14px}
.grid-2{display:grid; grid-template-columns: 1fr; gap:14px}
.feature{padding:18px}
.feature h3{margin:0 0 6px; font-size:18px}
.feature p{margin:0; color: rgba(11,27,43,.78)}
.list{margin:0; padding-left:18px}
.list li{margin:8px 0}
.services{display:grid; grid-template-columns: 1fr; gap:10px; margin-top:12px}
.service{display:flex; gap:12px; align-items:flex-start; padding:14px; border:1px solid var(--border); border-radius:14px; background:#fff}
.check{width:22px; height:22px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; background: rgba(1,74,115,.12); color: var(--brand); font-weight:900}
.service span{font-weight:800}
.service p{margin:2px 0 0; color: rgba(11,27,43,.78)}

.areas{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px}
.area{display:flex; align-items:center; justify-content:space-between; gap:10px; padding:12px 14px; border:1px solid var(--border); border-radius:14px; background:#fff}
.area strong{font-size:15px}
.area em{font-style:normal; color:var(--muted); font-size:13px}
.area:hover{border-color: rgba(1,74,115,.35)}

.faq{margin-top:10px}
details{border:1px solid var(--border); border-radius:14px; background:#fff; padding:12px 14px}
details + details{margin-top:10px}
summary{cursor:pointer; font-weight:800}
details p{margin:10px 0 0; color: rgba(11,27,43,.78)}

.footer{padding:26px 0 40px; border-top:1px solid var(--border); background:#fff}
.footer-grid{display:grid; grid-template-columns:1fr; gap:14px}
.small{font-size:14px; color: rgba(11,27,43,.75)}
.footer a{font-weight:700}

.sticky-mobile{position:fixed; left:0; right:0; bottom:0; z-index:60; padding:10px; background: rgba(247,250,252,.92); border-top:1px solid rgba(226,232,240,.9); backdrop-filter: blur(10px)}
.sticky-mobile .row{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.hide-desktop{display:block}
.hide-mobile{display:none}

@media (min-width: 900px){
  .nav{display:flex}
  .hero-grid{grid-template-columns: 1.25fr .75fr; align-items:stretch}
  .grid-3{grid-template-columns: repeat(3, minmax(0,1fr))}
  .grid-2{grid-template-columns: repeat(2, minmax(0,1fr))}
  .services{grid-template-columns: repeat(2, minmax(0,1fr))}
  .areas{grid-template-columns: repeat(3, minmax(0,1fr))}
  .footer-grid{grid-template-columns: 1.3fr .7fr}
  .hide-desktop{display:none}
  .hide-mobile{display:inline-flex}
}

/* Hero right card improvements */
.badge-list{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
.hours{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width: 420px){
  .hours{grid-template-columns: 1fr;}
}

/* Hero right card (aside) */
.side-top{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding-bottom:10px;
  border-bottom:1px solid var(--border);
  margin-bottom:12px;
}
.side-logo{width:170px; height:auto}
.side-title{margin:0; color: rgba(11,27,43,.78); font-weight:700}

/* Email button (kept consistent with CTA styling) */
.btn-email{
  background: var(--brand-2);
  border-color: var(--brand-2);
  color:#fff;
}
.btn-email:hover{filter:brightness(1.03)}


/* Logo mark (hero side card) */
.logo-mark{
  width:54px;
  height:54px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(1,74,115,0.95), rgba(3,105,161,0.9));
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
  letter-spacing:.04em;
  box-shadow: 0 10px 25px rgba(2,6,23,.25);
}
.logo-mark span{font-size:14px}

/* Hero right card logo image */
.side-logo-image{
  width:100%;
  max-width:260px;
  height:auto;
  border-radius:14px;
  border:1px solid var(--border);
  box-shadow: 0 10px 25px rgba(2,6,23,.18);
}


/* Right hero card logo image (from /images/main-slider/1.jpg) */
.side-hero-logo{
  width:100%;
  max-width: 360px;
  height:auto;
  border-radius:14px;
  border:1px solid var(--border);
  box-shadow: 0 10px 25px rgba(2,6,23,.10);
}

/* Hero improvements (v10) */
.hero-lead{
  font-size:18px;
  margin:10px 0 10px;
  color: rgba(11,27,43,.85);
}
.hero-points{
  margin: 0;
  padding-left: 18px;
}
.hero-points li{
  margin:8px 0;
  color: rgba(11,27,43,.80);
  font-weight:600;
}


/* Live availability calendar */
.availability{
  padding: 18px;
}

.availability-head{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.availability-iframe{
  width: 100%;
  height: 520px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

@media (max-width: 640px){
  .availability-iframe{
    height: 560px;
  }
}


.btn-review{
  display:inline-flex;
  align-items:center;
  gap:6px;
}





/* Prevent any embeds from causing horizontal scroll */
html, body{
  overflow-x: hidden;
}

/* Make embedded iframes always fit their container */
.embed-wrap{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

.embed-wrap iframe{
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  border: 0;
}

/* Verified customer pill */
.verified-pill{
  display:inline-block;
  width:fit-content;
  padding:4px 10px;
  font-size:12px;
  font-weight:600;
  color:#0b1b2b;
  background:#eef5ff;
  border:1px solid rgba(11,27,43,.15);
  border-radius:999px;
  margin-top:-4px;
}



/* Testimonials with initials + date */
.testimonial{
  gap:10px;
}

.testimonial-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.testimonial-who{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.testimonial-initials{
  font-size:15px;
  letter-spacing:.3px;
}

.testimonial-meta,
.testimonial-date{
  font-size:13px;
  color: rgba(11,27,43,.70);
}

.stars{
  font-size:18px;
  letter-spacing:2px;
  color:#f5b301;
  font-weight:700;
}

.testimonial p{
  margin:0;
  font-size:16px;
  line-height:1.5;
  color: rgba(11,27,43,.85);
}

.testimonial-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}

/* Mobile nav toggle */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;height:44px;
  border:1px solid rgba(11,27,43,.15);
  border-radius:12px;
  background:#fff;
}

.nav-toggle-bars{
  width:18px;height:2px;
  background:currentColor;
  position:relative;
  display:block;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;height:2px;
  background:currentColor;
}

.nav-toggle-bars::before{ top:-6px; }
.nav-toggle-bars::after{ top:6px; }

@media (max-width: 820px){
  .nav-toggle{ display:inline-flex; }

  /* Hide nav by default on mobile */
  .nav{
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:72px;
    padding:12px;
    background:#fff;
    border:1px solid rgba(11,27,43,.15);
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    flex-direction:column;
    gap:8px;
    z-index:50;
  }

  /* When open */
  .nav.is-open{ display:flex; }
}


/* Hide elements on mobile only */
@media (max-width: 820px){
  .hide-mobile{
    display: none !important;
  }
}


/* Ensure header elements are clickable on mobile */
.header{
  position: sticky; /* if you already use sticky, keep it */
  top: 0;
  z-index: 9999;
}

.header-inner{
  position: relative; /* important for the dropdown nav positioning */
}

.nav-toggle{
  position: relative;
  z-index: 10000;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}



/* Site-wide mobile sticky CTA */
.mobile-sticky-cta{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 10px;
  z-index: 9999;
}

.mobile-sticky-cta .btn{
  flex: 1;
  justify-content: center;
}

/* Only show on mobile */
@media (min-width: 821px){
  .mobile-sticky-cta{ display:none; }
}

@media (max-width: 820px){
  body{ padding-bottom: 80px; }
}

