:root{
  /* Light theme base */
  --bg: #f6f7fb;
  --panel: rgba(255,255,255,.92);
  --panel2: rgba(255,255,255,.80);

  --ink: #121318;                 /* main text */
  --muted: rgba(18,19,24,.72);    /* secondary text */
  --muted2: rgba(18,19,24,.55);   /* small/meta text */

  --bolt: #ffcc11;                /* brand accent */
  --shadow: rgba(0,0,0,.18);

  --road: rgba(255,255,255,.70);  /* "ghost" button background */
  --roadLine: rgba(255,204,17,.45);

  --stroke: rgba(18,19,24,.12);
  --stroke2: rgba(18,19,24,.18);

  --radius: 15px;

  /* Shadows for light UI */
  --shadowSoft: 0 14px 34px rgba(16,18,28,.12);
  --shadowCard: 0 12px 28px rgba(16,18,28,.10);

  --max: 1180px;

  --darkgrey: #616161;
}
i{
  color: var(--bolt);
  text-shadow: 0 2px 6px rgba(0,0,0,.25);
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.22));
}

*{ 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);
  line-height: 1.45;
  background-color: var(--bg);

  /* image */
  background: url("/public/images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* nice parallax feel */
  overflow-x: hidden;
}



@media (max-width: 768px){
  body{ 
    background: #fff}
  .section {
      background: url("/public/images/background.jpg");
      background-size: auto;
      background-position: contain;
      background-repeat: no-repeat;
      background-attachment: fixed; /* nice parallax feel */
  }

}

img{ max-width:100%; height:auto; display:block;}
a{ color: inherit; text-decoration: none; }
code{   background: rgba(18,19,24,.06);
 padding:.1rem .35rem; border-radius: .5rem; border:1px solid var(--stroke); }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 18px; }
.muted{ color: var(--muted); }
.small{ font-size: .92rem; }
.center{ text-align:center; }
.pad-top{ padding-top: 18px; }
.sr-only{ position:absolute; left:-9999px; }
.hide-sm{ display: inline; }

.skip-link{
  position:absolute; left:-9999px; top:0;
  background: var(--bolt); color:#0b0b0c; padding: 10px 12px; border-radius: 999px;
}
.skip-link:focus{ left: 14px; top: 14px; z-index: 9999; }

/* Taxi themed background (subtle road + dots) */
.taxi-bg{
  background:
    radial-gradient(circle at 18px 18px, rgba(255,204,17,.04) 2px, transparent 3px) 0 0/36px 36px,
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 35%),
    radial-gradient(900px 500px at 50% -80px, rgba(255,204,17,.10), transparent 62%),
    var(--bg);
}

/* Header */
/* =========================================================
   HEADER (REPLACE ALL EXISTING HEADER CSS WITH THIS)
   Goals:
   - Sticky top header
   - Desktop: centered nav tabs, logo left, clean spacing
   - Mobile: logo left, burger right, nav as dropdown
   - Phone/WhatsApp moved OUT of header (use .top-contact-bar)
   ========================================================= */

/* A11y */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:12px;
  top:12px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius: 12px;
  background: rgba(255,204,17,.15);
  border: 1px solid rgba(255,204,17,.35);
  color: var(--ink);
  z-index: 999;
}

/* =========================
   TOP HEADER (STICKY ALWAYS)
   ========================= */
/* Top header (sticky) */
.top-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}

.top-header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}


.top-left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.top-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,204,17,.14);
  border: 1px solid rgba(255,204,17,.28);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .06em;
  font-size: .82rem;
  white-space: nowrap;
}

.top-text{
  color: var(--muted);
  font-size: .92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-right{
  display:flex;
  align-items:center;
  gap: 10px;
}

.top-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--ink);
  text-decoration:none;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

.top-pill:hover{
  background: rgba(255,255,255,.08);
}

.top-pill--wa{
  border-color: rgba(255,204,17,.30);
  background: rgba(255,204,17,.10);
}

.top-pill--wa:hover{
  background: rgba(255,204,17,.14);
}

.pill-label{ opacity: .92; }
.pill-value{ opacity: .82; font-weight: 700; }

/* Mobile tightening */
@media (max-width: 720px){
  .top-text{ display:none; } /* keep it clean on mobile */
  .top-pill{ height: 32px; padding: 0 10px; }
  .pill-value{ display:none; } /* keep only icon + label */
}

/* Ultra small phones */
@media (max-width: 420px){
  .pill-label{ display:none; } /* keep icon only if needed */
  .top-pill{ padding: 0 10px; }
}

/* =========================
   NAVBAR (NOT STICKY)
   ========================= */
.site-header{
  position: relative;   /* not sticky */
  top: auto;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* Make sure the sticky top-header doesn't cover anchors */
:root{ scroll-padding-top: 60px; }

/* Adjust scroll padding for mobile */
@media (max-width: 720px){
  :root{ scroll-padding-top: 56px; }
}


/* Layout */
.header-inner{
  display:grid;
  grid-template-columns: auto 1fr auto; /* brand | nav | burger (desktop burger hidden) */
  align-items:center;
  gap: 14px;
  padding: 12px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 140px;
  text-decoration:none;
}
.brand-mark{
  position:relative;
  width: 200px;
  height: 54px;
  display:grid;
  place-items:center;
}
.brand-logo{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events:none;
  opacity: .98;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.35));
}
.bolt-shadow{
  position:absolute;
  inset: 2px 2px 0 0;
  border-radius: 14px;
  background: rgba(160,160,160,.16);
  transform: translate(2px, 2px);
  filter: blur(10px);
  z-index: -1;
}

/* Nav (Desktop tabs) */
.nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: visible;
}
.nav a{
  color: var(--muted);
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid transparent;
  background: transparent;
}
.nav a:hover{
  color: var(--ink);
  background: rgba(18,19,24,.05);
}
.nav a.active{
  color: var(--ink);
  background: rgba(255,204,17,.20);
  border-color: rgba(255,204,17,.35);
}
.nav .nav-cta{
  background: var(--bolt);
  color: #151515;
  border-color: rgba(0,0,0,.12);
}
.nav .nav-cta:hover{
  background: #ffd84b;
}

/* Road line */
.road-line{
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--roadLine), transparent);
}

/* Burger button */
.nav-toggle{
  display:none; /* desktop hidden */
  justify-self: end;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255, 255, 255, 0.726);
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--ink);
  cursor:pointer;
}
.nav-toggle:hover{ background: rgba(255,255,255); }
.burger{
  width: 22px;
  height: 14px;
  position: relative;
  display:block;
}
.burger::before,
.burger::after,
.burger span{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background: var(--ink);
  border-radius: 2px;
  opacity: .9;
}
.burger::before{ top:0; }
.burger::after{ bottom:0; }
.burger span{ top: 6px; }

/* =========================================================
   MOBILE NAV
   - Logo left, burger right
   - Nav becomes dropdown panel under header
   - Uses existing JS that toggles aria-expanded and a class.
   If your JS toggles .nav-open on body/html, keep selector below.
   If your JS toggles .open on .nav, keep the fallback selectors.
   ========================================================= */

@media (max-width: 980px){
  .header-inner{
    grid-template-columns: auto 1fr auto; /* logo | spacer | burger */
    gap: 10px;
    padding: 10px 0;
  }

  .brand-mark{
    width: 170px;
    height: 48px;
  }

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    gap: 10px;
  }

  /* Turn nav into a dropdown panel */
  .nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    gap: 6px;
    padding: 12px;
    margin: 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.10);
    border-top: 1px solid rgba(255,255,255,.08);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    justify-content: stretch;
    background: #f6f7fb;
  }

  .nav a{
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
  }
  .nav a:hover{
    transform: none;
    background: rgba(255,255,255,.06);
  }
  .nav .nav-cta{
    background: rgba(255,204,17,.95);
    border-color: rgba(0,0,0,.20);
  }

  /* Open states (support both patterns) */
  .nav.is-open,
  .nav.open,
  .site-header .nav[data-open="true"]{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* If your JS toggles aria-expanded on the button, use adjacent selector */
  .nav-toggle[aria-expanded="true"] + .nav{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Smaller phones */
@media (max-width: 420px){
  .brand-mark{ width: 150px; height: 44px; }
  .nav-toggle{ padding: 9px 10px; border-radius: 12px; }
}

/* If you have a top contact bar, reduce it slightly on small screens */
@media (max-width: 600px){
  .top-contact-inner{ justify-content: space-between; }
  .top-pill{ padding: 8px 10px; font-size: .92rem; }
}


/* Hero */
.hero{
  padding-block: 10vh;
  position: relative;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  align-items: center;
}

/* background layer */
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills hero nicely */
  transform: scale(1.02); /* removes edge gaps on some devices */
}

/* dark overlay for readable text */
.hero-bg-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(255,255,255,.20), rgba(255,255,255,.68)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.219), rgba(255,255,255,.52));
}

/* ensure content is above */
.hero .wrap.hero-grid{
  position: relative;
  z-index: 1;
}

/* optional: give hero text a little extra contrast */
.hero-copy{
  text-shadow: 0 10px 24px rgba(0,0,0,.45);
}

/* optional: reduce motion for people who prefer it */
@media (prefers-reduced-motion: reduce){
  .hero-bg-video{ display: none; }
  .hero-bg-overlay{
    background: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.55));
  }
}

.kicker{
  display:flex; align-items:center; gap: 10px;
  color: var(--ink);
  font-size: .95rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.kicker-dot{
  width: 10px; height:10px;
  background: var(--bolt);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(255,204,17,.12);
}
h1{
  font-size: clamp(2.0rem, 4vw, 3.1rem);
  margin: 14px 0 10px;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.bolt-word{
  position:relative;
  display:inline-block;
  padding: 0 6px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,204,17,.18), rgba(255,204,17,.03));
  border: 1px solid rgba(255,204,17,.25);
}
.lead{ font-size: 1.12rem; color: var(--muted); }
.hero-cta{ display:flex; gap: 12px; flex-wrap: wrap; margin: 16px 0 0; 
align-items: center;
justify-content: center;
text-align: center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  transition: transform .14s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor:pointer;
  user-select:none;
  box-shadow: 0 8px 18px rgba(16,18,28,.08);
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.98);
  border-color: var(--stroke2);
}
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: var(--bolt);
  border-color: rgba(0,0,0,.12);
  color: #151515;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255,204,17,.25);
}
.btn-primary:hover{ background: #ffd84b; }

.btn-ghost{
  background: rgba(255,255,255,.70);
}
.badge{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-size: .9rem;
}
.hero-badges{ display:flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.hero-visual{ display:flex; flex-direction:column; gap: 14px; }
.taxi-stage{
  position: relative;
  padding: 16px;
  min-height: 140px;
  overflow:hidden;
}
.taxi-drive{
  width: min(420px, 90%);
  margin-left: auto;
  transform: translateX(-140%) translateY(8px);
  opacity: 0;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.35));
  will-change: transform, opacity;
}
.taxi-drive.is-in{
  animation: driveIn 1.15s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes driveIn{
  0%{ transform: translateX(-140%) translateY(8px); opacity: 0; }
  70%{ opacity: 1; }
  100%{ transform: translateX(0%) translateY(8px); opacity: 1; }
}
.taxi-glow{
  position:absolute; inset: -40px;
  background: radial-gradient(closest-side at 80% 60%, rgba(255,204,17,.18), transparent 66%);
  pointer-events:none;
  filter: blur(2px);
}

.video-frame{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--stroke);
  overflow:hidden;
  box-shadow: var(--shadowCard);
}
.video-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-bottom: 1px solid var(--stroke);
}
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,204,17,.28);
  background: rgba(255,204,17,.10);
  color: var(--ink);
  font-size: .9rem;
}
.hero-video{ width:100%; height:auto; display:block; background: #000; }

.hero-road{
  padding-block: 4vh;
  height: 60px;
  background: var(--darkgrey);
}

.dash{
  height: 6px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,204,17,.35) 0 22px,
      transparent 22px 44px
    );
  filter: blur(.1px);
  animation: dashMove 5.5s linear infinite;
}
@keyframes dashMove{
  to{ transform: translateX(44px); }
}

/* Sections */
.section{ padding: 54px 0; 
align-items: center;
text-align: center;
justify-content: center;}
.section-alt{
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(6px);
  align-items: center;
text-align: center;
justify-content: center;
}
.section-head h2{ margin:0; }
h2{ font-size: clamp(1.55rem, 2.2vw, 2.0rem); margin: 0 0 10px; }
h3{ margin: 0 0 8px; }

.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

/* Generic “panel” feel */
.panel,
.video-frame,
.map-card,
.reviews-bar,
.review,
.review-skeleton,
.tile,
.story-card,
.form,
.note,
.step{
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadowCard);
}
.card{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadowCard);
}
.card img{
  width:100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}
.card-body{ padding: 14px 14px 16px; }
.card p{ margin: 8px 0 0; color: var(--muted); }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.checklist{
  padding-left: 0;
  list-style: none;
  margin: 14px 0 0;
}
.checklist li{
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left: 0;
  top: 0;
  color: var(--bolt);
  font-weight: 800;
}
.cta-row{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; 
align-items: center;
justify-content: center;
text-align: center;
}

.photo-stack{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.photo-stack img{
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadowCard);
  height: 180px;
  object-fit: cover;
}

.reviews-bar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255);
  border: 1px solid var(--stroke);
  margin-bottom: 2vh;
}
.rating{ display:flex; align-items:center; gap: 10px; }
.stars{ color: var(--bolt); letter-spacing: .08em; }

.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.review, .review-skeleton{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--stroke);
  padding: 14px;
  box-shadow: var(--shadowCard);
  min-height: 126px;
}
.review-skeleton{
  background:
    linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.09), rgba(255,255,255,.04));
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
}
@keyframes shimmer{
  0%{ background-position: 0% 0; }
  100%{ background-position: -200% 0; }
}
.review-top{ display:flex; gap: 10px; align-items:center; }
.avatar{
  width: 34px; height:34px; border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  object-fit: cover;
}
.review-name{ font-weight: 700; }
.review-meta{ color: var(--muted2); font-size: .92rem; }
.review-text{ margin: 10px 0 0; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

.map-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--stroke);
  overflow:hidden;
  box-shadow: var(--shadowCard);
}
.map-card img{ width:100%; height: 320px; object-fit: cover; }
.map-card-footer{
  display:flex; gap: 12px; flex-wrap: wrap;
  padding: 12px;
  border-top: 1px solid var(--stroke);
}

.embed iframe{
  width:100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadowCard);
}

.faq{ display:grid; gap: 10px; }
.faq-q{
  width:100%;
  text-align:left;
  padding: 12px 12px;
  border-radius: 15px 15px 0px 0px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255);
  color: var(--ink);
  font-weight: 700;
  cursor:pointer;
}
.faq-a{
  display:none;
  padding: 2px 12px 12px;
  color: var(--muted);
  background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0px 0px 15px 15px;

}
.faq-q[aria-expanded="true"] + .faq-a{ display:block; }

.faq-toolbar{
  display:grid;
  gap: 12px;
  align-items:center;
  margin-bottom: 16px;
}
.search input{
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.9);
  color: var(--text);
}
.faq-chips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.faq-links{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.final-cta{
  background:
    radial-gradient(900px 500px at 50% 40%, rgba(255,204,17,.18), transparent 90%),
    rgba(255,255,255,.55);
}

/* Pages */
.page{ padding-bottom: 32px; }
.page-hero{
  padding: 60px 10px;
  background: #fff;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.filters{ display:flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.chip-btn{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.8);
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  cursor:pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip-btn:hover{ background: rgba(255,255,255,.06); color: var(--ink); }
.chip-btn.active{ background: rgba(255,204,17,.12); color: var(--ink); border-color: rgba(255,204,17,.22); }

.service-list{ display:grid; gap: 14px; }
.service-card{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--stroke);
  overflow:hidden;
  box-shadow: var(--shadowCard);
}
.service-card img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}
.service-card > div{ padding: 14px 14px 16px; }
.mini{ margin: 10px 0 0; color: var(--muted); 
align-items: start;
text-align: start;
justify-items: start;}
.mini li{ margin: 6px 0; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.step{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--stroke);
  padding: 14px;
}
.step-num{
  width: 34px; height:34px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: rgba(255,204,17,.12);
  border: 1px solid rgba(255,204,17,.22);
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 10px;
}

.gallery-toolbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.masonry{
  columns: 3 260px;
  column-gap: 14px;
}
.tile{
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadowCard);
  cursor: zoom-in;
}
.tile img{ width:100%; height:auto; }
.tile figcaption{
  padding: 10px 12px;
  color: var(--muted);
  font-size: .95rem;
  border-top: 1px solid var(--stroke);
}

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  display:none;
  place-items: center;
  z-index: 80;
  padding: 18px;
}
.lightbox[aria-hidden="false"]{ display:grid; }
.lightbox img{
  max-width: min(1000px, 96vw);
  max-height: 76vh;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: #000;
}
.lightbox-close{
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.08);
  color: var(--ink);
  padding: 10px 12px;
  cursor:pointer;
}
.lightbox-cap{
  margin-top: 10px;
  color: var(--muted);
  text-align:center;
}

.contact-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}
.contact-card{
  display:flex;
  align-items:center;
  gap: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255);
  border: 1px solid var(--stroke);
  padding: 14px;
  box-shadow: var(--shadowCard);
  transition: transform .14s ease, background .2s ease;
}
.contact-card:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }
.contact-ico{
  width: 44px; height:44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(255,204,17,.10);
  border: 1px solid rgba(255,204,17,.22);
  font-size: 1.1rem;
}
.contact-title{ color: var(--muted2); font-size: .95rem; }
.contact-val{ font-weight: 800; letter-spacing: .01em; }

.note{
  margin-top: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255);
  border: 1px solid var(--stroke);
  padding: 14px;
  color: var(--muted);
}
.form{
  display:grid;
  gap: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255);
  border: 1px solid var(--stroke);
  padding: 14px;
  box-shadow: var(--shadowCard);
}
label{ display:grid; gap: 6px; color: var(--muted); font-size: .95rem; }
input, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  padding: 12px 12px;
  color: var(--ink);
  outline: none;
}
input:focus, textarea:focus{ 
  border-color: rgba(255,204,17,.35); 
  box-shadow: 0 0 0 4px rgba(255,204,17,.12); }
.alert{
  border-radius: var(--radius);
  background: rgba(255,204,17,.10);
  border: 1px solid rgba(255,204,17,.24);
  padding: 12px 14px;
  color: var(--ink);
  margin-bottom: 12px;
}
.social-row{ display:flex; gap: 12px; flex-wrap: wrap; }

.quote{
  margin-top: 14px;
  border-left: 3px solid rgba(255,204,17,.55);
  padding-left: 12px;
  color: var(--muted);
}
.story-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--stroke);
  overflow:hidden;
  box-shadow: var(--shadowCard);
}
.story-card img{ height: 250px; object-fit: cover; width:100%; }
.story-card-body{ padding: 14px; }

/* Footer */
.site-footer{
  border-top: 1px solid var(--stroke);
  background: rgba(228, 228, 228, 0.9);
  backdrop-filter: blur(10px);
    padding: 0px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
  padding-top: 20px;
}
.link-list{
  list-style:none;
  padding-left: 0;
  margin: 10px 0 0;
  display:grid;
  gap: 8px;
}
.link-list a{ color: var(--muted); }
.link-list a:hover{ color: var(--ink); text-decoration: underline; }
.footer-bottom{
  background-color: var(--darkgrey);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--stroke);
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  grid-template-columns: 1fr;
  padding: 54px 0; 
}
.footer-credits-text {
    text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Sticky CTA for mobile */
.sticky-cta{
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display:none;
  gap: 10px;
  z-index: 60;
}
.sticky-btn{
  flex: 1;
  text-align:center;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadowCard);
}
.sticky-btn--bolt{
  background: rgba(255,204,17,.92);
  color: #0b0b0c;
  border-color: rgba(0,0,0,.2);
  font-weight: 900;
}

/* Scroll/Load reveal */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .6s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0px);
}

/* Lightning strike animation on bolt elements */
.bolt-pulse{ position: relative; overflow:hidden; }
.bolt-pulse::after{
  content:"";
  position:absolute;
  inset: -60% -40%;
  background: radial-gradient(circle at 30% 40%, rgba(255,204,17,.45), transparent 55%);
  transform: translateX(-120%) rotate(18deg);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events:none;
}
.bolt-pulse.is-striking::after{
  opacity: 1;
  animation: strike 650ms ease-out forwards;
}
@keyframes strike{
  0%{ transform: translateX(-120%) rotate(18deg); }
  60%{ transform: translateX(10%) rotate(18deg); }
  100%{ transform: translateX(140%) rotate(18deg); opacity: 0; }
}
.bolt-strike.is-striking{
  box-shadow: 0 0 0 6px rgba(255,204,17,.12);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
  .footer-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}

@media (max-width: 740px){
  .hide-sm{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .services-grid{ grid-template-columns: 1fr; }
  .reviews-grid{ grid-template-columns: 1fr; }
  .service-card{ grid-template-columns: 1fr; }
  .service-card img{ height: 200px; }
  .sticky-cta{ display:flex; }
}


/* ===== Reviews Marquee (static, smooth auto-scroll) ===== */
.reviews-marquee{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadowCard);
  margin-top: 14px;
}

/* soft fade edges */
.reviews-marquee::before,
.reviews-marquee::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 42px;
  z-index: 2;
  pointer-events:none;
}
.reviews-marquee::before{
  left:0;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,0));
}
.reviews-marquee::after{
  right:0;
  background: linear-gradient(270deg, rgba(255,255,255,.95), rgba(255,255,255,0));
}

.reviews-track{
  display:flex;
  gap: 14px;
  padding: 14px;
  will-change: transform;
  animation: reviewsScroll 48s linear infinite;
}

/* Pause on hover (desktop) */
.reviews-marquee:hover .reviews-track{
  animation-play-state: paused;
}

/* Pause on touch/drag */
.reviews-marquee:active .reviews-track{
  animation-play-state: paused;
}

@keyframes reviewsScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); } /* because we duplicated the set */
}

.review-card{
  flex: 0 0 auto;
  width: clamp(260px, 34vw, 420px);
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 22px rgba(16,18,28,.10);
  padding: 14px 14px 16px;
}

.review-top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.review-name{
  font-weight: 900;
  letter-spacing: .01em;
}
.review-date{
  color: var(--muted2);
  font-size: .92rem;
  white-space: nowrap;
}
.review-stars{
  margin-top: 6px;
  letter-spacing: .12em;
  color: var(--bolt);
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.14));
}
.review-text{
  margin: 10px 0 0;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile: tighter cards, faster feel */
@media (max-width: 720px){
  .reviews-track{ padding: 12px; animation-duration: 40s; }
  .review-card{ width: 78vw; }
  .reviews-marquee::before,
  .reviews-marquee::after{ width: 28px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .reviews-track{ animation: none; overflow-x: auto; scroll-snap-type: x mandatory; }
  .review-card{ scroll-snap-align: start; }
}


/* ===== Reviews Carousel (autoplay + arrows + dots + swipe) ===== */
.reviews-wrap{
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadowCard);
  overflow: hidden;
}

/* Controls row */
.reviews-controls{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--stroke);
  background: rgba(255,255,255,.65);
}

/* Arrows */
.rev-arrow{
  width: 38px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.86);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display:grid;
  place-items:center;
  box-shadow: 0 8px 18px rgba(16,18,28,.08);
}
.rev-arrow:hover{ background: rgba(255,255,255,.98); }
.rev-arrow:active{ transform: translateY(1px); }
.rev-arrow:disabled{
  opacity: .45;
  cursor: not-allowed;
}

/* Dots */
.rev-dots{
  display:flex;
  gap: 8px;
  align-items:center;
  justify-content:center;
  flex: 1;
}
.rev-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(18,19,24,.25);
  background: rgba(18,19,24,.18);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.rev-dot:hover{ transform: scale(1.15); }
.rev-dot.active{
  background: rgba(255,204,17,.95);
  border-color: rgba(255,204,17,.95);
  box-shadow: 0 0 0 6px rgba(255,204,17,.16);
}

/* Viewport with snap scrolling */
.reviews-viewport{
  margin-top: 5vh;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Fade edges */
.reviews-viewport::before,
.reviews-viewport::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 38px;
  z-index: 2;
  pointer-events:none;
}

.reviews-track{
  display:flex;
  gap: 14px;
  padding: 14px;
}

/* Each card snaps */
.review-card{
  flex: 0 0 auto;
  width: clamp(280px, 34vw, 440px);
  scroll-snap-align: start;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 22px rgba(16,18,28,.10);
  padding: 14px 14px 16px;
}

.review-top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.review-name{ font-weight: 900; }
.review-date{ color: var(--muted2); font-size: .92rem; white-space: nowrap; }
.review-stars{
  margin-top: 6px;
  letter-spacing: .12em;
  color: var(--bolt);
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.14));
}
.review-text{
  margin: 10px 0 0;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile tweaks */
@media (max-width: 720px){
  .review-card{ width: 84vw; }
  .reviews-viewport::before,
  .reviews-viewport::after{ width: 26px; }
}

/* Reduce motion: disable autoplay (JS will respect this too) */
@media (prefers-reduced-motion: reduce){
  .reviews-viewport{ scroll-behavior: auto; }
}


/* Hide scrollbar but keep scrolling */
#reviewsViewport{
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge legacy */
}
#reviewsViewport::-webkit-scrollbar{
  display: none;                /* Chrome/Safari */
}

.chef img{
  width: 100%;
  height: 100%;
  
}