/* ============================================
   ÖZKIYAK ÇEKİCİ & VİNÇ — Tur Assist Anlaşmalı
   7/24 Mersin Oto Çekici & Oto Kurtarma
   Modern • SEO Optimized • Cloudflare Pages Ready
   ============================================ */

/* ===== Design Tokens ===== */
:root {
  /* Tur Assist brand */
  --red: #E61111;
  --red-dark: #C20E0E;
  --red-light: #FDE7E7;
  --teal: #0F3D3A;
  --teal-light: #1F6E69;
  --amber: #FFBC7D;

  --ink: #14201F;
  --body: #3A4544;
  --muted: #6B7674;
  --line: #E6E9E8;
  --bg: #FFFFFF;
  --bg-soft: #F8F7F3;
  --bg-soft2: #F2F5F1;

  --white: #FFFFFF;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --head: 'Poppins', var(--font);

  --container: 1240px;
  --pad: clamp(56px, 8vw, 100px);

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-full: 9999px;

  --sh-sm: 0 1px 3px rgba(15, 61, 58, .08);
  --sh: 0 8px 24px rgba(15, 61, 58, .10);
  --sh-lg: 0 18px 50px rgba(15, 61, 58, .16);
  --sh-red: 0 12px 30px rgba(230, 17, 17, .30);

  --t-fast: .16s ease;
  --t: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-fast); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
svg { flex-shrink: 0; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--head); font-weight: 700; line-height: 1.18; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
strong { color: var(--ink); font-weight: 700; }

/* ===== Layout ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: var(--pad) 0; }
.section-soft { background: var(--bg-soft); }
.section-teal { background: var(--teal); color: rgba(255,255,255,.85); }
.section-teal h2, .section-teal h3 { color: #fff; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); }
.section-head .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-weight: 700; font-size: .82rem; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 14px;
}
.section-head .eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); }
.section-head .eyebrow::after { content: ""; width: 26px; height: 2px; background: var(--red); }
.section-head p { color: var(--muted); font-size: 1.06rem; margin: 0; }
.section-teal .section-head p { color: rgba(255,255,255,.7); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--head); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: var(--r-full); cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn-red { background: var(--red); color: #fff; box-shadow: var(--sh-red); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(230,17,17,.4); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-light); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--teal); box-shadow: var(--sh); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: #fff; color: var(--teal); border-color: #fff; }
.btn-ghost { background: var(--bg-soft); color: var(--teal); }
.btn-ghost:hover { background: var(--teal); color: #fff; }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-sm { padding: 11px 20px; font-size: .9rem; }
.btn-block { width: 100%; }

/* ===== Emergency Top Bar (sticky) ===== */
.emergency-bar {
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  color: #fff; font-size: .9rem; position: relative; z-index: 60;
}
.emergency-bar .container { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 16px; }
.emergency-bar .eb-left { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.emergency-bar .pulse { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 1.8s infinite; }
.emergency-bar .eb-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--head); font-weight: 800; color: #fff; font-size: 1rem; }
.emergency-bar .eb-phone svg { width: 17px; height: 17px; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.6)} 70%{box-shadow:0 0 0 10px rgba(255,255,255,0)} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0)} }
.emergency-bar .eb-note { opacity: .9; }

/* ===== Header ===== */
.header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: var(--sh-sm); }
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 14px; }

.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: grid; place-items: center; box-shadow: var(--sh-red);
}
.logo-mark svg { width: 30px; height: 30px; }
.logo-partner { height: 38px; width: auto; display: block; flex-shrink: 0; }
.logo-sep { width: 1px; height: 34px; background: var(--line); border-radius: 2px; flex-shrink: 0; }
.logo-chip { background: #fff; border-radius: 10px; padding: 8px 11px; display: inline-flex; align-items: center; flex-shrink: 0; box-shadow: var(--sh-sm); }
.logo-chip img { height: 30px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text .lt-brand { font-family: var(--head); font-weight: 800; font-size: 1.18rem; color: var(--teal); letter-spacing: -.02em; }
.logo-text .lt-brand span { color: var(--red); }
.logo-text .lt-tag { font-size: .62rem; font-weight: 700; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; white-space: nowrap; }

.nav-menu { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav-menu > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 4px; font-family: var(--head); font-weight: 600;
  font-size: .92rem; color: var(--ink); padding: 9px 11px; border-radius: var(--r-sm); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link svg { width: 15px; height: 15px; opacity: .6; transition: transform var(--t-fast); }
.dropdown:hover .nav-link svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 230px; background: #fff;
  border-radius: var(--r); box-shadow: var(--sh-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: all var(--t); border: 1px solid var(--line);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(6px); }
.dropdown-menu a { display: block; padding: 10px 14px; border-radius: var(--r-sm); font-weight: 500; font-size: .92rem; color: var(--body); }
.dropdown-menu a:hover { background: var(--red-light); color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--head); font-weight: 800; color: var(--teal); font-size: 1rem; white-space: nowrap; }
.header-phone svg { width: 20px; height: 20px; color: var(--red); }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: var(--t); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(15,61,58,.94) 0%, rgba(15,61,58,.82) 42%, rgba(15,61,58,.45) 100%);
}
.hero .container { position: relative; z-index: 2; padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 96px); }
.hero-inner { max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(230,17,17,.92);
  padding: 9px 18px; border-radius: var(--r-full); font-weight: 700; font-size: .85rem; letter-spacing: .02em; margin-bottom: 22px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero h1 span { color: var(--amber); }
.hero-sub { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: rgba(255,255,255,.92); font-weight: 500; margin-bottom: 14px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 30px; font-weight: 600; color: rgba(255,255,255,.92); }
.hero-tags span { display: inline-flex; align-items: center; gap: 7px; }
.hero-tags svg { width: 18px; height: 18px; color: var(--amber); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item b { font-family: var(--head); font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-trust-item span { font-size: .86rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ===== Quick service strip ===== */
.quickstrip { background: var(--teal); margin-top: -1px; }
.quickstrip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quickstrip-item { display: flex; align-items: center; gap: 14px; padding: 22px 20px; color: #fff; border-right: 1px solid rgba(255,255,255,.12); }
.quickstrip-item:last-child { border-right: none; }
.quickstrip-item svg { width: 30px; height: 30px; color: var(--amber); }
.quickstrip-item b { font-family: var(--head); display: block; color: #fff; font-size: 1rem; }
.quickstrip-item small { color: rgba(255,255,255,.65); font-size: .82rem; }

/* ===== Services grid ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t); position: relative; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; border-radius: 16px; background: var(--red-light); display: grid; place-items: center; margin-bottom: 20px; transition: var(--t); }
.service-icon svg { width: 30px; height: 30px; color: var(--red); }
.service-card:hover .service-icon { background: var(--red); }
.service-card:hover .service-icon svg { color: #fff; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: .96rem; margin-bottom: 18px; }
.service-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--head); font-weight: 700; color: var(--red); font-size: .92rem; }
.service-link svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ===== Why us ===== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { text-align: center; padding: 8px; }
.why-icon { width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; }
.section-teal .why-icon svg { width: 32px; height: 32px; color: var(--amber); }
.why-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,.7); font-size: .94rem; margin: 0; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: var(--bg-soft); border-radius: var(--r-lg); }
.step-num { counter-increment: step; font-family: var(--head); font-weight: 800; font-size: 2.4rem; color: var(--red); opacity: .25; line-height: 1; }
.step-num::before { content: "0" counter(step); }
.step h3 { font-size: 1.12rem; margin: 8px 0 8px; }
.step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ===== Fleet gallery ===== */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fleet-item { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); aspect-ratio: 4 / 5; background: var(--teal); }
.fleet-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s ease; }
.fleet-item:hover img { transform: scale(1.06); }
.fleet-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(15,61,58,.82)); pointer-events: none; }
.fleet-item .fleet-cap { position: absolute; left: 0; bottom: 0; right: 0; z-index: 1; padding: 16px 18px; display: flex; align-items: center; gap: 8px; color: #fff; font-family: var(--head); font-weight: 600; font-size: .95rem; }
.fleet-item .fleet-cap svg { width: 17px; height: 17px; color: var(--amber); }

/* ===== Districts grid ===== */
.districts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.district-card {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px 18px; font-family: var(--head); font-weight: 600; color: var(--ink); transition: var(--t);
}
.district-card svg { width: 18px; height: 18px; color: var(--muted); transition: var(--t); }
.district-card:hover { border-color: var(--red); background: var(--red); color: #fff; transform: translateY(-3px); box-shadow: var(--sh-red); }
.district-card:hover svg { color: #fff; transform: translateX(3px); }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(120deg, var(--red), var(--red-dark)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto 28px; font-size: 1.08rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; background: #fff; overflow: hidden; transition: box-shadow var(--t); }
.faq-item.open { box-shadow: var(--sh); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-family: var(--head); font-weight: 600; font-size: 1.04rem; color: var(--ink); text-align: left; }
.faq-q svg { width: 22px; height: 22px; color: var(--red); transition: transform var(--t); flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.faq-a-inner { padding: 0 22px 22px; color: var(--muted); }

/* ===== Page header / breadcrumb ===== */
.page-hero { position: relative; background: var(--teal); color: #fff; padding: clamp(44px,6vw,72px) 0; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(31,110,105,.6), transparent 55%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 640px; margin: 0; font-size: 1.06rem; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .88rem; margin-bottom: 16px; color: rgba(255,255,255,.65); }
.breadcrumb a { color: rgba(255,255,255,.85); font-weight: 500; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* ===== Detail layout ===== */
.detail { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.detail-main img.lead { width: 100%; border-radius: var(--r-lg); margin-bottom: 28px; box-shadow: var(--sh); }
.detail-main h2 { margin: 0 0 16px; }
.detail-main h3 { margin: 30px 0 14px; }
.detail-main p { color: var(--body); }
.checklist { display: grid; gap: 12px; margin: 8px 0 8px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; color: var(--red); margin-top: 2px; }
.checklist span { color: var(--body); }

.sidebar { position: sticky; top: 96px; display: grid; gap: 20px; }
.side-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; background: #fff; }
.side-card h4 { margin-bottom: 14px; font-size: 1.05rem; }
.side-links { display: grid; gap: 4px; }
.side-links a { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: var(--r-sm); font-weight: 500; font-size: .94rem; color: var(--body); transition: var(--t-fast); }
.side-links a svg { width: 15px; height: 15px; color: var(--muted); }
.side-links a:hover, .side-links a.active { background: var(--red-light); color: var(--red); }
.side-links a:hover svg, .side-links a.active svg { color: var(--red); }
.side-cta { background: var(--teal); color: #fff; text-align: center; }
.side-cta h4 { color: #fff; }
.side-cta p { color: rgba(255,255,255,.8); font-size: .92rem; margin-bottom: 16px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--r-lg); margin-bottom: 16px; background: #fff; transition: var(--t); }
.contact-card:hover { box-shadow: var(--sh); border-color: transparent; }
.contact-card .ci { width: 52px; height: 52px; border-radius: 13px; background: var(--red-light); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .ci svg { width: 24px; height: 24px; color: var(--red); }
.contact-card h4 { margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--muted); margin: 0; font-size: .98rem; }
.contact-card a:hover { color: var(--red); }
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ===== Footer ===== */
.footer { background: var(--teal); color: rgba(255,255,255,.72); padding-top: clamp(50px,7vw,76px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; }
.footer .logo-text .lt-brand { color: #fff; }
.footer .logo-text .lt-tag { color: rgba(255,255,255,.55); }
.footer-about { margin: 18px 0; font-size: .94rem; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .94rem; }
.footer-links a:hover { color: var(--amber); padding-left: 4px; }
.footer-contact { display: grid; gap: 14px; }
.footer-contact-item { display: flex; gap: 11px; font-size: .94rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--amber); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--amber); }
.footer-social { display: flex; gap: 10px; margin-top: 6px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: var(--t); }
.footer-social a svg { width: 18px; height: 18px; color: #fff; }
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .86rem; }
.footer-bottom a:hover { color: var(--amber); }
.footer-bottom .fb-legal { display: flex; gap: 18px; }

/* ===== Floating buttons ===== */
.float-wa {
  position: fixed; right: 20px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.5); z-index: 80;
  animation: floaty 3s ease-in-out infinite;
}
.float-wa svg { width: 32px; height: 32px; color: #fff; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.scrolltop {
  position: fixed; right: 22px; bottom: 90px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--teal); display: grid; place-items: center; box-shadow: var(--sh-lg); z-index: 79;
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: var(--t);
}
.scrolltop.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scrolltop svg { width: 22px; height: 22px; color: #fff; }

/* Mobile bottom action bar */
.mobile-bar { display: none; }

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

/* ===== Mobile menu panel ===== */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); background: #fff; z-index: 70;
  transform: translateX(100%); transition: transform var(--t); box-shadow: var(--sh-lg);
  display: flex; flex-direction: column; padding: 24px; overflow-y: auto;
}
.mobile-nav.open { transform: none; }
.mobile-nav a { padding: 14px 8px; font-family: var(--head); font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav a.sub { padding-left: 22px; font-weight: 500; font-size: .92rem; color: var(--body); border-bottom: 1px dashed var(--line); }
.mobile-nav .mn-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mobile-nav .mn-cta { margin-top: 20px; display: grid; gap: 10px; }
.overlay { position: fixed; inset: 0; background: rgba(15,61,58,.5); z-index: 65; opacity: 0; visibility: hidden; transition: var(--t); }
.overlay.open { opacity: 1; visibility: visible; }

/* ===== Responsive ===== */
@media (max-width: 1140px) {
  .nav, .header-phone { display: none; }
  .burger { display: flex; }
  .header-cta { margin-left: auto; }
}
@media (max-width: 1024px) {
  .detail { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .why-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .quickstrip-grid { grid-template-columns: repeat(2, 1fr); }
  .quickstrip-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .emergency-bar .eb-note { display: none; }
  .float-wa { bottom: 78px; }
  .scrolltop { bottom: 144px; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 78;
    box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px; font-family: var(--head); font-weight: 700; color: #fff; font-size: .98rem; }
  .mobile-bar a svg { width: 20px; height: 20px; }
  .mobile-bar .mb-call { background: var(--red); }
  .mobile-bar .mb-wa { background: #25D366; }
  body { padding-bottom: 54px; }
  .float-wa { display: none; }
  .header-cta { display: none; }
  .header .logo-partner { height: 32px; }
  .header .logo-text .lt-tag { display: none; }
  .header .logo-text .lt-brand { font-size: 1.04rem; }
}
@media (max-width: 480px) {
  .why-grid, .steps { grid-template-columns: 1fr; }
  .hero-trust { gap: 18px 26px; }
  .hero-trust-item b { font-size: 1.4rem; }
  .header .logo-partner { height: 28px; }
  .header .logo-sep { display: none; }
  .header .logo-text .lt-brand { font-size: .98rem; }
}
