:root {
    --navy: #0a1628;
    --navy-mid: #142238;
    --navy-light: #1e3354;
    --gold: #c9a227;
    --gold-light: #dbb94a;
    --gold-glow: rgba(201, 162, 39, 0.12);
    --cream: #f7f5f0;
    --white: #ffffff;
    --text: #1a2332;
    --text-muted: #5c6578;
    --border: #e4e0d8;
    --border-soft: rgba(228, 224, 216, 0.85);
    --shadow: 0 8px 40px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 24px 80px rgba(10, 22, 40, 0.14);
    --shadow-card: 0 6px 28px rgba(10, 22, 40, 0.07);
    --shadow-card-hover: 0 14px 44px rgba(10, 22, 40, 0.12);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    --radius: var(--radius-md);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Outfit', system-ui, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --header-h: 130px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}
body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: clip;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}
main { overflow-x: clip; max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header-overlay {
    background: linear-gradient(180deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.4) 70%, transparent 100%);
}
.header-overlay.scrolled,
.header-overlay.nav-open {
    background: rgba(10, 22, 40, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
@media (max-width: 900px) {
    .header-overlay.scrolled,
    .header-overlay.nav-open {
        backdrop-filter: none;
    }
}
.page-home .site-header:not(.scrolled):not(.nav-open) .header-bar {
    border-bottom-color: rgba(255,255,255,0.12);
}
.page-home .site-header:not(.scrolled):not(.nav-open) .header-info {
    color: rgba(255,255,255,0.85);
}
.page-home .site-header:not(.scrolled):not(.nav-open) .header-info-icon {
    border-color: rgba(201,162,39,0.4);
    color: var(--gold-light);
}
.page-home .site-header:not(.scrolled):not(.nav-open) .header-info small {
    color: rgba(255,255,255,0.5);
}
.page-home .site-header:not(.scrolled):not(.nav-open) .nav-menu a {
    color: rgba(255,255,255,0.8);
}
.page-home .site-header:not(.scrolled):not(.nav-open) .nav-menu a:hover,
.page-home .site-header:not(.scrolled):not(.nav-open) .nav-menu a.active {
    color: var(--gold-light);
}
.page-home .site-header:not(.scrolled):not(.nav-open) .nav-toggle span {
    background: #fff;
}

.site-header:not(.header-overlay) {
    background: var(--navy);
}
.site-header:not(.header-overlay) .header-bar {
    border-bottom-color: rgba(255,255,255,0.08);
}
.site-header:not(.header-overlay) .header-info { color: rgba(255,255,255,0.85); }
.site-header:not(.header-overlay) .header-info-icon {
    border-color: rgba(201,162,39,0.35);
    color: var(--gold-light);
}
.site-header:not(.header-overlay) .header-info small { color: rgba(255,255,255,0.45); }
.site-header:not(.header-overlay) .nav-menu a { color: rgba(255,255,255,0.75); }
.site-header:not(.header-overlay) .nav-menu a:hover,
.site-header:not(.header-overlay) .nav-menu a.active { color: var(--gold-light); }
.site-header:not(.header-overlay) .nav-toggle span { background: #fff; }

.header-bar {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    transition: padding 0.35s ease, border-color 0.35s ease;
}
.header-bar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}
.header-left { justify-self: start; }
.header-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-logo {
    justify-self: center;
    display: flex;
    align-items: center;
}
.header-logo img {
    height: 64px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    transition: height 0.35s ease;
}
.header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
}
.header-info-right { justify-content: flex-end; }
.header-info-icon {
    width: 42px; height: 42px;
    border: 1px solid rgba(201,162,39,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.header-info-text { display: flex; flex-direction: column; line-height: 1.3; }
.header-info-text small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}
.header-info-text strong {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    display: block;
    max-width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header-info:hover { color: var(--gold-light); }

.header-nav {
    padding: 0 0 14px;
    transition: padding 0.35s ease;
}
.header-left,
.header-right .header-info {
    transition: opacity 0.3s ease, visibility 0.3s ease, max-width 0.35s ease;
}
.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 4px;
}
.nav-menu > li > a {
    display: block;
    padding: 10px 22px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    position: relative;
}
.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 22px; right: 22px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--gold-light); }
.nav-menu > li > a.active::after,
.nav-menu > li > a:hover::after { transform: scaleX(1); }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--navy);
    min-width: 240px;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}
@media (min-width: 901px) {
    .has-dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}
@media (max-width: 900px) {
    .has-dropdown:hover .dropdown {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}
.dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
}
.dropdown a:hover { color: var(--gold-light); background: rgba(255,255,255,0.04); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 22px; height: 1.5px;
    background: #fff;
    transition: var(--transition);
}

main { padding-top: var(--header-h); transition: padding-top 0.35s ease; }
.page-home main { padding-top: 0; }
body.page-inner .site-header.scrolled ~ main { padding-top: 72px; }

/* ─── COMPACT HEADER (scroll) ─── */
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(10, 22, 40, 0.18);
}
.site-header.scrolled .header-bar {
    padding: 8px 0;
    border-bottom-color: transparent;
}
.site-header.scrolled .header-left,
.site-header.scrolled .header-right .header-info {
    opacity: 0;
    visibility: hidden;
    max-width: 0;
    overflow: hidden;
    pointer-events: none;
}
.site-header.scrolled .header-logo img {
    height: 44px;
}
.site-header.scrolled .header-nav {
    padding-bottom: 10px;
}
.site-header.scrolled .nav-menu > li > a {
    padding: 8px 16px;
    font-size: 0.76rem;
}

@media (min-width: 901px) {
    .site-header.scrolled {
        display: flex;
        align-items: center;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(16px);
    }
    .site-header.scrolled .header-left,
    .site-header.scrolled .header-right {
        display: none;
    }
    .site-header.scrolled .header-bar {
        flex: 0 0 auto;
        padding: 8px 0 8px 32px;
        border: none;
    }
    .site-header.scrolled .header-bar > .container {
        width: auto;
        max-width: none;
        padding: 0;
    }
    .site-header.scrolled .header-bar-inner {
        grid-template-columns: auto;
        gap: 0;
    }
    .site-header.scrolled .header-logo {
        justify-self: auto;
    }
    .site-header.scrolled .header-nav {
        flex: 1;
        padding: 8px 32px 8px 0;
    }
    .site-header.scrolled .header-nav > .container {
        max-width: none;
        padding: 0;
    }
    .site-header.scrolled .nav-menu {
        justify-content: flex-end;
    }
}

@media (max-width: 900px) {
    .site-header.scrolled .header-info-phone,
    .site-header.scrolled .header-info-email {
        display: none;
    }
    .site-header.scrolled .header-nav:not(.open) {
        display: none;
    }
    .site-header.scrolled .header-bar {
        padding: 10px 0;
    }
    .site-header.scrolled .header-logo img {
        height: 40px;
    }
    body.page-inner .site-header.scrolled ~ main {
        padding-top: 62px;
    }
}

/* ─── CINEMATIC HERO ─── */
.hero-cinematic {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}
.hero-cinematic-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-cinematic-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,22,40,0.55) 0%, transparent 35%),
        linear-gradient(0deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.5) 35%, transparent 65%);
}
.hero-cinematic-title {
    position: absolute;
    bottom: 80px;
    left: 0; right: 0;
    z-index: 2;
    text-align: center;
    padding: 0 32px;
}
.hero-cinematic-title h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4.2rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: clamp(1px, 0.3vw, 3px);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 4px 40px rgba(0,0,0,0.4);
    animation: heroTitleIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes heroTitleIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-scroll-line {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll-line span {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ─── STATS PREMIUM ─── */
.stats-premium {
    background: var(--navy);
    padding: 0;
    margin-top: -1px;
    position: relative;
    z-index: 5;
}
.stats-premium-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    padding: 48px 0;
}
.stats-premium-item {
    text-align: center;
    padding: 0 24px;
}
.stats-premium-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}
.stats-premium-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}
.stats-premium-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
}

/* ─── INTRO PREMIUM ─── */
.intro-premium {
    padding: 120px 0;
    background: var(--cream);
}
.intro-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.eyebrow-light { color: var(--gold-light); }
.intro-premium-content h2,
.section-head-premium h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 28px;
}
.intro-premium-content h2 em {
    font-style: italic;
    color: var(--navy-light);
}
.intro-lead {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.8;
}
.intro-premium-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}
.intro-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 36px 0;
}
.intro-signature-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
}
.intro-signature strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--navy);
}
.intro-signature small {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.intro-premium-visual { position: relative; }
.intro-visual-frame {
    position: relative;
    background: var(--white);
    padding: 48px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}
.intro-visual-frame img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.intro-visual-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--navy);
    color: var(--gold-light);
    padding: 24px 28px;
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.intro-visual-badge span {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.intro-visual-badge small {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}
.intro-visual-cards {
    position: absolute;
    top: 40px;
    left: -40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.intro-mini-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: var(--shadow-card);
}
.intro-mini-card i { color: var(--gold); }

/* ─── BUTTONS PREMIUM ─── */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--navy);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.12);
}
.btn-premium:hover {
    background: var(--navy-light);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}
.btn-premium-outline {
    background: transparent;
    border: 1px solid var(--navy);
    color: var(--navy);
}
.btn-premium-outline:hover {
    background: var(--navy);
    color: #fff;
}
.btn-premium-gold {
    background: var(--gold);
    color: var(--navy);
}
.btn-premium-gold:hover {
    background: var(--gold-light);
    color: var(--navy);
}
.btn-premium-outline-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.btn-premium-outline-light:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

/* ─── SERVICES PREMIUM ─── */
.services-premium {
    padding: 120px 0;
    background: var(--white);
}
.section-head-premium { margin-bottom: 64px; max-width: 560px; }
.section-head-light h2 { color: #fff; }
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.service-premium-card {
    background: var(--white);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: block;
    color: var(--text);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}
.service-premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.service-premium-card:hover {
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(201, 162, 39, 0.25);
    z-index: 2;
}
.service-premium-card:hover::before { transform: scaleX(1); }
.service-premium-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: rgba(10,22,40,0.06);
    line-height: 1;
    margin-bottom: 24px;
}
.service-premium-icon {
    width: 52px; height: 52px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 24px;
    transition: var(--transition);
    background: var(--cream);
}
.service-premium-card:hover .service-premium-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold-light);
    border-radius: var(--radius-md);
}
.service-premium-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}
.service-premium-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}
.service-premium-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-premium-card:hover .service-premium-link { gap: 14px; }

/* ─── WHY PREMIUM ─── */
.why-premium {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.why-premium-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.why-premium-item {
    padding: 36px 30px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    background: rgba(255,255,255,0.02);
}
.why-premium-item:hover {
    border-color: rgba(201,162,39,0.35);
    background: rgba(255,255,255,0.04);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.why-premium-icon {
    width: 56px; height: 56px;
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 24px;
    background: rgba(201,162,39,0.06);
}
.why-premium-item h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}
.why-premium-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

/* ─── PROCESS ─── */
.process-premium {
    padding: 120px 0;
    background: var(--white);
}
.process-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.process-step {
    position: relative;
    padding: 32px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-soft);
    background: var(--cream);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(201, 162, 39, 0.2);
}
.process-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 32px; height: 1px;
    background: var(--gold);
}
.process-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    color: rgba(10,22,40,0.06);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}
.process-step h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
}
.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── FLEET PREVIEW ─── */
.fleet-preview {
    padding: 120px 0;
    background: var(--cream);
    overflow-x: clip;
    max-width: 100%;
}
.fleet-preview-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 32px;
}
.fleet-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    max-width: 960px;
    width: 100%;
    min-width: 0;
    margin: 0 auto;
}
.fleet-preview-card {
    position: relative;
    aspect-ratio: 16/10;
    min-height: 280px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius-xl);
    background: linear-gradient(165deg, #faf9f6 0%, #f0eeea 100%);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-soft);
}
.fleet-preview-card img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px 14px;
    box-sizing: border-box;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 6px 16px rgba(10, 22, 40, 0.1));
}
.fleet-preview-card:hover img { transform: scale(1.04); }
.fleet-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,22,40,0.88) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius-xl);
}
.fleet-preview-card:hover .fleet-preview-overlay { opacity: 1; }
.fleet-preview-overlay span {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 6px;
}
.fleet-preview-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
    font-weight: 600;
}
.fleet-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.fleet-cat-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    padding: 48px 24px;
    text-align: center;
    transition: var(--transition);
    color: var(--navy);
    box-shadow: var(--shadow-card);
}
.fleet-cat-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}
.fleet-cat-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}
.fleet-cat-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ─── VALUES ─── */
.values-premium {
    padding: 100px 0;
    background: var(--white);
}
.values-premium-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.values-premium-inner blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 40px;
    position: relative;
}
.values-premium-inner blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: var(--font-display);
}
.values-premium-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.values-premium-tags span {
    padding: 10px 24px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--white);
    box-shadow: var(--shadow-card);
}

/* ─── PARTNERS MARQUEE ─── */
.partners-premium {
    padding: 80px 0 100px;
    background: var(--cream);
    overflow: hidden;
}
.partners-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.partners-marquee-track {
    display: flex;
    gap: 64px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partners-marquee-item {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    box-shadow: var(--shadow-card);
}
.partners-marquee-item img {
    max-height: 48px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}
.partners-marquee-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partners-hint {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 12px;
    max-width: 560px;
}
.partners-hint strong { color: var(--navy); }

.partners-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding-bottom: 20px;
}
.partners-placeholder-item {
    aspect-ratio: 16/10;
    border: 1px dashed var(--border-soft);
    border-radius: var(--radius-lg);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    opacity: 0.7;
    box-shadow: var(--shadow-card);
}
.partners-placeholder-item i {
    font-size: 1.4rem;
    color: var(--gold);
    opacity: 0.5;
}
.partners-placeholder-item span {
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .partners-placeholder-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .partners-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── CTA PREMIUM ─── */
.cta-premium {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.cta-premium-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.08) 0%, transparent 60%);
}
.cta-premium-inner {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-premium-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}
.cta-premium-inner p {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    margin-bottom: 40px;
}
.cta-premium-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── INNER PAGES ─── */
.page-header {
    background: var(--navy);
    padding: 48px 0 64px;
    text-align: center;
    color: #fff;
    margin-top: calc(-1 * var(--header-h));
    padding-top: calc(var(--header-h) + 48px);
    position: relative;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    letter-spacing: 1px;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 16px;
    color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold-light); }

.section { padding: 100px 0; }
.section-alt { background: var(--cream); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--navy);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(201, 162, 39, 0.25);
}
.service-card-icon {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 36px;
    text-align: center;
}
.service-card-icon i { font-size: 2rem; color: var(--gold-light); }
.service-card-body { padding: 32px; }
.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.service-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.service-card-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-preview-image {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    padding: 32px;
    background: var(--cream);
    box-shadow: var(--shadow-card);
}
.about-preview-image img { width: 100%; object-fit: contain; }
.about-preview-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 20px;
}
.about-preview-content p { color: var(--text-muted); margin-bottom: 16px; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 12px 14px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.about-feature i { color: var(--gold); }

.about-content { max-width: 760px; margin: 0 auto; }
.about-content h2 {
    font-family: var(--font-display);
    color: var(--navy);
    margin: 36px 0 16px;
    font-size: 1.6rem;
}
.about-content p { color: var(--text-muted); margin-bottom: 16px; text-align: justify; }
.about-signature {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: right;
}
.about-signature .name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
}

.service-detail-content { max-width: 760px; margin: 0 auto 60px; }
.service-detail-content h2 {
    font-family: var(--font-display);
    color: var(--navy);
    margin: 28px 0 14px;
}
.service-detail-content h3 { color: var(--navy-light); margin: 24px 0 12px; }
.service-detail-content p, .service-detail-content li { color: var(--text-muted); margin-bottom: 12px; }
.service-detail-content ul { padding-left: 24px; margin-bottom: 20px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-soft);
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    background: rgba(10,22,40,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.4rem;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

.references-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.reference-item {
    padding: 24px 40px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 88px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}
.reference-item:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.25);
}
.reference-item img {
    max-height: 48px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}
.reference-item:hover img { filter: grayscale(0%); opacity: 1; }

.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    max-width: 100%;
}
.fleet-tab {
    padding: 12px 26px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    background: var(--white);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    transition: var(--transition);
    font-family: var(--font);
    box-shadow: var(--shadow-card);
}
.fleet-tab:hover {
    border-color: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}
.fleet-tab.active {
    background: var(--navy);
    color: var(--gold-light);
    border-color: var(--navy);
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.18);
}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    max-width: 960px;
    width: 100%;
    min-width: 0;
    margin: 0 auto;
}
.fleet-section {
    overflow-x: clip;
    max-width: 100%;
}
.fleet-card {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow-card);
    min-width: 0;
    max-width: 100%;
}
.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(201, 162, 39, 0.25);
}
.fleet-card-image {
    aspect-ratio: 16/10;
    min-height: 300px;
    min-width: 0;
    overflow: hidden;
    background: linear-gradient(165deg, #faf9f6 0%, #f0eeea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
}
.fleet-card-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    box-sizing: border-box;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 6px 16px rgba(10, 22, 40, 0.1));
}
.fleet-card:hover .fleet-card-image img { transform: scale(1.05); }
.fleet-card-body {
    padding: 22px 28px 28px;
    border-top: 1px solid var(--border);
    background: var(--white);
}
.fleet-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--navy);
    margin-bottom: 6px;
    font-weight: 600;
}
.fleet-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
}
.contact-info-card {
    background: var(--cream);
    padding: 40px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    background: var(--white);
}
.contact-info-item h4 {
    color: var(--navy);
    margin-bottom: 4px;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}
.contact-info-item p, .contact-info-item a { color: var(--text-muted); font-size: 0.95rem; }

.contact-form {
    background: var(--white);
    padding: 48px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}
.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.contact-form .form-intro { color: var(--text-muted); margin-bottom: 32px; font-size: 0.95rem; }
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--cream);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.file-upload {
    border: 1px dashed var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    background: var(--cream);
    transition: var(--transition);
}
.file-upload:hover {
    border-color: var(--gold);
    background: var(--white);
}
.file-upload i { font-size: 1.8rem; color: var(--gold); margin-bottom: 8px; }
.file-upload p { color: var(--text-muted); font-size: 0.85rem; }
.file-upload input { display: none; }
/* ─── QUOTE FORM ─── */
.quote-premium {
    padding: 100px 0;
    background: var(--cream);
}
.quote-premium-inner {
    max-width: 720px;
    margin: 0 auto;
}
.quote-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-soft);
}
.quote-form-header {
    background: var(--navy);
    padding: 24px 28px;
}
.quote-form-header p {
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}
.quote-form {
    padding: 32px 28px 28px;
}
.quote-form .form-group label {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}
.quote-form .form-group input,
.quote-form .form-group textarea {
    background: #e8eaed;
    border: 1px solid #d5d9de;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--text);
}
.quote-form .form-group input::placeholder,
.quote-form .form-group textarea::placeholder {
    color: #8a9199;
}
.quote-form .form-group input:focus,
.quote-form .form-group textarea:focus {
    background: var(--white);
    border-color: var(--gold);
}
.btn-quote-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}
.quote-page-section { padding-top: 60px; }
.quote-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
}
.quote-page-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
}
.quote-page-info h2 em { color: var(--gold); font-style: italic; }
.quote-page-info p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.quote-info-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}
.quote-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text);
    font-size: 0.95rem;
}
.quote-info-list i { color: var(--gold); font-size: 0.85rem; }
.quote-form-wrap .form-alert { margin: 20px 28px 0; }

@media (max-width: 900px) {
    .quote-page-grid { grid-template-columns: 1fr; gap: 36px; }
    .quote-premium { padding: 80px 0; }
}

.captcha-question {
    background: var(--navy);
    color: var(--gold-light);
    padding: 14px 24px;
    font-weight: 600;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}
.captcha-group { display: flex; align-items: center; gap: 16px; }
.captcha-group input { flex: 1; }
.form-alert {
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
}
.form-alert.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-alert.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-map {
    margin-top: 0;
}
.contact-map iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}
.map-container {
    margin-top: 60px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    color: var(--navy);
    box-shadow: var(--shadow-card-hover);
}
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover {
    background: var(--navy-light);
    color: var(--gold-light);
    box-shadow: var(--shadow-card-hover);
}
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    box-shadow: none;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.cta-section {
    background: var(--navy);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.cta-section p { opacity: 0.55; margin-bottom: 32px; }

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}
.lightbox-caption { color: rgba(255,255,255,0.6); margin-top: 16px; font-family: var(--font-display); font-size: 1.2rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-md);
}
.lightbox-close {
    top: 24px; right: 24px;
    width: 48px; height: 48px;
    font-size: 1.6rem;
}
.lightbox-prev, .lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    font-size: 1rem;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* ─── FOOTER ─── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.55); }
.footer-main { padding: 80px 0 56px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}
.footer-logo { height: 52px; margin-bottom: 20px; }
.footer-col p { font-size: 0.9rem; line-height: 1.8; }
.footer-col h4 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.footer-contact i { color: var(--gold); margin-top: 4px; width: 16px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .services-premium-grid { grid-template-columns: repeat(2, 1fr); }
    .process-premium-grid { grid-template-columns: repeat(2, 1fr); }
    .why-premium-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    :root { --header-h: 110px; }
    .header-bar-inner {
        position: relative;
        display: flex;
        align-items: center;
        gap: 8px;
        min-height: 56px;
    }
    .header-left,
    .header-right {
        display: contents;
    }
    .header-info-phone,
    .header-info-email {
        flex-shrink: 0;
        position: relative;
        z-index: 2;
    }
    .header-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
    .nav-toggle {
        flex-shrink: 0;
        margin-left: auto;
        position: relative;
        z-index: 2;
    }
    .header-logo img { height: 48px; }
    .header-info-text strong { font-size: 0; }
    .header-info-text strong::before {
        content: attr(data-short);
        font-size: 0;
    }
    .header-info-text { display: none; }
    .header-info-icon { width: 38px; height: 38px; font-size: 0.8rem; }
    .header-nav { display: none; }
    .header-nav.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 100dvh;
        background: var(--navy);
        padding: 96px 24px 32px;
        z-index: 1100;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .header-nav.open .container {
        width: 100%;
        max-width: 420px;
        padding: 0;
    }
    .header-nav.open .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
    }
    .header-nav.open .nav-menu > li > a {
        font-size: 0.95rem;
        padding: 16px 20px;
        text-align: center;
        border-radius: var(--radius-sm);
    }
    .header-nav.open .nav-menu > li > a::after {
        left: 20px;
        right: 20px;
        bottom: 10px;
    }
    .header-nav.open .nav-menu > li > a.active {
        background: rgba(255,255,255,0.06);
    }
    .header-nav.open .has-dropdown.open > .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: rgba(255,255,255,0.04);
        border: none;
        box-shadow: none;
        margin-top: 4px;
        min-width: 0;
        width: 100%;
    }
    .header-nav.open .has-dropdown > a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    .header-nav.open .has-dropdown > a::before {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.65rem;
        opacity: 0.6;
        transition: transform 0.25s ease;
    }
    .header-nav.open .has-dropdown.open > a::before {
        transform: rotate(180deg);
    }
    .intro-premium-visual {
        overflow: hidden;
        padding-bottom: 8px;
    }
    .intro-visual-frame {
        padding: 24px;
    }
    .intro-visual-badge {
        right: 12px;
        bottom: 8px;
    }
    .partners-marquee {
        width: 100%;
        max-width: 100vw;
    }
    .site-header.nav-open .header-bar {
        position: relative;
        z-index: 1101;
    }
    .nav-toggle { display: flex; z-index: 1102; }
    .intro-premium-grid { grid-template-columns: 1fr; gap: 48px; }
    .intro-visual-cards { display: none; }
    .stats-premium-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .stats-premium-divider { display: none; }
    .fleet-preview-head { flex-direction: column; align-items: flex-start; }
    .fleet-preview-head .btn-premium {
        width: 100%;
        justify-content: center;
    }
    .fleet-grid,
    .fleet-preview-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 100%;
        gap: 20px;
    }
    .fleet-preview-card {
        min-height: 220px;
        aspect-ratio: 4/3;
    }
    .fleet-card-image {
        min-height: 220px;
        aspect-ratio: 4/3;
    }
    .fleet-card-body {
        padding: 18px 20px 24px;
    }
    .fleet-tabs {
        justify-content: flex-start;
        margin-bottom: 32px;
    }
    .about-preview { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .header-info-text { display: none !important; }
    .header-bar-inner { gap: 12px; }
    .header-logo img { height: 42px; }
    .services-premium-grid { grid-template-columns: 1fr; }
    .process-premium-grid { grid-template-columns: 1fr; }
    .why-premium-grid { grid-template-columns: 1fr; }
    .fleet-preview-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
    .fleet-preview-card { min-height: 200px; }
    .fleet-grid { gap: 16px; }
    .fleet-card-image { min-height: 200px; }
    .fleet-card-body h3 { font-size: 1.25rem; }
    .fleet-tab { padding: 10px 18px; font-size: 0.75rem; }
    .fleet-cat-grid { grid-template-columns: 1fr 1fr; }
    .stats-premium-grid { grid-template-columns: 1fr 1fr; }
    .hero-cinematic-title h1 { font-size: 2rem; letter-spacing: 1px; }
    .hero-cinematic-title { bottom: 60px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .intro-premium, .services-premium, .why-premium, .process-premium, .fleet-preview, .cta-premium { padding: 80px 0; }
}
