/* ============================================================
   ATLAS NAKLİYAT — Premium One-Page Theme
   Design tokens, layout, components, animations
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
    /* Brand palette */
    --navy-900: #060f24;
    --navy-800: #0a1a3a;
    --navy-700: #0f2350;
    --navy-600: #16306b;
    --navy-100: #eef2fb;

    --accent: #ff6a2c;
    --accent-600: #f15a1c;
    --accent-100: #fff1ea;

    --white: #ffffff;
    --bg: #ffffff;
    --bg-soft: #f6f8fc;
    --line: #e7ecf5;

    --ink: #0a1a3a;          /* headings */
    --muted: #5a6a86;        /* body text */
    --muted-2: #8593ad;

    /* Typography */
    --font: "DM Sans", sans-serif;

    /* Radius & shadow */
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 26px;
    --r-xl: 34px;
    --shadow-sm: 0 4px 18px rgba(10, 26, 58, .06);
    --shadow-md: 0 18px 44px rgba(10, 26, 58, .10);
    --shadow-lg: 0 30px 70px rgba(10, 26, 58, .16);
    --shadow-accent: 0 16px 40px rgba(255, 106, 44, .32);

    /* Motion */
    --ease: cubic-bezier(.22, .61, .36, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);

    /* Layout */
    --header-h: 84px;
}

/* ---------- 2. Base / Reset ---------- */
* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
    -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--muted);
    background: var(--bg);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--ink);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
    margin: 0 0 .6rem;
}

p { margin: 0 0 1rem; }

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }

img { max-width: 100%; display: block; }

::selection { background: var(--accent); color: #fff; }

.text-accent { color: var(--accent); }

/* Section rhythm */
.section { padding: clamp(64px, 8vw, 120px) 0; position: relative; }
.section-alt { background: var(--bg-soft); }

.container { max-width: 1200px; }

/* ---------- 3. Accessibility helpers ---------- */
.skip-link {
    position: fixed;
    left: 16px;
    top: -60px;
    z-index: 2000;
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 0 0 10px 10px;
    font-weight: 700;
    transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 6px;
}

/* ---------- 4. Preloader ---------- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: var(--navy-800);
    display: grid;
    place-items: center;
    transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
#preloader.is-done { opacity: 0; visibility: hidden; }

.preloader-mark { display: grid; justify-items: center; gap: 14px; }
.preloader-tri {
    stroke-dasharray: 130;
    stroke-dashoffset: 130;
    animation: draw 1.4s var(--ease) infinite alternate;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.preloader-text {
    color: #fff;
    font-weight: 800;
    letter-spacing: .16em;
    font-size: .9rem;
}
.preloader-text em { color: var(--accent); font-style: normal; }

/* ---------- 5. Buttons ---------- */
.btn {
    --bs-btn-focus-box-shadow: none;
    font-family: var(--font);
    font-weight: 700;
    letter-spacing: -.01em;
    border-radius: 999px;
    padding: .8rem 1.6rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
    will-change: transform;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }

.btn-ico { width: 20px; height: 20px; fill: currentColor; }

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
    background: var(--accent-600);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(255, 106, 44, .42);
}

.btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    background: #fff;
    color: var(--navy-800);
    transform: translateY(-3px);
}

.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); color: #fff; transform: translateY(-3px); }

/* ---------- 6. Topbar ---------- */
.topbar {
    background: #062E39;
    color: rgba(255, 255, 255, .8);
    font-size: .85rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar-info { display: flex; gap: 28px; }
.topbar-info li { display: inline-flex; align-items: center; gap: 8px; }
.topbar .ico { width: 16px; height: 16px; fill: var(--accent); flex: none; }
.topbar-rating { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: #fff; }
.ico-star { width: 15px; height: 15px; fill: var(--accent); }
.topbar-social a {
    width: 30px; height: 30px;
    display: grid; place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}
.topbar-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,.85); transition: fill .25s; }
.topbar-social a:hover { background: var(--accent); }
.topbar-social a:hover svg { fill: #fff; }

/* ---------- 7. Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    /* Açılan mobil menünün (z-index:1100) ÜSTÜNDE kalmalı ki kapatma (X)
       butonu menü açıkken de görünür ve tıklanabilir olsun. */
    z-index: 1110;
    border-bottom: 1px solid transparent;
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
/* Buzlu cam arka planı header'ın KENDİSİ yerine bir pseudo-elemana koyuyoruz:
   backdrop-filter uygulanan eleman, içindeki position:fixed mobil menü için
   "containing block" oluşturur ve menüyü kısa header kutusuna hapsederdi. */
.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    pointer-events: none;
}
.site-header.is-stuck {
    box-shadow: var(--shadow-sm);
    border-color: var(--line);
}
.site-header .navbar { padding: .85rem 0; }

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    color: var(--navy-800);
}
.brand-mark { width: 40px; height: 40px; color: var(--navy-800); flex: none; }
.brand-text {
    font-size: 1.18rem;
    letter-spacing: -.01em;
    line-height: 1;
    color: var(--navy-800);
}
.brand-text em { color: var(--accent); font-style: normal; }

.navbar-nav { gap: 2px; }
.nav-link {
    font-weight: 600;
    color: var(--ink);
    font-size: .96rem;
    padding: .5rem .85rem !important;
    border-radius: 999px;
    position: relative;
    transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width .3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { width: 18px; }

.btn-nav-cta { padding: .65rem 1.35rem; font-size: .92rem; }

/* Hamburger */
.navbar-toggler {
    border: none;
    background: var(--navy-100);
    width: 46px; height: 46px;
    border-radius: 12px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
    display: block;
    width: 22px; height: 2px;
    background: var(--navy-800);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop nav layout */
.navbar-collapse-custom {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 1rem;
}

@media (max-width: 991.98px) {
    .navbar-collapse-custom {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(86vw, 360px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: #fff;
        padding: calc(var(--header-h) + 20px) 26px 30px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform .4s var(--ease-out);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        z-index: 1100;
    }
    .navbar-collapse-custom.open { transform: translateX(0); }
    .navbar-collapse-custom .navbar-nav { margin: 0 !important; gap: 2px; }
    .nav-link { padding: .85rem .4rem !important; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
    .nav-link::after { display: none; }
    .btn-nav-cta { margin-top: 22px; justify-content: center; }
    .nav-backdrop {
        position: fixed; inset: 0;
        background: rgba(6, 15, 36, .5);
        backdrop-filter: blur(2px);
        opacity: 0; visibility: hidden;
        transition: opacity .3s var(--ease);
        z-index: 1050;
    }
    .nav-backdrop.show { opacity: 1; visibility: visible; }
    body.nav-open { overflow: hidden; }
}

/* ---------- 8. Hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}
.hero-slider { position: absolute; inset: 0; z-index: -1; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    transform: scale(1.12);
    transition: transform 7s linear;
    z-index: -2;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide.is-active::before { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(105deg, rgba(6, 15, 36, .92) 0%, rgba(6, 15, 36, .72) 42%, rgba(6, 15, 36, .28) 100%),
        linear-gradient(0deg, rgba(6, 15, 36, .55), rgba(6, 15, 36, 0) 45%);
}

.hero-content { padding: 120px 0 60px; max-width: 760px; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    background: rgba(255, 106, 44, .16);
    border: 1px solid rgba(255, 106, 44, .4);
    padding: .5rem 1.1rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}
.hero-title {
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 1.3rem;
}
.hero-sub {
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    max-width: 600px;
    margin-bottom: 2.2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Hero entrance animation */
[data-anim] { opacity: 0; transform: translateY(34px); }
.hero [data-anim] { transform: translateY(40px); }
[data-anim].in {
    opacity: 1;
    transform: none;
    transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
    transition-delay: var(--d, 0ms);
}

/* Hero controls */
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 116px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.hero-dots button {
    width: 11px; height: 11px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: width .35s var(--ease), background .35s var(--ease);
    padding: 0;
}
.hero-dots button.active { width: 34px; background: var(--accent); }

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .4);
    background: rgba(6, 15, 36, .25);
    backdrop-filter: blur(6px);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.hero-arrow svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero-arrow:hover { background: var(--accent); border-color: var(--accent); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-prev:hover { transform: translateY(-50%) translateX(-3px); }
.hero-next:hover { transform: translateY(-50%) translateX(3px); }
@media (max-width: 991.98px) { .hero-arrow { display: none; } }

.hero-trust {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: rgba(6, 15, 36, .55);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 16px 0;
    z-index: 4;
}
.hero-trust li {
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
    font-size: .92rem;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}
.trust-ico { width: 19px; height: 19px; fill: var(--accent); }
@media (max-width: 575.98px){
    .hero-dots { bottom: 150px; }
    .hero-trust li { font-size: .8rem; }
}

/* ---------- 9. Section heads ---------- */
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.kicker {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}
.kicker::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 22px; height: 2px;
    background: var(--accent);
    transform: translateY(-50%);
}
.section-head.text-center .kicker { padding-left: 0; }
.section-head.text-center .kicker::before { display: none; }
.kicker-light { color: var(--accent); }

.section-title {
    font-size: clamp(1.9rem, 3.6vw, 2.85rem);
    margin-bottom: 1rem;
}
.section-lead {
    font-size: 1.08rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* ---------- 10. Services ---------- */
.service-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 2.2rem 2rem;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    height: 4px; width: 0;
    background: var(--accent);
    transition: width .4s var(--ease);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.service-card:hover::after { width: 100%; }

.service-ico {
    width: 64px; height: 64px;
    display: grid; place-items: center;
    border-radius: 18px;
    background: var(--navy-100);
    color: var(--navy-800);
    margin-bottom: 1.4rem;
    transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.service-ico svg { width: 30px; height: 30px; fill: currentColor; }
.service-card:hover .service-ico {
    background: var(--accent);
    color: #fff;
    transform: rotate(-6deg) scale(1.05);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.service-card p { font-size: .98rem; margin-bottom: 1.4rem; }
.service-link {
    font-weight: 700;
    color: var(--navy-800);
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.service-link span { transition: transform .3s var(--ease); }
.service-link:hover { color: var(--accent); }
.service-link:hover span { transform: translateX(5px); }

/* ---------- 11. Why us ---------- */
.whyus-figure {
    position: relative;
    margin-top: 2rem;
    border-radius: var(--r-lg);
    overflow: hidden;
}
.whyus-figure img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--r-lg);
}
.whyus-badge {
    position: absolute;
    left: 18px; bottom: 18px;
    background: rgba(10, 26, 58, .82);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 1rem 1.3rem;
    border-radius: var(--r-md);
    border: 1px solid rgba(255, 255, 255, .12);
}
.whyus-badge strong { display: block; font-size: 1.7rem; color: var(--accent); line-height: 1; }
.whyus-badge span { font-size: .82rem; opacity: .85; }

.feature-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 1.7rem 1.5rem;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.section-alt .feature-item { background: #fff; }
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.feature-ico {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: grid; place-items: center;
    background: var(--accent-100);
    color: var(--accent);
    margin-bottom: 1.1rem;
    transition: transform .35s var(--ease);
}
.feature-ico svg { width: 26px; height: 26px; fill: currentColor; }
.feature-item:hover .feature-ico { transform: scale(1.1) rotate(4deg); }
.feature-item h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.feature-item p { font-size: .94rem; margin-bottom: 0; }

/* ---------- 12. Stats ---------- */
.stats-section {
    background:
        linear-gradient(120deg, rgba(6, 15, 36, .94), rgba(15, 35, 80, .86)),
        url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1920&q=70") center/cover fixed;
    color: #fff;
}
.stat { padding: 1rem 0; }
.stat-num {
    display: block;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
}
.stat-num::after { content: ""; }
.stat-label {
    display: block;
    margin-top: .7rem;
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
    font-size: .98rem;
}
.stat { position: relative; }
@media (min-width: 992px) {
    .stat::after {
        content: "";
        position: absolute;
        right: -1px; top: 50%;
        height: 54px; width: 1px;
        background: rgba(255, 255, 255, .14);
        transform: translateY(-50%);
    }
    .col-lg-3:last-child .stat::after { display: none; }
}

/* ---------- 13. Process timeline ---------- */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
    margin: 0;
}
.process-timeline::before {
    content: "";
    position: absolute;
    top: 38px; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--line), var(--accent), var(--line));
    z-index: 0;
}
.process-step {
    text-align: center;
    padding: 0 .5rem;
    position: relative;
    z-index: 1;
}
.process-ico {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--line);
    color: var(--navy-800);
    display: grid; place-items: center;
    margin: 0 auto 1.2rem;
    position: relative;
    transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s;
}
.process-ico svg { width: 32px; height: 32px; fill: currentColor; }
.process-step:hover .process-ico {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-6px) scale(1.05);
}
.process-num {
    position: absolute;
    top: -6px; right: calc(50% - 50px);
    background: var(--navy-800);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: grid; place-items: center;
    z-index: 2;
    transition: background .4s var(--ease);
}
.process-step:hover .process-num { background: var(--accent); }
.process-step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.process-step p { font-size: .9rem; margin-bottom: 0; }

@media (max-width: 991.98px) {
    .process-timeline { grid-template-columns: 1fr; gap: 1.5rem; max-width: 460px; margin-inline: auto; text-align: left; }
    .process-timeline::before { left: 37px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(180deg, var(--line), var(--accent), var(--line)); }
    .process-step { display: grid; grid-template-columns: 76px 1fr; gap: 1.2rem; text-align: left; align-items: start; }
    .process-ico { margin: 0; }
    .process-num { right: auto; left: 50px; top: -4px; }
    .process-step h3 { margin-top: .4rem; }
}

/* ---------- 14. Fleet ---------- */
.fleet-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    height: 100%;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.fleet-img {
    aspect-ratio: 16/11;
    background-size: cover;
    background-position: center;
    transition: transform .7s var(--ease);
}
.fleet-card:hover .fleet-img { transform: scale(1.08); }
.fleet-body { padding: 1.6rem 1.6rem 1.8rem; }
.fleet-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-100);
    padding: .35rem .8rem;
    border-radius: 999px;
    margin-bottom: .9rem;
}
.fleet-body h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.fleet-body p { font-size: .95rem; margin-bottom: 0; }

/* ---------- 15. Testimonials ---------- */
.testimonial-slider { max-width: 920px; margin: 0 auto; overflow: hidden; }
.testimonial-track {
    display: flex;
    transition: transform .6s var(--ease-out);
}
.testimonial-card {
    flex: 0 0 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: clamp(2rem, 4vw, 3.2rem);
    margin: 0;
    box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: var(--accent); font-size: 1.25rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
.testimonial-card blockquote {
    font-size: clamp(1.1rem, 2.4vw, 1.45rem);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
    letter-spacing: -.01em;
    margin: 0 0 1.8rem;
}
.testimonial-card blockquote::before { content: "“"; color: var(--accent); font-size: 1.4em; line-height: 0; }
.testimonial-card figcaption { display: flex; align-items: center; gap: 14px; }
.t-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--navy-800);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 1rem;
    flex: none;
}
.testimonial-card figcaption strong { display: block; color: var(--ink); font-size: 1.02rem; }
.testimonial-card figcaption em { font-style: normal; color: var(--muted-2); font-size: .88rem; }

.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 2rem; }
.testimonial-nav button {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--navy-800);
    display: grid; place-items: center;
    cursor: pointer;
    transition: background .3s var(--ease), color .3s, border-color .3s, transform .3s;
}
.testimonial-nav button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.testimonial-nav button:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots button {
    width: 9px; height: 9px;
    border-radius: 999px;
    border: none;
    background: var(--line);
    cursor: pointer;
    padding: 0;
    transition: width .3s var(--ease), background .3s;
}
.testimonial-dots button.active { width: 26px; background: var(--accent); }

/* ---------- 16. FAQ ---------- */
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow .3s var(--ease), border-color .3s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.3rem 1.5rem;
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}
.faq-icon {
    flex: none;
    width: 26px; height: 26px;
    position: relative;
}
.faq-icon::before, .faq-icon::after {
    content: "";
    position: absolute;
    background: var(--accent);
    border-radius: 2px;
    transition: transform .35s var(--ease);
}
.faq-icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}
.faq-a > div { padding: 0 1.5rem; }
.faq-a p { padding-bottom: 1.4rem; margin: 0; color: var(--muted); }

/* ---------- 17. Quote form ---------- */
.quote-section { background: var(--bg-soft); }
.quote-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #fff;
}
.quote-aside {
    background:
        linear-gradient(150deg, var(--navy-800), var(--navy-700));
    color: #fff;
    padding: clamp(2.4rem, 4vw, 3.6rem);
    position: relative;
    overflow: hidden;
}
.quote-aside::before {
    content: "";
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,106,44,.35), transparent 70%);
    top: -80px; right: -80px;
}
.quote-aside .section-title { position: relative; }
.quote-aside p { color: rgba(255, 255, 255, .8); position: relative; }
.quote-points { margin: 1.6rem 0 2rem; position: relative; }
.quote-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: .85rem;
    font-weight: 600;
    color: #fff;
}
.quote-points svg { width: 22px; height: 22px; fill: var(--accent); flex: none; }
.quote-call {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 1.4rem;
}
.quote-call span { display: block; font-size: .85rem; color: rgba(255, 255, 255, .65); }
.quote-call a { font-size: 1.5rem; font-weight: 800; color: #fff; }
.quote-call a:hover { color: var(--accent); }

.quote-form-col { padding: clamp(2rem, 4vw, 3.2rem); }
.form-label { font-weight: 600; color: var(--ink); font-size: .9rem; margin-bottom: .4rem; }
.quote-form .form-control,
.quote-form .form-select {
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: .8rem 1rem;
    font-size: .98rem;
    color: var(--ink);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.quote-form .form-control::placeholder { color: var(--muted-2); }
.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 106, 44, .14);
    outline: none;
}
.quote-form .form-control.invalid,
.quote-form .form-select.invalid {
    border-color: #e03131;
    box-shadow: 0 0 0 4px rgba(224, 49, 49, .12);
}
.field-error {
    display: none;
    color: #e03131;
    font-size: .8rem;
    margin-top: .3rem;
}
.field-error.show { display: block; }
.form-check-wrap { display: flex; align-items: flex-start; gap: 10px; }
.form-check-input { margin-top: .25rem; border-color: var(--muted-2); }
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }
.form-check-input:focus { box-shadow: 0 0 0 4px rgba(255, 106, 44, .14); border-color: var(--accent); }
.form-check-label { font-size: .88rem; color: var(--muted); }
.form-success {
    margin-top: 1.2rem;
    background: #e8f7ec;
    color: #1d7a37;
    padding: .9rem 1.1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: .95rem;
}

/* ---------- 18. Contact ---------- */
.contact-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 2rem 1.7rem;
    text-align: center;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.contact-ico {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: var(--navy-100);
    color: var(--navy-800);
    display: grid; place-items: center;
    margin: 0 auto 1.1rem;
    transition: background .35s var(--ease), color .35s;
}
.contact-ico svg { width: 28px; height: 28px; fill: currentColor; }
.contact-card:hover .contact-ico { background: var(--accent); color: #fff; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.contact-card p { font-size: .95rem; margin-bottom: 0; color: var(--muted); }

.map-wrap {
    margin-top: 2.5rem;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    line-height: 0;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; filter: grayscale(.2) contrast(1.05); }

/* ---------- 19. Footer ---------- */
.site-footer {
    background: url('../images/footer-bg.png') center top / cover no-repeat, #062E39;
    color: rgba(255, 255, 255, .7);
    padding: clamp(56px, 7vw, 90px) 0 0;
}
.footer-top { padding-bottom: 40px; }
.footer-brand { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 1.2rem; }
.footer-brand .brand-text { color: #fff; font-size: 1.18rem; font-weight: 800; }
.footer-about { font-size: .95rem; max-width: 340px; }
.footer-title {
    color: #fff;
    font-size: 1.02rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: -.01em;
}
.footer-links li, .footer-contact li { margin-bottom: .7rem; }
.footer-links a { font-size: .94rem; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .94rem;
}
.footer-contact svg { width: 18px; height: 18px; fill: var(--accent); flex: none; margin-top: 3px; }
.footer-contact a:hover { color: var(--accent); }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    display: grid; place-items: center;
    transition: background .3s var(--ease), transform .3s;
}
.footer-social svg { width: 17px; height: 17px; fill: #fff; }
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: .88rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- 20. Floating actions ---------- */
.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 950;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fab {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform .3s var(--ease);
}
.fab svg { width: 28px; height: 28px; fill: #fff; }
.fab:hover { transform: scale(1.08); }
.fab-wa { background: #25d366; }
.fab-call { background: var(--accent); }
.fab-wa::before, .fab-call::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: ping 2.2s var(--ease) infinite;
    z-index: -1;
}
.fab-wa::before { background: rgba(37, 211, 102, .5); }
.fab-call::before { background: rgba(255, 106, 44, .5); }
@keyframes ping {
    0% { transform: scale(1); opacity: .7; }
    80%, 100% { transform: scale(1.7); opacity: 0; }
}
.fab-tip {
    position: absolute;
    right: 70px;
    background: var(--navy-800);
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    padding: .4rem .8rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.fab-tip::after {
    content: "";
    position: absolute;
    right: -5px; top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--navy-800);
}
.fab:hover .fab-tip { opacity: 1; transform: translateX(0); }
@media (max-width: 575.98px) { .fab-tip { display: none; } }

/* ---------- 21. Scroll to top ---------- */
.scroll-top {
    position: fixed;
    left: 18px;
    bottom: 18px;
    width: 48px; height: 48px;
    border-radius: 14px;
    border: none;
    background: var(--navy-800);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 940;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s;
}
.scroll-top svg { width: 24px; height: 24px; fill: #fff; }
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--accent); }

/* ---------- 22. Reveal stagger for grids ---------- */
[data-anim][data-anim-delay] { /* delay set via inline --d in JS */ }

/* ---------- 23. Responsive tweaks ---------- */
@media (max-width: 991.98px) {
    :root { --header-h: 72px; }
    .hero-content { padding-top: 100px; }
}
@media (max-width: 575.98px) {
    .btn-lg { width: 100%; justify-content: center; }
    .hero-cta { width: 100%; }
    .section-head { text-align: left; }
    .section-head.text-center { text-align: center; }
}
