/*
Theme Name: SIKDAR DMV Express
Theme URI: https://www.example.com/
Author: Nahidur Rahman
Description: Conversion-focused theme for an independent private service bureau in Brooklyn. Every picture, business detail and disclaimer is editable from Appearance → Customize → SIKDAR — Site Content.
Version: 2.2.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sikdar-dmv
Tags: business, local-business, custom-menu, custom-logo, one-column, two-columns
*/

/* WordPress menu markup (ul/li) inside the nav */
.nav__list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__list li { list-style: none; }
.nav .menu-item a { display: inline-block; }
.nav .current-menu-item > a { color: var(--blue); }
.nav .current-menu-item > a::after { transform: scaleX(1); }
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }

/* ==========================================================================
   SIKDAR MULTI SERVICES INC — site.css
   Palette: Deep Navy #0F172A · Blue #2563EB · Green accent #0E9F6E
            (deliberately avoids the blue+gold pairing used by NY State)
   Type:    Plus Jakarta Sans (display + body), system fallback
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink: #0F172A;
  --ink-2: #1E293B;
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-soft: #EFF6FF;
  --amber: #0E9F6E;   /* accent kept off NY State blue+gold */
  --paper: #FFFFFF;
  --mist: #F1F5F9;
  --line: #E2E8F0;
  --muted: #64748B;
  --green: #16A34A;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1160px;
  --gap: 24px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 2px 8px rgba(15, 23, 42, .05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, .10);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.35rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding: 72px 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #CBD5E1; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section__head { max-width: 660px; margin-bottom: 40px; }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.section--ink .eyebrow { color: #93B4FF; }
.lede { font-size: 1.06rem; color: var(--muted); }
.section--ink .lede { color: #94A3B8; }
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: 0;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 700; font-size: 1rem; letter-spacing: -.01em; cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .2s var(--ease);
  box-shadow: 0 6px 18px rgba(37, 99, 235, .28);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37, 99, 235, .34); background: var(--blue-dark); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--amber { --btn-bg: var(--amber); --btn-fg: #FFFFFF; box-shadow: 0 6px 18px rgba(14, 159, 110, .32); }
.btn--amber:hover { background: #0B8A5F; box-shadow: 0 12px 26px rgba(14, 159, 110, .4); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  border: 1.5px solid rgba(255, 255, 255, .38); box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; box-shadow: none; }
.btn--outline {
  --btn-bg: #fff; --btn-fg: var(--ink);
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
}
.btn--outline:hover { background: #fff; border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-md); }
.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--wide { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.header.is-stuck { box-shadow: 0 6px 24px rgba(15, 23, 42, .09); }
.header .wrap { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand img { width: 52px; height: 52px; }
.brand__name { font-weight: 800; color: var(--ink); font-size: 1.32rem; line-height: 1.08; letter-spacing: -.03em; }
.brand__sub {
  display: block; margin-top: 3px; font-size: .95rem; font-weight: 700;
  color: var(--blue); letter-spacing: .1em; text-transform: uppercase;
}
@media (max-width: 620px) {
  .brand img { width: 44px; height: 44px; }
  .brand__name { font-size: 1.06rem; }
  .brand__sub { font-size: .8rem; }
}

.nav { display: flex; gap: 4px; }
.nav a {
  position: relative; padding: 10px 14px; border-radius: 10px;
  color: var(--ink-2); font-weight: 600; font-size: .97rem;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav a:hover { color: var(--blue); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-active { color: var(--blue); }
.nav a.is-active::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: 12px; }
.status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--mist); border: 1px solid var(--line);
  font-size: .82rem; font-weight: 700; color: var(--ink);
  white-space: nowrap;
}
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(22, 163, 74, .16); }
.status.is-closed .status__dot { background: #94A3B8; box-shadow: 0 0 0 4px rgba(148, 163, 184, .18); }
.status small { font-weight: 600; color: var(--muted); }

.burger {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
  transition: transform .28s var(--ease), top .28s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  display: none; border-top: 1px solid var(--line); background: #fff;
  overflow: hidden; max-height: 0; transition: max-height .34s var(--ease);
}
.mobile-nav.is-open { max-height: 420px; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 0 16px; }
.mobile-nav a { display: block; padding: 13px 20px; font-weight: 600; color: var(--ink); }
.mobile-nav a:hover, .mobile-nav a.is-active { background: var(--blue-soft); color: var(--blue); }

@media (max-width: 1000px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .mobile-nav { display: block; }
  .header__cta .btn { display: none; }
}
@media (max-width: 520px) { .header__cta .status { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 460px at 78% -10%, rgba(37, 99, 235, .42), transparent 62%),
    radial-gradient(600px 400px at 8% 110%, rgba(14, 159, 110, .12), transparent 60%),
    var(--ink);
  color: #E2E8F0;
  padding: 74px 0 84px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 20%, transparent 78%);
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: #93B4FF; }
.hero__lede { font-size: 1.12rem; color: #B6C2D4; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 22px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .13);
  font-size: .86rem; font-weight: 600; color: #DCE5F1;
}
@media (max-width: 900px) {
  .hero { padding: 52px 0 64px; }
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Signature: the plate ---------- */
.plate {
  position: relative; isolation: isolate;
  background: #FFFFFF;
  border-radius: 20px; padding: 26px 26px 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  max-width: 420px; margin-inline: auto; overflow: hidden;
}
.plate::after {
  content: ""; position: absolute; top: -60%; left: -30%; width: 40%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .85), transparent);
  transform: rotate(18deg); animation: none; display: none;
}
@keyframes sheen { 0% { left: -40%; } 55%, 100% { left: 130%; } }
.plate__top { display: flex; justify-content: space-between; align-items: center; font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #64748B; }
.plate__number {
  font-size: clamp(1.6rem, 4.6vw, 2.1rem); font-weight: 800; letter-spacing: -.01em;
  color: var(--ink); text-align: center; margin: 10px 0 6px;
}
.plate__bottom { text-align: center; font-size: .8rem; font-weight: 600; color: var(--muted); }
.plate__hours {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.plate__hours strong { display: block; color: var(--ink); font-size: 1.02rem; }
.plate__hours span { font-size: .8rem; color: var(--muted); font-weight: 600; }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #C7D7F5; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .97rem; margin-bottom: 18px; }
.card .btn { margin-top: auto; align-self: flex-start; }
.card__icon {
  width: 50px; height: 50px; border-radius: 15px; margin-bottom: 16px;
  display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.card:hover .card__icon { transform: rotate(-6deg) scale(1.06); }
.card__icon svg { width: 25px; height: 25px; }
.card__icon--amber { background: #E7F7F0; color: #0B7A54; }
.card__tag {
  align-self: flex-start; margin-bottom: 12px; padding: 4px 11px; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  background: var(--ink); color: #fff;
}
.card__tag--tlc { background: var(--amber); color: #1A1200; }
.card ul { margin: 0 0 18px; padding-left: 20px; color: var(--muted); font-size: .96rem; }
.card ul li { margin-bottom: 6px; }

/* ---------- Cards with an illustration ---------- */
.card--media { padding: 0; overflow: hidden; }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--mist); border-bottom: 1px solid var(--line); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card--media:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card--feature .card__body { padding: 28px 26px 30px; }
.card--feature h3 { font-size: 1.32rem; }

/* ---------- Small utilities ---------- */
.mt-20 { margin-top: 20px; }
.mt-28 { margin-top: 28px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hours-table caption { caption-side: top; text-align: left; }

/* ---------- Feature list ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature__icon {
  flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(37, 99, 235, .12); color: #93B4FF;
}
.section--ink .feature__icon { background: rgba(147, 180, 255, .16); color: #93B4FF; }
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 4px; }
.feature p { font-size: .95rem; margin: 0; color: inherit; opacity: .82; }

/* ---------- Steps (real sequence) ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 66px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -4px;
  font-size: 1.5rem; font-weight: 800; color: var(--blue); letter-spacing: -.02em;
}
.step::after {
  content: ""; position: absolute; left: 46px; top: 4px; bottom: -18px; width: 1px;
  background: linear-gradient(var(--line), transparent);
}
.step:last-child::after { display: none; }
@media (min-width: 780px) { .step::after { display: none; } }

/* ---------- Map ---------- */
.map {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--mist);
  min-height: 340px; box-shadow: var(--shadow-sm);
}
.map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }
.map--tall { min-height: 460px; }
.map--tall iframe { min-height: 460px; }
.map__placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 10px;
  color: var(--muted); font-size: .92rem; text-align: center; padding: 20px;
}
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list svg { width: 20px; height: 20px; flex: none; color: var(--blue); margin-top: 3px; }
.info-list strong { display: block; color: var(--ink); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.info-list a { color: var(--ink-2); font-weight: 600; }
.info-list a:hover { color: var(--blue); }

.hours-table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.hours-table td { padding: 11px 0; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--ink); }
.hours-table tr:last-child td { border-bottom: 0; }

/* ---------- Form ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-md);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: #DC2626; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 1rem;
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37, 99, 235, .14);
}
.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid { border-color: #DC2626; }
.field .error { display: none; color: #DC2626; font-size: .82rem; font-weight: 600; margin-top: 6px; }
.field .error.is-shown { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: .84rem; color: var(--muted); margin: 12px 0 0; }
.form-status {
  display: none; margin-top: 18px; padding: 16px 18px; border-radius: 14px;
  font-weight: 600; font-size: .95rem;
}
.form-status.is-shown { display: block; animation: pop .34s var(--ease); }
.form-status--ok { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.form-status--err { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
@keyframes pop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq details[open] { border-color: #C7D7F5; box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none; cursor: pointer; padding: 19px 56px 19px 22px;
  font-weight: 700; color: var(--ink); position: relative; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--blue); border-bottom: 2.5px solid var(--blue);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq summary:hover { color: var(--blue); }
.faq__body { padding: 0 22px 20px; color: var(--muted); animation: slide .3s var(--ease); }
.faq__body p:last-child { margin-bottom: 0; }
@keyframes slide { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- CTA band ---------- */
.band {
  background: linear-gradient(120deg, var(--blue) 0%, #1E40AF 55%, var(--ink) 100%);
  color: #fff; border-radius: 26px; padding: 46px 40px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.band h2 { color: #fff; }
.band p { color: #C7D9F8; max-width: 52ch; margin-inline: auto; }
.band__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }
@media (max-width: 560px) { .band { padding: 34px 22px; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #94A3B8; padding: 56px 0 24px; font-size: .95rem; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer a { color: #CBD5E1; }
.footer a:hover { color: #93B4FF; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; }
.footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer__brand img { width: 42px; height: 42px; }
.footer__brand span { color: #fff; font-weight: 800; letter-spacing: -.02em; }
.footer__bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .86rem;
}
.disclaimer { font-size: .82rem; color: #64748B; margin-top: 16px; max-width: 60ch; }

/* ---------- Mobile action bar ---------- */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; gap: 10px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(15, 23, 42, .1);
}
.actionbar .btn { flex: 1; padding: 14px 10px; font-size: .98rem; }
@media (max-width: 780px) {
  .actionbar { display: flex; }
  body { padding-bottom: 78px; }
}

/* ---------- Scroll reveal (JS-gated so no-JS still shows content) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .reveal.is-visible[data-delay="1"] { transition-delay: .08s; }
.js .reveal.is-visible[data-delay="2"] { transition-delay: .16s; }
.js .reveal.is-visible[data-delay="3"] { transition-delay: .24s; }
.js .reveal.is-visible[data-delay="4"] { transition-delay: .32s; }

/* Hero load sequence */
.js .hero .fade-up { opacity: 0; animation: fadeUp .7s var(--ease) forwards; }
.js .hero .fade-up:nth-child(1) { animation-delay: .05s; }
.js .hero .fade-up:nth-child(2) { animation-delay: .14s; }
.js .hero .fade-up:nth-child(3) { animation-delay: .23s; }
.js .hero .fade-up:nth-child(4) { animation-delay: .32s; }
.js .hero .fade-up:nth-child(5) { animation-delay: .41s; }
.js .hero__visual { opacity: 0; animation: fadeUp .8s var(--ease) .3s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---------- Page head (inner pages) ---------- */
.pagehead {
  background:
    radial-gradient(700px 320px at 85% -30%, rgba(37, 99, 235, .38), transparent 60%),
    var(--ink);
  color: #B6C2D4; padding: 56px 0 60px; text-align: center;
}
.pagehead h1 { color: #fff; margin-bottom: 12px; }
.pagehead p { max-width: 58ch; margin-inline: auto; color: #B6C2D4; }
.crumbs { font-size: .82rem; color: #7C8CA5; margin-bottom: 14px; }
.crumbs a { color: #B6C2D4; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .js .hero .fade-up, .js .hero__visual { opacity: 1; animation: none; }
  .plate::after { display: none; }
}


/* ---------- How it works timeline ---------- */
.timeline {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px;
  counter-reset: tl;
}
.timeline__step {
  position: relative; padding: 30px 26px 28px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.timeline__step:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .09); border-color: rgba(147, 180, 255, .45); }
.timeline__num {
  position: absolute; top: -22px; left: 26px;
  width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--blue); color: #fff; font-weight: 800; font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .4);
}
.timeline__step:nth-child(3) .timeline__num { background: var(--amber); color: #fff; box-shadow: 0 8px 20px rgba(14, 159, 110, .4); }
.timeline__time {
  display: inline-flex; align-items: center; gap: 7px; margin: 12px 0 14px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(147, 180, 255, .16); color: #B7CCFF;
  font-size: .8rem; font-weight: 700; letter-spacing: .02em;
}
.timeline__time svg { width: 14px; height: 14px; }
.timeline__step h3 { color: #fff; font-size: 1.22rem; margin-bottom: 8px; }
.timeline__step p { color: #A9B8CE; font-size: .97rem; margin: 0; }
/* connector arrows between steps on wide screens */
@media (min-width: 900px) {
  .timeline__step:not(:last-child)::after {
    content: ""; position: absolute; top: 50%; right: -20px; width: 12px; height: 12px;
    border-top: 2px solid rgba(147, 180, 255, .5); border-right: 2px solid rgba(147, 180, 255, .5);
    transform: translateY(-50%) rotate(45deg);
  }
}

/* ---------- Google reviews ---------- */
.reviews__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.reviews__head h2 { margin: 0; }
.rating {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 22px; box-shadow: var(--shadow-sm);
}
.rating__score { font-size: 1.7rem; font-weight: 800; color: var(--ink); line-height: 1; }
.rating__label { font-size: .85rem; font-weight: 700; color: var(--muted); }
.review__stars { display: inline-flex; gap: 2px; color: #F5A623; }
.review__stars .star { width: 17px; height: 17px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review__text { color: var(--ink-2); font-size: 1rem; margin: 0; flex: 1; }
.review__by { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue); font-weight: 800; font-size: 1.05rem;
}
.review__by strong { display: block; color: var(--ink); font-size: .96rem; }
.review__by span { font-size: .82rem; color: var(--muted); }
.reviews__cta { text-align: center; margin: 34px 0 0; }

/* ---------- FAQ inside a service section ---------- */
.faq--inline { max-width: 820px; margin: 46px auto 0; }
.faq__title { text-align: center; font-size: 1.28rem; margin-bottom: 20px; }

/* ---------- Page head jump links ---------- */
.pagehead__jump { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.pagehead__jump a {
  padding: 9px 20px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .06);
  color: #E2E8F0; font-weight: 700; font-size: .92rem;
  transition: background .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.pagehead__jump a:hover { background: rgba(255, 255, 255, .14); border-color: #fff; transform: translateY(-2px); }


/* ---------- Footer legal identity ---------- */
.legal {
  margin-top: 36px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .86rem; line-height: 1.65; color: #94A3B8;
}
.legal p { margin: 0 0 8px; max-width: 92ch; }
.legal p:last-child { margin-bottom: 0; }
.legal strong { color: #E2E8F0; font-weight: 700; }


/* ---------- Disclaimer band + Google review badge ---------- */
.disclaimer-band { background: #F5F7FA; border-bottom: 1px solid var(--line); }
.disclaimer-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; padding: 22px 0;
}
.disclaimer-band__text { max-width: 74ch; }
.disclaimer-lead {
  margin: 0 0 6px; color: #3A3F47;
  font-size: 1.12rem; font-weight: 700; line-height: 1.45; letter-spacing: -.01em;
}
.disclaimer-fine { margin: 0; color: #555555; font-size: .92rem; line-height: 1.55; }
.disclaimer-fine em { font-style: italic; }

.gbadge {
  flex: none; display: flex; align-items: center; gap: 12px;
  padding: 12px 18px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  color: var(--ink); text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
a.gbadge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #C7D7F5; }
a.gbadge:hover .gbadge__go { transform: translateX(4px); opacity: 1; }
a.gbadge:hover .gbadge__stars { transform: scale(1.06); }
.gbadge__stars { display: inline-flex; gap: 1px; color: #F5A623; transition: transform .25s var(--ease); }
.gbadge__stars .star { width: 16px; height: 16px; }
.gbadge__meta { font-size: .9rem; color: var(--muted); white-space: nowrap; }
.gbadge__meta strong { color: var(--ink); font-size: 1.05rem; font-weight: 800; }
.gbadge__go { color: var(--blue); font-weight: 800; opacity: .55; transition: transform .25s var(--ease), opacity .25s var(--ease); }

@media (max-width: 900px) {
  .disclaimer-band__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gbadge { width: 100%; justify-content: center; }
  .gbadge__meta { white-space: normal; text-align: center; }
}

/* ---------- Hero / pagehead background images ---------- */
.hero--bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-image, url("assets/img/hero-bg.svg"));
  background-size: cover; background-position: center;
  opacity: calc(1 - var(--hero-veil, .55));
}
.pagehead { position: relative; overflow: hidden; }
.pagehead--bg::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-image);
  background-size: cover; background-position: center;
  opacity: calc(1 - var(--hero-veil, .62));
}
.pagehead .wrap { position: relative; z-index: 1; }
.pagehead h1 { margin-bottom: 14px; }
.pagehead p { font-size: 1.05rem; }

/* ---------- Hero polish ---------- */
.hero__chips li { gap: 6px; }
.chip__k { color: #fff; font-weight: 800; letter-spacing: -.01em; }
.plate__list { list-style: none; margin: 16px 0 18px; padding: 0; }
.plate__list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--line);
  font-size: .95rem; color: var(--ink-2);
}
.plate__list li:last-child { border-bottom: 0; }
.plate__list svg { width: 17px; height: 17px; color: var(--blue); flex: none; }
.plate__list a { color: var(--ink-2); font-weight: 700; }
.plate__list a:hover { color: var(--blue); }
.plate__top { align-items: center; }
.card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.card__actions .btn { margin-top: 0; }

/* ---------- "Message us" popup ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0; background: rgba(15, 23, 42, .62);
  backdrop-filter: blur(3px); opacity: 0; transition: opacity .22s var(--ease);
}
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__panel {
  position: relative; width: min(100%, 560px); max-height: 92vh; overflow-y: auto;
  background: #fff; border-radius: 24px; padding: 34px 32px 30px;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(18px) scale(.98);
  transition: opacity .24s var(--ease), transform .24s var(--ease);
}
.modal.is-open .modal__panel { opacity: 1; transform: none; }
.modal__panel h2 { font-size: 1.5rem; margin-bottom: 8px; }
.modal__lede { color: var(--muted); font-size: .96rem; margin-bottom: 22px; }
.modal__panel .form-card { border: 0; box-shadow: none; padding: 0; }
.js .modal .reveal, .js .modal .reveal.is-visible { opacity: 1; transform: none; transition: none; }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff;
  font-size: 1.5rem; line-height: 1; color: var(--muted); cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.modal__close:hover { background: var(--mist); color: var(--ink); }
@media (max-width: 560px) {
  .modal { padding: 0; place-items: end center; }
  .modal__panel { border-radius: 22px 22px 0 0; max-height: 94vh; padding: 28px 20px 24px; }
}

/* ---------- Reviews plugin embed ---------- */
.reviews__embed { margin-top: 8px; }
.reviews__embed img { display: inline-block; }
.reviews__head .gbadge { align-self: center; }

/* ---------- Mobile tightening ---------- */
@media (max-width: 900px) {
  .section { padding: 56px 0; }
  h1 { line-height: 1.12; }
  .hero { padding: 44px 0 56px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .plate { max-width: 100%; }
}
@media (max-width: 560px) {
  .wrap { width: min(100% - 32px, var(--wrap)); }
  .section { padding: 46px 0; }
  .section__head { margin-bottom: 28px; }
  .card__actions .btn { flex: 1 1 100%; }
  .band { padding: 30px 20px; }
  .band__cta .btn { width: 100%; }
  .hours-table { font-size: .92rem; }
  .timeline { gap: 34px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}
