/* ===========================================================
   F7 CAR CARE — Global Stylesheet
   Theme: White · Yellow · Black
   =========================================================== */

/* ----------  Design tokens  ---------- */
:root {
  --bg:          #ffffff;
  --bg-2:        #f4f5f8;
  --panel:       #ffffff;
  --panel-2:     #fafbfc;
  --line:        #e5e7ec;

  --yellow:      #ffd400;   /* vivid yellow — buttons, accents, dark-section text */
  --yellow-soft: #ffe666;
  --gold:        #b5840a;   /* readable yellow-gold for text/markers on white */
  --red:         #e2001a;
  --green:       #00923f;

  --ink:         #14161b;   /* near-black — dark sections, headings */
  --ink-2:       #0c0d10;
  --text:        #16181d;
  --muted:       #5b616b;
  --muted-2:     #9298a2;

  --glow:        0 0 24px rgba(255, 212, 0, .45);
  --glow-soft:   0 0 14px rgba(255, 212, 0, .28);

  --radius:      14px;
  --radius-sm:   9px;
  --maxw:        1200px;

  --font-display: 'Orbitron', sans-serif;
  --font-head:    'Rajdhani', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: 92px 0; position: relative; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.05; letter-spacing: .01em; color: var(--ink); }
.section-title { font-size: clamp(2rem, 4.6vw, 3.4rem); text-transform: uppercase; margin: 14px 0 16px; }
.section-title .hl { color: var(--red); }
.lead { color: var(--muted); max-width: 620px; font-size: 1.05rem; }
.center .lead { margin-inline: auto; }

/* ----------  Buttons  ---------- */
.btn {
  --b: var(--yellow);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--b);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s;
  position: relative; white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--yellow); color: #1a1500; border-color: var(--yellow); box-shadow: var(--glow-soft); }
.btn-primary:hover { box-shadow: var(--glow); transform: translateY(-3px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(20,22,27,.28); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-3px); }
.btn-wa { background: var(--green); border-color: var(--green); color: #fff; }
.btn-wa:hover { box-shadow: 0 0 22px rgba(0,146,63,.45); transform: translateY(-3px); }
.btn-call { background: transparent; border-color: var(--red); color: var(--red); }
.btn-call:hover { background: var(--red); color: #fff; box-shadow: 0 0 22px rgba(226,0,26,.4); transform: translateY(-3px); }
.btn-sm { padding: 10px 18px; font-size: .85rem; }

/* buttons sitting on dark sections (hero, page-hero, cta band, footer) */
.hero .btn-ghost, .page-hero .btn-ghost, .cta-band .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,.4);
}
.hero .btn-ghost:hover, .page-hero .btn-ghost:hover, .cta-band .btn-ghost:hover {
  background: #fff; color: var(--ink); border-color: #fff;
}
.cta-band .btn-call, .hero .btn-call { color: #ff5a63; border-color: #ff5a63; }
.cta-band .btn-call:hover, .hero .btn-call:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ----------  Navbar  ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  transition: padding .3s, box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 6px 24px rgba(20,22,27,.09); padding-block: 9px; }
.nav-inner { width: 100%; max-width: var(--maxw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 50px; width: auto; transition: height .3s; }
.nav.scrolled .brand img { height: 42px; }
.brand-text { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: .04em; line-height: 1; color: var(--ink); }
.brand-text small { display: block; font-family: var(--font-head); font-weight: 600; font-size: .62rem; letter-spacing: .42em; color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; font-size: .95rem; color: var(--muted);
  padding: 9px 14px; border-radius: 8px; position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 10px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px auto; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------  Hero  ---------- */
.hero {
  min-height: 100svh; display: grid; place-items: center; text-align: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
  background: radial-gradient(120% 120% at 50% 0%, #1c1f26, var(--ink-2) 70%);
  color: #fff;
}
.hero::before { /* glow orbs */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(620px 420px at 78% 18%, rgba(255,212,0,.22), transparent 60%),
    radial-gradient(520px 420px at 12% 84%, rgba(226,0,26,.18), transparent 60%),
    radial-gradient(520px 460px at 50% 120%, rgba(255,255,255,.06), transparent 60%);
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate3d(-12px,-8px,0) scale(1); } to { transform: translate3d(14px,10px,0) scale(1.06); } }
.hero::after { /* speed lines */
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: repeating-linear-gradient(115deg, transparent 0 38px, rgba(255,255,255,.018) 38px 39px);
}
.hero-inner { position: relative; z-index: 2; max-width: 880px; padding-inline: 22px; }
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 6rem); text-transform: uppercase; letter-spacing: .01em;
  text-shadow: 0 2px 40px rgba(0,0,0,.6);
}
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--yellow); background: none; padding: 0; text-shadow: var(--glow); }
.hero p { color: rgba(255,255,255,.72); font-size: clamp(1rem, 2.4vw, 1.25rem); max-width: 640px; margin: 18px auto 30px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-flag { display: flex; gap: 0; width: 84px; height: 6px; margin: 26px auto 0; border-radius: 4px; overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,.12); }
.hero-flag i { flex: 1; }
.hero-flag i:nth-child(1){ background: var(--yellow);} .hero-flag i:nth-child(2){ background:#fff;} .hero-flag i:nth-child(3){ background: var(--red);}
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--muted-2); font-family: var(--font-head); letter-spacing: .3em; font-size: .7rem; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue::after { content: ""; width: 1px; height: 34px; background: linear-gradient(var(--yellow), transparent); animation: cue 1.8s infinite; }
@keyframes cue { 0%{ transform: scaleY(0); transform-origin: top;} 50%{ transform: scaleY(1);} 100%{ transform: scaleY(0); transform-origin: bottom;} }

/* page hero (interior pages) */
.page-hero { padding: 160px 0 70px; text-align: center; position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(120% 130% at 50% -10%, #1c1f26, var(--ink-2) 72%); }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 360px at 50% -10%, rgba(255,212,0,.18), transparent 65%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); text-transform: uppercase; color: #fff; }
.page-hero h1 .hl { color: var(--yellow); }
.breadcrumb { color: rgba(255,255,255,.6); font-family: var(--font-head); letter-spacing: .12em; text-transform: uppercase; font-size: .85rem; margin-top: 12px; }
.breadcrumb a:hover { color: var(--yellow); }

/* ----------  Marquee strip  ---------- */
.marquee { border-block: 1px solid var(--line); background: var(--ink); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scrollx 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.82); font-size: 1.05rem; display: inline-flex; align-items: center; gap: 56px; }
.marquee span::after { content: "◆"; color: var(--red); }
@keyframes scrollx { to { transform: translateX(-50%); } }

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

.card {
  background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; position: relative; overflow: hidden;
  box-shadow: 0 6px 20px rgba(20,22,27,.05);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.card::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; z-index:2; background: linear-gradient(90deg, var(--yellow), var(--red)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-8px); border-color: rgba(226,0,26,.55); box-shadow: 0 22px 44px rgba(20,22,27,.13); }
.card:hover::before { transform: scaleX(1); }
.card.flex { display: flex; flex-direction: column; }
.card .card-book { margin-top: auto; }

/* service image banner that bleeds to card edges */
.card-img { width: calc(100% + 56px); margin: -28px -28px 20px; height: 188px; object-fit: cover; display: block; background: var(--bg-2); border-bottom: 1px solid var(--line); }

.card .ic { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 12px; background: rgba(226,0,26,.08); border: 1px solid rgba(226,0,26,.3); margin-bottom: 18px; font-size: 1.6rem; }
.card h3 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }
.card .price { margin-top: 16px; margin-bottom: 4px; padding-top: 14px; border-top: 1px dashed var(--line); }
.price .p-amt { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--red); line-height: 1.15; display: block; }
.price .p-amt.p-quote { color: var(--ink); font-size: 1.1rem; }
.price .p-sub { font-family: var(--font-body); font-size: .82rem; color: var(--muted); display: block; margin-top: 5px; }

/* rate card — structured Sedan/SUV pricing table */
.rate { margin-top: 16px; margin-bottom: 4px; padding-top: 12px; border-top: 1px dashed var(--line); }
.rate-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 6px 20px; align-items: baseline; }
.rate-h { font-family: var(--font-head); font-weight: 700; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); text-align: right; }
.rate-h:first-child { text-align: left; }
.rate-label { font-size: .88rem; color: var(--muted); }
.rate-val { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--red); text-align: right; white-space: nowrap; }
.rate-extra { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 12px; border-top: 1px dashed var(--line); padding-top: 7px; margin-top: 2px; font-size: .85rem; color: var(--muted); }
.rate-extra .rate-val { font-size: .95rem; }
.rate-note { font-size: .78rem; color: var(--muted-2); margin-top: 8px; }

/* service feature list */
.feat-list { margin-top: 14px; display: grid; gap: 9px; }
.feat-list li { display: flex; gap: 10px; color: var(--muted); font-size: .95rem; }
.feat-list li::before { content: "▸"; color: var(--red); font-weight: 700; }

/* ----------  Stats  ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat { text-align: center; padding: 26px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--red); line-height: 1; }
.stat .lbl { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em; color: var(--muted); font-size: .82rem; margin-top: 8px; }

/* ----------  Steps  ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(4,1fr); }
.step { position: relative; padding: 28px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: rgba(20,22,27,.07); position: absolute; top: 14px; right: 18px; }
.step h3 { font-size: 1.25rem; text-transform: uppercase; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ----------  Split (about / cta)  ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.split .visual { border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; aspect-ratio: 4/3; background:
  radial-gradient(120% 120% at 70% 10%, rgba(226,0,26,.12), transparent 55%), var(--panel); display: grid; place-items: center; position: relative; }
.split .visual .badge { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem,6vw,4rem); color: rgba(20,22,27,.08); letter-spacing: .1em; }
.split ul.feat-list li { font-size: 1rem; }

/* ----------  Testimonials  ---------- */
.quote { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.quote .stars { color: var(--red); letter-spacing: 3px; margin-bottom: 12px; }
.quote p { color: var(--text); font-style: italic; }
.quote .who { margin-top: 16px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-size: .9rem; }

/* ----------  CTA band  ---------- */
.cta-band { position: relative; border: 1px solid rgba(255,212,0,.25); border-radius: 20px; padding: 54px; text-align: center; overflow: hidden; color: #fff;
  background: radial-gradient(90% 130% at 14% 0%, rgba(226,0,26,.20), transparent 55%), radial-gradient(110% 150% at 84% 0%, rgba(255,212,0,.16), transparent 60%), linear-gradient(180deg, #1c1f26, var(--ink-2)); }
.cta-band h2 { font-size: clamp(1.8rem,4vw,2.8rem); text-transform: uppercase; color: #fff; }
.cta-band h2 .hl { background: none; padding: 0; }
.cta-band p { color: rgba(255,255,255,.74); max-width: 560px; margin: 12px auto 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----------  Contact  ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; }
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); margin-bottom: 16px; transition: border-color .3s, transform .3s; }
.info-card:hover { border-color: rgba(226,0,26,.4); transform: translateX(4px); }
.info-card .ic { font-size: 1.5rem; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 10px; background: rgba(226,0,26,.08); border: 1px solid rgba(226,0,26,.25); flex: none; }
.info-card h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: 1rem; }
.info-card a, .info-card span { color: var(--muted); }
.info-card a:hover { color: var(--red); }

form .field { margin-bottom: 16px; }
form label { display: block; font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; color: var(--muted); margin-bottom: 7px; }
form input, form select, form textarea {
  width: 100%; padding: 13px 15px; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); color: var(--text); font-family: var(--font-body); font-size: 1rem; transition: border-color .25s, box-shadow .25s;
}
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,0,26,.14); }
form textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .85rem; color: var(--muted-2); margin-top: 8px; }
.form-status { margin-top: 14px; font-family: var(--font-head); font-weight: 600; }
.form-status.ok { color: var(--green); } .form-status.err { color: #ff5566; }

.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 5px 0; border-bottom: 1px dashed var(--line); color: var(--muted); font-size: .95rem; }
.hours-row:last-child { border-bottom: 0; }
.hours-row span:last-child { color: var(--text); font-family: var(--font-head); font-weight: 600; }

/* ----------  Booking form (detailed)  ---------- */
.booking { display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: start; }
.book-step { margin-bottom: 26px; }
.book-step:last-of-type { margin-bottom: 0; }
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.step-head .n { width: 28px; height: 28px; flex: none; display: grid; place-items: center; border-radius: 8px; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.step-head h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: 1.15rem; }
.step-head .opt-note { color: var(--muted-2); font-size: .8rem; font-family: var(--font-head); letter-spacing: .08em; text-transform: uppercase; margin-left: auto; }

.opt-grid { display: grid; gap: 12px; }
.opt-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.opt-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.opt-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.opt { position: relative; }
.opt input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.opt label { display: block; height: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-2); cursor: pointer; transition: border-color .2s, background .2s, box-shadow .2s, transform .15s; }
.opt label:hover { border-color: rgba(226,0,26,.45); transform: translateY(-2px); }
.opt input:checked + label { border-color: var(--red); background: rgba(226,0,26,.07); box-shadow: 0 0 0 3px rgba(226,0,26,.12); }
.opt input:focus-visible + label { outline: 2px solid var(--red); outline-offset: 2px; }
.opt .t { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; display: flex; align-items: center; gap: 8px; }
.opt .d { color: var(--muted); font-size: .85rem; margin-top: 3px; }
.opt .t .tick { margin-left: auto; width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; font-size: .7rem; color: transparent; transition: .2s; }
.opt input:checked + label .tick { border-color: var(--red); background: var(--red); color: #fff; }

/* compact chips for type / add-ons */
.opt.chip label { padding: 11px 14px; }
.opt.chip .t { font-size: .92rem; }

.book-summary { position: sticky; top: 92px; background: linear-gradient(180deg, var(--panel), var(--panel-2)); border: 1px solid rgba(226,0,26,.3); border-radius: var(--radius); padding: 24px; }
.book-summary h3 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: 1.2rem; margin-bottom: 4px; }
.book-summary .sub { color: var(--muted); font-size: .88rem; margin-bottom: 16px; }
.sum-list { display: grid; gap: 10px; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; gap: 14px; padding-bottom: 10px; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.sum-row:last-child { border-bottom: 0; }
.sum-row .k { color: var(--muted-2); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: .78rem; padding-top: 2px; flex: none; }
.sum-row .v { color: var(--text); text-align: right; font-weight: 500; }
.sum-row .v.empty { color: var(--muted-2); font-style: italic; font-weight: 400; }
.sum-row.sum-est { border-top: 2px solid var(--line); border-bottom: 0; padding-top: 12px; margin-top: 2px; }
.sum-row.sum-est .k { color: var(--ink); }
.sum-row.sum-est .v { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--red); }
.book-summary .btn { width: 100%; justify-content: center; }
.book-summary .or { text-align: center; color: var(--muted-2); font-size: .8rem; margin: 10px 0; font-family: var(--font-head); letter-spacing: .12em; text-transform: uppercase; }
.summary-note { color: var(--muted-2); font-size: .8rem; margin-top: 14px; text-align: center; }

.map-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/7; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }
.map-placeholder { width:100%; height:100%; display:grid; place-items:center; background: var(--panel); color: var(--muted-2); font-family: var(--font-head); letter-spacing:.1em; text-transform:uppercase; }

/* ----------  Footer  ---------- */
.footer { background: var(--ink-2); color: #fff; padding: 56px 0 26px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }
.footer .brand img { height: 52px; width: 52px; object-fit: contain; background: #fff; padding: 8px; border-radius: 12px; }
.footer p { color: rgba(255,255,255,.6); font-size: .95rem; margin-top: 14px; max-width: 280px; }
.footer h5 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .12em; font-size: .95rem; margin-bottom: 16px; color: #fff; }
.footer li { margin-bottom: 9px; }
.footer a { color: rgba(255,255,255,.6); font-size: .95rem; transition: color .25s; }
.footer a:hover { color: var(--yellow); }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; color: #fff; transition: .25s; }
.socials a:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; color: rgba(255,255,255,.4); font-size: .85rem; }

/* ----------  Floating WhatsApp  ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--green); display: grid; place-items: center; box-shadow: 0 10px 26px rgba(0,146,63,.5); animation: pulse 2.4s infinite; transition: transform .25s; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 30px; height: 30px; fill: #fff; }
@keyframes pulse { 0%{ box-shadow: 0 10px 26px rgba(0,146,63,.5), 0 0 0 0 rgba(0,146,63,.5);} 70%{ box-shadow: 0 10px 26px rgba(0,146,63,.5), 0 0 0 16px rgba(0,146,63,0);} 100%{ box-shadow: 0 10px 26px rgba(0,146,63,.5), 0 0 0 0 rgba(0,146,63,0);} }

/* ----------  Scroll reveal  ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ----------  Responsive  ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4, .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .footer-grid, .booking { grid-template-columns: 1fr; }
  .footer-grid { gap: 28px; }
  .book-summary { position: static; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    height: 100vh; height: 100dvh; width: min(80vw, 320px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    background: #ffffff; backdrop-filter: blur(14px);
    padding: 92px 22px 30px; border-left: 1px solid var(--line);
    box-shadow: -18px 0 40px rgba(20,22,27,.18);
    transform: translateX(100%); transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 14px 0 0; text-align: center; }
  .nav-toggle { display: block; }
  .section { padding: 68px 0; }
  .grid-3, .grid-4, .steps, .stats, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .opt-grid.cols-3, .opt-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 36px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
