/* ===========================================================
   Sai Safar Cabs — shared stylesheet
   Design tokens: Ink Navy / Sunset Amber / Warm Cream / Deep Teal
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=Inter:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap');

:root{
  --navy: #12253B;
  --navy-2: #1A3252;
  --amber: #F2A93B;
  --amber-dark: #D98F1F;
  --cream: #FBF7EF;
  --cream-2: #F3EBDA;
  --teal: #146B63;
  --teal-dark: #0F5049;
  --ink: #22262B;
  --ink-soft: #565C63;
  --white: #FFFFFF;
  --line: rgba(18,37,59,0.12);
  --shadow: 0 8px 22px rgba(18,37,59,0.10);
  --shadow-lg: 0 20px 48px rgba(18,37,59,0.18);
  --radius: 10px;
  --radius-sm: 8px;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

/* Icon utility */
.icon svg{ width:100%; height:100%; }
.icon{ color: currentColor; flex-shrink:0; }

*{ box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; touch-action: manipulation; }
button{ touch-action: manipulation; }
h1,h2,h3,h4{ font-family: var(--font-head); color: var(--navy); margin:0 0 .5em; line-height:1.15; }
p{ margin:0 0 1em; color: var(--ink-soft); }
.container{ max-width:1180px; margin:0 auto; padding:0 24px; }
.mono{ font-family: var(--font-mono); }

/* -------- Top utility bar -------- */
.topbar{
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:8px; padding-bottom:8px; gap:12px; flex-wrap:wrap;
}
.topbar a{ color:#fff; }
.topbar .tb-links{ display:flex; gap:18px; flex-wrap:wrap; }
.topbar .tb-links span{ opacity:.65; margin-right:4px; }

/* -------- Header / Nav -------- */
header.site-header{
  position: sticky; top:0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark-img{ border-radius:10px; object-fit:contain; flex-shrink:0; background:#fff; }
.brand-mark{
  width:44px; height:44px; border-radius:10px;
  background: var(--navy);
  display:flex; align-items:center; justify-content:center;
  color: var(--amber); font-family:var(--font-head); font-weight:800; font-size:18px;
}
.brand-name{ font-family: var(--font-head); font-weight:800; font-size:19px; color: var(--navy); }
.brand-tag{ font-size:11px; color: var(--ink-soft); letter-spacing:.04em; text-transform:uppercase; }

nav.main-nav ul{ list-style:none; display:flex; gap:28px; margin:0; padding:0; align-items:center; }
nav.main-nav a{ font-weight:600; font-size:14.5px; color: var(--navy); position:relative; }
nav.main-nav > ul > li{ position:relative; }
nav.main-nav .dropdown{
  position:absolute; top:130%; left:0; background:#fff; min-width:190px;
  border-radius:10px; box-shadow: var(--shadow); padding:8px; display:none; border:1px solid var(--line);
}
nav.main-nav li:hover .dropdown{ display:block; }
nav.main-nav .dropdown a{ display:block; padding:8px 10px; border-radius:6px; font-weight:500; }
nav.main-nav .dropdown a:hover{ background: var(--cream-2); color: var(--teal-dark); }
.submenu-toggle{ display:none; }

/* -------- Mobile nav drawer -------- */
.nav-backdrop{ display:none; }

.nav-cta{ display:flex; align-items:center; gap:10px; }
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 22px; border-radius: var(--radius-sm); font-weight:700; font-size:14px;
  border: none; cursor:pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  letter-spacing:.01em;
}
.btn .icon{ width:16px; height:16px; }
.btn:hover{ transform: translateY(-1px); }
.btn-amber{ background: var(--amber); color: var(--navy); box-shadow: 0 6px 14px rgba(242,169,59,.28); }
.btn-amber:hover{ background: var(--amber-dark); }
.btn-teal{ background: var(--teal); color:#fff; box-shadow: 0 6px 14px rgba(20,107,99,.25); }
.btn-teal:hover{ background: var(--teal-dark); }
.btn-outline{ background:transparent; border:1.5px solid var(--navy); color:var(--navy); }
.btn-outline:hover{ background: var(--navy); color:#fff; }
.btn-outline.light{ border-color:rgba(255,255,255,.55); color:#fff; }
.btn-outline.light:hover{ background:#fff; color:var(--navy); }
.btn-sm{ padding:9px 16px; font-size:13px; }

.hamburger{ display:none; background:none; border:none; font-size:26px; color:var(--navy); cursor:pointer; padding:6px; min-width:44px; min-height:44px; align-items:center; justify-content:center; }

/* -------- Hero -------- */
.hero{
  position:relative;
  color:#fff; overflow:hidden;
  padding: 84px 0 130px;
  background: var(--navy);
}
.hero-slider{ position:absolute; inset:0; z-index:0; }
.hero-slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transition: opacity 1.4s ease;
}
.hero-slide.active{ opacity:1; }
.hero-overlay{
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(115deg, rgba(18,37,59,.94) 0%, rgba(18,37,59,.86) 40%, rgba(15,80,73,.72) 100%);
}
.hero .container{ position:relative; z-index:2; display:grid; grid-template-columns: 1.15fr .85fr; gap:40px; align-items:center; }
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(242,169,59,.15); color: var(--amber);
  font-family:var(--font-mono); font-size:12px; letter-spacing:.06em; text-transform:uppercase;
  padding:6px 14px; border-radius:999px; margin-bottom:18px; border:1px solid rgba(242,169,59,.3);
}
.hero h1{ color:#fff; font-size:44px; font-weight:800; max-width:600px; }
.hero h1 span{ color: var(--amber); }
.hero p.lead{ color: rgba(255,255,255,.78); font-size:16.5px; max-width:480px; }
.hero-actions{ display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:28px; margin-top:40px; flex-wrap:wrap; }
.hero-stats div{ font-family:var(--font-mono); }
.hero-stats .num{ font-size:24px; font-weight:700; color: var(--amber); }
.hero-stats .lbl{ font-size:12px; color: rgba(255,255,255,.6); }

/* Signature meter card */
.meter-card{
  background:#fff; color: var(--navy); border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.35);
  padding:20px 22px; position:relative;
}
.meter-card::before{
  content:""; position:absolute; left:0; right:0; top:-8px; height:8px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 10px, transparent 10px 20px);
  border-radius: 16px 16px 0 0;
}
.meter-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; padding-bottom:12px; border-bottom:1px dashed var(--line); }
.meter-head strong{ font-family:var(--font-head); font-size:14px; }
.meter-head span{ font-family:var(--font-mono); font-size:11px; color: var(--teal); background: #E9F4F2; padding:3px 9px; border-radius:999px; }
.meter-row{ display:flex; justify-content:space-between; align-items:baseline; padding:9px 0; border-bottom:1px solid var(--line); font-size:13.5px; }
.meter-row:last-of-type{ border-bottom:none; }
.meter-row .route{ font-weight:600; }
.meter-row .fare{ font-family:var(--font-mono); font-weight:700; color: var(--teal-dark); }
.meter-foot{ margin-top:14px; display:flex; gap:10px; }
.meter-foot .btn{ flex:1; justify-content:center; padding:10px; font-size:13px; }

/* -------- Trust badge strip -------- */
.trust-strip{ background:#fff; border-bottom:1px solid var(--line); }
.trust-strip .container{ display:flex; justify-content:space-between; padding:18px 24px; flex-wrap:wrap; gap:16px 24px; }
.trust-item{ display:flex; align-items:center; gap:9px; font-size:13px; font-weight:600; color: var(--navy); }
.trust-item .icon{ color: var(--teal); width:20px; height:20px; }

/* -------- Services grid (8-up) -------- */
.svc-grid-8{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.svc-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:24px 20px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.svc-card:hover{ box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--teal); }
.svc-icon{
  width:48px; height:48px; border-radius:12px; background: var(--cream-2); color: var(--teal-dark);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px;
}
.svc-card h4{ font-size:15.5px; margin-bottom:6px; }
.svc-card p{ font-size:13px; margin:0; }

/* -------- Why Choose Us grid (6-up) -------- */
.svc-grid-6{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.wc-card{ background:#fff; border-radius: var(--radius); border:1px solid var(--line); padding:26px 22px; }
.wc-card h4{ font-size:15.5px; margin-bottom:6px; }
.wc-card p{ font-size:13.5px; margin:0; }

/* -------- How to Book steps -------- */
.step-card{ background:#fff; border-radius: var(--radius); border:1px solid var(--line); padding:26px 22px; position:relative; }
.step-num{
  font-family: var(--font-mono); font-size:13px; font-weight:700; color: var(--amber-dark);
  background: var(--cream-2); display:inline-flex; padding:5px 12px; border-radius:999px; margin-bottom:14px;
}
.step-card h4{ font-size:16px; margin-bottom:6px; }

/* -------- Generic carousel -------- */
.carousel{ position:relative; }
.carousel-viewport{ overflow:hidden; border-radius: var(--radius); }
.carousel-track{ display:flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.carousel-slide{ flex:0 0 100%; width:100%; }
.carousel-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:42px; height:42px; border-radius:50%; background:#fff; border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow: var(--shadow);
  color: var(--navy); transition: background .15s ease;
}
.carousel-arrow:hover{ background: var(--amber); }
.carousel-arrow .icon{ width:18px; height:18px; }
.carousel-arrow.prev{ left:-20px; }
.carousel-arrow.next{ right:-20px; }
.carousel-dots{ display:flex; justify-content:center; gap:8px; margin-top:18px; }
.carousel-dots button{ width:9px; height:9px; border-radius:50%; border:none; background: var(--line); cursor:pointer; padding:0; }
.carousel-dots button.active{ background: var(--teal); width:22px; border-radius:5px; }

/* Fleet showcase slider */
.showcase-slide{ display:grid; grid-template-columns: 1.1fr .9fr; gap:0; background:#fff; border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); }
.showcase-img{ height:100%; min-height:340px; background-size:cover; background-position:center; }
.showcase-body{ padding:38px 40px; display:flex; flex-direction:column; justify-content:center; }
.showcase-body .eyebrow-line{ justify-content:flex-start; }
.showcase-tags{ display:flex; gap:8px; flex-wrap:wrap; margin:14px 0 18px; }
.showcase-tags span{ font-size:12px; font-weight:700; background: var(--cream-2); color: var(--navy); padding:6px 12px; border-radius:999px; display:flex; align-items:center; gap:5px; }
.showcase-fare{ font-family:var(--font-mono); font-size:20px; font-weight:700; color: var(--teal-dark); margin-bottom:20px; }

/* Testimonial spotlight slider */
.tm-spotlight{ max-width:760px; margin:0 auto; text-align:center; }
.tm-slide-card{ background:#fff; border-radius: var(--radius); border:1px solid var(--line); padding:44px 48px; box-shadow: var(--shadow); }
.tm-slide-card .icon.quote-icon{ width:34px; height:34px; color: var(--amber); margin:0 auto 18px; }
.tm-slide-card p.quote{ font-size:17px; color: var(--ink); font-style:italic; margin-bottom:22px; }
.tm-slide-card .tm-top{ justify-content:center; }

/* -------- Sections -------- */
section{ padding: 74px 0; }
.section-head{ text-align:center; max-width:640px; margin:0 auto 44px; }
.eyebrow-line{ display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:10px; }
.eyebrow-line::before, .eyebrow-line::after{ content:""; width:32px; height:2px; background:var(--amber); }
.eyebrow-line span{ font-family:var(--font-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color: var(--teal-dark); }
.section-head h2{ font-size:32px; }
.section-alt{ background: var(--cream-2); }
.section-navy{ background: var(--navy); color:#fff; }
.section-navy h2, .section-navy h3{ color:#fff; }
.section-navy p{ color: rgba(255,255,255,.7); }

/* -------- Package / pricing cards -------- */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:32px; }

.pkg-card{
  background:#fff; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow);
  border:1px solid var(--line);
}
.pkg-card img{ height:170px; width:100%; object-fit:cover; }
.pkg-body{ padding:22px; }
.pkg-body h3{ font-size:18px; }
.pkg-body ul{ list-style:none; margin:0 0 18px; padding:0; font-size:14px; }
.pkg-body ul li{ display:flex; justify-content:space-between; padding:6px 0; border-bottom:1px dashed var(--line); color: var(--ink-soft); }
.pkg-body ul li .amt{ font-family:var(--font-mono); font-weight:700; color:var(--navy); }
.pkg-body ul li.note{ color: var(--amber-dark); font-style:italic; }

/* -------- Route table cards -------- */
.route-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.route-card{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  background:#fff; border:1px solid var(--line); border-radius:12px; padding:18px 20px;
  box-shadow: 0 4px 14px rgba(18,37,59,.05);
}
.route-card .rc-left h4{ font-size:15.5px; margin:0 0 4px; }
.route-card .rc-left span{ font-size:12.5px; color: var(--ink-soft); font-family:var(--font-mono); }
.route-card .rc-right{ text-align:right; }
.route-card .rc-right .price{ font-family:var(--font-mono); font-weight:700; color: var(--teal-dark); font-size:17px; display:block; }
.route-card .rc-actions{ display:flex; gap:8px; margin-top:8px; }
.icon-btn{
  width:36px; height:36px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center;
  color:#fff; padding:9px;
}
.icon-btn.call{ background: var(--navy); }
.icon-btn.wa{ background: var(--teal); }

/* -------- Fleet -------- */
.fleet-card{ background:#fff; border-radius: var(--radius); border:1px solid var(--line); padding:18px; text-align:center; box-shadow: var(--shadow); }
.fleet-card img{ height:120px; object-fit:contain; margin:0 auto 14px; }
.fleet-card h4{ font-size:16px; margin-bottom:8px; }
.fleet-tags{ display:flex; gap:6px; justify-content:center; flex-wrap:wrap; margin-bottom:12px; }
.fleet-tags span{ font-size:11px; background: var(--cream-2); color: var(--navy); padding:4px 9px; border-radius:999px; font-weight:600; }
.fleet-fare{ font-family:var(--font-mono); color: var(--teal-dark); font-weight:700; font-size:14px; margin-bottom:12px; }

/* -------- City / service tiles -------- */
.tile{
  background:#fff; border:1px solid var(--line); border-radius:12px; padding:22px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.tile:hover{ box-shadow: var(--shadow); transform: translateY(-3px); }
.tile .tile-icon{ width:42px; height:42px; border-radius:10px; background: var(--cream-2); color: var(--teal-dark); display:flex; align-items:center; justify-content:center; font-size:19px; margin-bottom:14px; }
.city-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }

/* -------- About / stats -------- */
.about-wrap{ display:grid; grid-template-columns: .9fr 1.1fr; gap:48px; align-items:center; }
.about-img{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.check-list{ list-style:none; margin:20px 0; padding:0; }
.check-list li{ display:flex; gap:10px; padding:7px 0; font-weight:500; color: var(--ink); }
.check-list li::before{ content:"✓"; width:22px; height:22px; border-radius:50%; background: var(--teal); color:#fff; display:flex; align-items:center; justify-content:center; font-size:12px; flex-shrink:0; }

.stat-strip{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; }
.stat-box{ background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:14px; padding:26px 14px; }
.stat-box .num{ font-family:var(--font-mono); font-size:32px; font-weight:700; color: var(--amber); }
.stat-box .lbl{ font-size:13px; color: rgba(255,255,255,.65); margin-top:6px; }

/* -------- FAQ -------- */
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:12px; margin-bottom:12px; overflow:hidden; }
.faq-q{ display:flex; justify-content:space-between; align-items:center; padding:18px 22px; cursor:pointer; font-weight:700; font-family:var(--font-head); font-size:15px; color:var(--navy); }
.faq-q .plus{ font-family:var(--font-mono); font-size:18px; color: var(--amber-dark); transition: transform .2s ease; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; padding:0 22px; }
.faq-item.open .faq-a{ max-height:220px; padding-bottom:18px; }
.faq-item.open .plus{ transform: rotate(45deg); }

/* -------- Testimonials -------- */
.tm-card{ background:#fff; border-radius: var(--radius); border:1px solid var(--line); padding:24px; box-shadow: var(--shadow); }
.tm-top{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.tm-avatar{ width:48px; height:48px; border-radius:50%; object-fit:cover; }
.tm-name{ font-weight:700; color: var(--navy); font-size:14.5px; }
.tm-stars{ color: var(--amber-dark); font-size:13px; letter-spacing:1px; }

/* -------- Quick enquiry form -------- */
.enquiry-card{ background:#fff; border-radius: var(--radius); box-shadow: var(--shadow); padding:28px; border:1px solid var(--line); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:14px; }
.form-row.full{ grid-template-columns:1fr; }
label{ font-size:12.5px; font-weight:700; color: var(--navy); display:block; margin-bottom:6px; text-transform:uppercase; letter-spacing:.03em; }
input, select, textarea{
  width:100%; padding:12px 14px; border-radius:9px; border:1.5px solid var(--line);
  font-family: var(--font-body); font-size:14px; background: var(--cream); color: var(--ink);
}
input:focus, select:focus, textarea:focus{ outline:none; border-color: var(--teal); }

/* -------- CTA band -------- */
.cta-band{
  background: linear-gradient(120deg, var(--teal-dark), var(--teal));
  color:#fff; border-radius:22px; padding:44px 48px;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
}
.cta-band h3{ color:#fff; font-size:24px; margin-bottom:6px; }
.cta-band p{ color: rgba(255,255,255,.8); margin:0; }

/* -------- Footer -------- */
footer{ background: var(--navy); color: rgba(255,255,255,.7); padding-top:64px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap:36px; padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-grid h4{ color:#fff; font-size:14px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:16px; }
.footer-grid ul{ list-style:none; margin:0; padding:0; }
.footer-grid ul li{ margin-bottom:9px; font-size:14px; }
.footer-grid ul li a:hover{ color: var(--amber); }
.footer-brand p{ color: rgba(255,255,255,.6); font-size:14px; max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover{ background: var(--amber); color: var(--navy); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:13px; flex-wrap:wrap; gap:10px; }

/* -------- Sticky mobile call bar -------- */
.mobile-callbar{ display:none; }

/* -------- Page hero (inner pages) -------- */
.page-hero{
  background: linear-gradient(150deg, var(--navy), var(--navy-2) 70%);
  color:#fff; padding:56px 0; text-align:center;
}
.page-hero h1{ color:#fff; font-size:34px; }
.breadcrumb{ font-family:var(--font-mono); font-size:12.5px; color: rgba(255,255,255,.6); margin-top:10px; }
.breadcrumb a{ color: var(--amber); }

/* -------- Responsive -------- */
@media (max-width: 980px){
  .hero .container{ grid-template-columns:1fr; }
  .grid-3, .grid-4, .route-grid, .city-grid, .svc-grid, .stat-strip, .svc-grid-8, .svc-grid-6{ grid-template-columns:repeat(2,1fr); }
  .about-wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  nav.main-nav{ display:none; }
  .hamburger{ display:inline-flex; }

  /* Mobile header: hide the utility topbar (address/social) and the top
     WhatsApp/Call buttons — the sticky bottom bar already covers Call/WhatsApp.
     Keep just the logo + hamburger up top. */
  .topbar{ display:none; }
  .nav-cta .btn{ display:none; }
  .nav-wrap{ padding:14px 0; }

  /* Mobile nav drawer */
  nav.main-nav.nav-open{
    display:block; position:fixed; top:0; right:0; height:100%; width:min(320px,86vw);
    background:#fff; z-index:200; box-shadow: -12px 0 40px rgba(0,0,0,.25);
    padding:22px 20px; overflow-y:auto;
    animation: slideIn .25s ease;
  }
  @keyframes slideIn{ from{ transform:translateX(100%); } to{ transform:translateX(0); } }
  nav.main-nav.nav-open ul{ flex-direction:column; align-items:stretch; gap:2px; }
  nav.main-nav.nav-open > ul > li{ border-bottom:1px solid var(--line); }
  nav.main-nav.nav-open > ul > li > a{
    display:flex; align-items:center; justify-content:space-between;
    padding:15px 4px; font-size:16px; min-height:44px;
  }
  nav.main-nav.nav-open .dropdown{
    position:static; box-shadow:none; border:none; display:none; padding:0 0 8px 12px;
    background: var(--cream); border-radius:8px; margin-bottom:6px;
  }
  nav.main-nav.nav-open .dropdown.open{ display:block; }
  nav.main-nav.nav-open .dropdown a{ padding:12px 10px; font-size:15px; }
  nav.main-nav.nav-open .submenu-toggle{
    display:inline-flex; align-items:center; justify-content:center;
    width:32px; height:32px; background:none; border:none; color: var(--navy);
    transition: transform .2s ease;
  }
  nav.main-nav.nav-open li.submenu-active .submenu-toggle{ transform: rotate(180deg); }
  .nav-drawer-close{
    display:flex; align-items:center; justify-content:flex-end; margin-bottom:10px;
  }
  .nav-drawer-close button{
    width:40px; height:40px; border-radius:50%; border:1px solid var(--line); background:#fff;
    display:flex; align-items:center; justify-content:center; color: var(--navy);
  }
  .nav-backdrop.open{
    display:block; position:fixed; inset:0; background:rgba(18,37,59,.5); z-index:190;
  }
}
@media (max-width: 620px){
  .grid-3, .grid-4, .route-grid, .footer-grid, .form-row, .svc-grid-6{ grid-template-columns:1fr; }
  .stat-strip{ grid-template-columns:repeat(2,1fr); }
  /* Keep Cities and Services cards 2-per-row on mobile instead of stacking
     full-width — cuts scroll length roughly in half */
  .city-grid, .svc-grid-8{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .tile{ padding:16px 14px; }
  .tile .tile-icon{ width:36px; height:36px; margin-bottom:10px; }
  .tile h4{ font-size:14.5px; margin-bottom:4px; }
  .tile p{ font-size:12px; }
  .svc-card{ padding:16px 14px; }
  .svc-icon{ width:40px; height:40px; margin-bottom:10px; }
  .svc-card h4{ font-size:14px; }
  .svc-card p{ font-size:12px; }
  .hero{ padding: 44px 0 90px; }
  .hero h1{ font-size:27px; }
  .hero p.lead{ font-size:15px; }
  .hero-stats{ gap:20px; }
  .hero-stats .num{ font-size:20px; }
  section{ padding: 52px 0; }
  .section-head h2{ font-size:25px; }
  .cta-band{ flex-direction:column; text-align:center; padding:32px 26px; }
  .cta-band .btn{ width:100%; justify-content:center; }
  .showcase-slide{ grid-template-columns:1fr; }
  .showcase-img{ min-height:200px; }
  .showcase-body{ padding:22px; }
  .showcase-body h3{ font-size:19px; }
  .carousel-arrow{ display:none; }
  .tm-slide-card{ padding:26px 20px; }
  .tm-slide-card p.quote{ font-size:15.5px; }
  .trust-strip .container{ justify-content:center; text-align:center; gap:14px; padding:16px 20px; }
  .trust-item{ font-size:12.5px; }
  .nav-wrap{ padding:12px 0; }
  .brand-mark-img{ width:42px; height:42px; }
  .brand-name{ font-size:17.5px; }
  .brand-tag{ font-size:10.5px; }
  .enquiry-card, .pkg-body, .tile{ padding:18px; }
  .about-wrap .about-img img{ max-height:220px; object-fit:cover; width:100%; }

  /* Prevent iOS input auto-zoom: font-size must be >=16px */
  input, select, textarea{ font-size:16px; padding:13px 14px; }

  /* Comfortable tap targets */
  .btn{ min-height:44px; }
  .icon-btn{ width:40px; height:40px; }
  .footer-social a{ width:40px; height:40px; }
  .faq-q{ padding:16px 18px; font-size:14.5px; }

  .mobile-callbar{
    display:flex; position:fixed; bottom:0; left:0; right:0; z-index:60;
    box-shadow: 0 -6px 20px rgba(0,0,0,.15);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-callbar a{
    flex:1; text-align:center; padding:14px; font-weight:700; font-size:14px;
    display:flex; align-items:center; justify-content:center; gap:8px; min-height:52px;
  }
  .mobile-callbar a.call{ background: var(--navy); color:#fff; }
  .mobile-callbar a.wa{ background: var(--teal); color:#fff; }
  body{ padding-bottom: calc(52px + env(safe-area-inset-bottom, 0)); }
}
@media (max-width: 380px){
  .hero h1{ font-size:24px; }
  .container{ padding:0 16px; }
}


/* -------- Lead capture popup -------- */
.lp-overlay{
  position:fixed; inset:0; z-index:300; background:rgba(18,37,59,.6);
  display:none; align-items:center; justify-content:center; padding:20px;
  backdrop-filter: blur(2px);
}
.lp-overlay.show{ display:flex; animation: lpFade .25s ease; }
@keyframes lpFade{ from{ opacity:0; } to{ opacity:1; } }
.lp-modal{
  background:#fff; border-radius:16px; max-width:560px; width:100%;
  max-height:92vh; overflow-y:auto; position:relative; box-shadow: 0 30px 80px rgba(0,0,0,.4);
  animation: lpPop .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes lpPop{ from{ transform:scale(.92); opacity:0; } to{ transform:scale(1); opacity:1; } }
.lp-close{
  position:absolute; top:14px; right:14px; width:36px; height:36px; border-radius:50%;
  background:#fff; border:1.5px solid var(--line); color:var(--navy);
  display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:2;
}
.lp-close:hover{ background: var(--cream-2); }
.lp-head{
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color:#fff; text-align:center; padding:30px 24px 24px; border-radius:16px 16px 0 0;
}
.lp-logo{ width:52px; height:52px; margin:0 auto 10px; border-radius:10px; background:#fff; object-fit:contain; }
.lp-head h3{ color:#fff; font-size:24px; margin-bottom:2px; }
.lp-head sup{ font-size:12px; }
.lp-head p{ color: var(--amber); font-weight:700; margin:0; letter-spacing:.03em; }
.lp-form{ padding:26px 28px 28px; }
.lp-radio-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0 18px; margin-bottom:18px; }
.lp-radio-col{ display:flex; flex-direction:column; gap:4px; }
.lp-radio{ display:flex; align-items:center; gap:10px; padding:8px 4px; cursor:pointer; font-size:14px; color: var(--ink); }
.lp-radio input{ position:absolute; opacity:0; width:0; height:0; -webkit-appearance:none; appearance:none; }
.lp-radio-dot{
  width:19px; height:19px; border-radius:50%; border:2px solid var(--line); flex-shrink:0; position:relative;
}
.lp-radio input:checked + .lp-radio-dot{ border-color: var(--teal); }
.lp-radio input:checked + .lp-radio-dot::after{
  content:""; position:absolute; inset:3px; border-radius:50%; background: var(--teal);
}
.lp-form .form-row{ margin-bottom:12px; }
.lp-form input[type="text"], .lp-form input[type="tel"], .lp-form input[type="email"]{
  background: var(--cream); border:1.5px solid var(--line); border-radius:8px; padding:12px 14px; font-size:14px;
}
.lp-consent{
  display:flex; gap:10px; align-items:flex-start; font-size:12.5px; color: var(--ink-soft);
  margin:16px 0 18px; cursor:pointer; line-height:1.5;
}
.lp-consent input{ margin-top:3px; flex-shrink:0; width:16px; height:16px; accent-color: var(--teal); }
.lp-submit{ width:100%; justify-content:center; padding:14px; font-size:15px; letter-spacing:.04em; }
.lp-note{ text-align:center; font-size:12.5px; margin:14px 0 0; color: var(--ink-soft); }
.lp-note a{ color: var(--teal-dark); font-weight:700; }
.lp-thanks{ text-align:center; padding:40px 28px; }
.lp-thanks .icon{ width:56px; height:56px; color: var(--teal); margin:0 auto 16px; }
.lp-thanks h4{ font-size:20px; margin-bottom:8px; }

@media (max-width: 560px){
  .lp-form{ padding:18px 18px 20px; }
  .lp-head{ padding:20px 18px 16px; }
  .lp-head h3{ font-size:19px; }
  .lp-head p{ font-size:13px; }
}
@media (max-width: 620px){
  /* iOS auto-zoom fix: popup's own input rule was more specific than the
     global 16px rule, so it needs its own override */
  .lp-form input[type="text"], .lp-form input[type="tel"], .lp-form input[type="email"]{
    font-size:16px; padding:11px 13px;
  }
  /* Keep the 2-column radio layout on mobile too (this is what makes the
     popup fit in one screen) — do NOT collapse to a single stacked column */
  .lp-radio-grid{ margin-bottom:12px; }
  .lp-radio{ padding:5px 2px; font-size:12.5px; gap:8px; }
  .lp-radio-dot{ width:16px; height:16px; }
  .lp-form .form-row{ margin-bottom:9px; gap:9px; }
  .lp-consent{ font-size:11px; margin:11px 0 12px; gap:8px; }
  .lp-consent input{ width:14px; height:14px; }
  .lp-submit{ padding:12px; font-size:14px; }
  .lp-note{ font-size:11px; margin-top:9px; }
}
@media (max-width: 400px){
  .lp-overlay{ padding:8px; }
  .lp-modal{ max-height:96vh; border-radius:14px; }
  .lp-head{ padding:18px 40px 14px 16px; border-radius:14px 14px 0 0; }
  .lp-logo{ width:36px; height:36px; margin-bottom:6px; }
  .lp-head h3{ font-size:17px; }
  .lp-close{ top:9px; right:9px; width:30px; height:30px; }
  .lp-form{ padding:14px 14px 16px; }
  .lp-radio{ font-size:12px; }
  .lp-radio-dot{ width:15px; height:15px; }
  .lp-note{ display:none; }
}
@media (max-height: 680px) and (max-width: 620px){
  .lp-head{ padding:14px 40px 10px 14px; }
  .lp-logo{ width:34px; height:34px; margin-bottom:4px; }
  .lp-head h3{ font-size:16px; margin-bottom:0; }
  .lp-head p{ font-size:12px; }
  .lp-form{ padding:12px 14px 14px; }
  .lp-radio-grid{ margin-bottom:8px; }
  .lp-radio{ padding:3px 2px; }
  .lp-note{ display:none; }
}
