/* ==========================================================================
   AFFINITY COURIERS — PREMIUM THEME STYLESHEET
   Version: 1.0.0
   ========================================================================== */

/* ─── 1. CUSTOM PROPERTIES ─────────────────────────────────────────────── */

:root {
    /* Brand Colours */
    --navy-900:  #060F1E;
    --navy-800:  #0B1F3A;
    --navy-700:  #0F2847;
    --navy-600:  #1E3A5F;
    --navy-500:  #2A4F82;
    --navy-400:  #3D6BA0;

    --accent:      #1C75D6;
    --accent-dark: #14559F;
    --accent-light:#4D9CF0;

    --white:    #FFFFFF;
    --off-white:#F7F9FC;
    --grey-50:  #F9FAFB;
    --grey-100: #F3F4F6;
    --grey-200: #E5E7EB;
    --grey-300: #D1D5DB;
    --grey-400: #9CA3AF;
    --grey-500: #6B7280;
    --grey-600: #4B5563;
    --grey-700: #374151;
    --grey-800: #1F2937;

    --text:       #1E2B3C;
    --text-light: #5C6878;
    --text-muted: #8D98A7;

    /* Typography */
    --font-heading: 'Poppins', system-ui, -apple-system, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --section-pad: 96px;
    --section-pad-sm: 64px;
    --container:   1280px;
    --container-sm: 900px;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 28px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
    --shadow-xl: 0 32px 80px rgba(0,0,0,0.24);

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --transition: 0.3s var(--ease);
    --transition-fast: 0.18s var(--ease);
}

/* ─── 2. RESET & BASE ───────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy-800); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
address { font-style: normal; }

/* ─── 3. TYPOGRAPHY SCALE ───────────────────────────────────────────────── */

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 3vw, 2rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.text-sm   { font-size: 0.875rem; }
.text-xs   { font-size: 0.75rem; }
.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-muted { color: var(--text-muted); }

/* ─── 4. LAYOUT ─────────────────────────────────────────────────────────── */

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.container--narrow {
    max-width: var(--container-sm);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

.section { padding-block: var(--section-pad); }
.section--sm { padding-block: var(--section-pad-sm); }
.section--dark { background: var(--navy-800); }
.section--navy { background: var(--navy-700); }
.section--light { background: var(--off-white); }
.section--grey { background: var(--grey-100); }
.section--accent { background: var(--accent); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ─── 5. SECTION HEADINGS ───────────────────────────────────────────────── */

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header--left { text-align: left; }
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.section-label::before,
.section-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.section-label--left::before { display: none; }
.section-title { margin-bottom: 1rem; }
.section-title span { color: var(--accent); }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); max-width: 680px; margin-inline: auto; }
.section-subtitle--left { margin-inline: 0; }

/* ─── 6. BUTTONS ────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: opacity var(--transition-fast);
}
.btn:hover::after { opacity: 1; }

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(var(--accent-rgb, 240,90,40), 0.35);
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(var(--accent-rgb, 240,90,40), 0.45);
}

.btn-navy {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}
.btn-navy:hover {
    background: var(--navy-600);
    border-color: var(--navy-600);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--navy-800);
    border-color: var(--navy-800);
}
.btn-outline:hover {
    background: var(--navy-800);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy-800);
    border-color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.825rem; }
.btn-xl { padding: 1.2rem 2.75rem; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── 7. TOPBAR ─────────────────────────────────────────────────────────── */

.header-topbar {
    background: var(--navy-900);
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.8rem;
}
.topbar-link:hover { color: var(--accent-light); }

.topbar-divider { color: rgba(255,255,255,0.2); }

.topbar-badge {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
}
.topbar-badge i { color: var(--accent-light); font-size: 0.7rem; }

.topbar-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    transition: background var(--transition-fast);
    text-decoration: none;
}
.topbar-phone:hover { background: var(--accent-dark); color: var(--white); }

/* ─── 8. HEADER / NAV ───────────────────────────────────────────────────── */

.site-header { position: sticky; top: 0; z-index: 1000; }

.header-main {
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    padding: 0;
    transition: box-shadow var(--transition), background var(--transition);
}

.header-main.is-scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 72px;
}

/* Logo */
.site-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo .custom-logo { max-height: 52px; width: auto; }

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--navy-800);
    line-height: 1;
    letter-spacing: -0.01em;
}
.logo-name strong { font-weight: 800; color: var(--accent); }
.logo-tagline { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

/* Navigation */
.site-nav { margin-left: auto; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.65rem 0.9rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy-700);
    text-decoration: none;
    border-radius: var(--radius-xs);
    transition: color var(--transition-fast), background var(--transition-fast);
    white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a { color: var(--accent); }

/* Dropdown */
.nav-menu > li.has-dropdown,
.nav-menu > li.menu-item-has-children { position: relative; }

.nav-menu > li.has-dropdown > a::after,
.nav-menu > li.menu-item-has-children > a .sub-arrow {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    margin-left: 0.25rem;
    transition: transform var(--transition-fast);
}

.nav-menu > li.has-dropdown:hover > a::after,
.nav-menu > li.menu-item-has-children:hover > a .sub-arrow {
    transform: rotate(180deg);
}

.nav-menu .dropdown,
.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 230px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 100;
    list-style: none;
    padding: 0.5rem;
    pointer-events: none;
}

.nav-menu > li:hover > .dropdown,
.nav-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.nav-menu .dropdown li a,
.nav-menu .sub-menu li a {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy-700);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
}
.nav-menu .dropdown li a:hover,
.nav-menu .sub-menu li a:hover {
    background: var(--grey-100);
    color: var(--accent);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-phone-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy-800);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--grey-200);
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.btn-phone-header i { color: var(--accent); }
.btn-phone-header:hover { border-color: var(--accent); color: var(--accent); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: background var(--transition-fast);
}
.hamburger:hover { background: var(--grey-100); }
.hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--navy-800);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}
.hamburger.is-open .hamburger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6,15,30,0.65);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    backdrop-filter: blur(4px);
}
.mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }

/* Mobile nav panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 90vw);
    height: 100%;
    background: var(--white);
    z-index: 999;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 48px rgba(0,0,0,0.2);
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--navy-700);
    transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-nav-close:hover { background: var(--accent); color: var(--white); }

.mobile-nav-logo {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--grey-200);
}
.mobile-nav-logo .logo-name { font-size: 1.2rem; }

.mobile-nav .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
.mobile-nav .nav-menu > li > a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--grey-100);
    border-radius: 0;
    font-size: 1rem;
    justify-content: space-between;
}
.mobile-nav .nav-menu .dropdown,
.mobile-nav .nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--grey-50);
    padding: 0;
    pointer-events: all;
    display: none;
}
.mobile-nav .nav-menu .dropdown li a,
.mobile-nav .nav-menu .sub-menu li a {
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--grey-100);
    border-radius: 0;
}

.mobile-nav-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ─── 9. HERO — HOMEPAGE ────────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #060F1E 0%, #0B1F3A 40%, #1E3A5F 70%, #0B1F3A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-placeholder-label {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(6,15,30,0.88) 0%,
        rgba(6,15,30,0.65) 50%,
        rgba(6,15,30,0.25) 100%
    );
}

.hero-overlay--centre {
    background: linear-gradient(
        180deg,
        rgba(6,15,30,0.55) 0%,
        rgba(6,15,30,0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding-block: 6rem;
}

.hero-content--centre {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.hero-title span { color: var(--accent-light); }

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.82);
    margin-bottom: 2.25rem;
    max-width: 580px;
    line-height: 1.65;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.825rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}
.hero-trust-item i { color: var(--accent-light); font-size: 0.9rem; }

/* Decorative corner clip for hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* ─── 10. STATS BAR ─────────────────────────────────────────────────────── */

.stats-bar {
    background: var(--navy-800);
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-number span { color: var(--accent-light); }
.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.35;
    max-width: 120px;
}

/* ─── 11. SERVICE CARDS ─────────────────────────────────────────────────── */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: inherit;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(240,90,40,0.1), rgba(240,90,40,0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: var(--accent);
    transition: background var(--transition);
}
.service-card:hover .service-card-icon {
    background: var(--accent);
    color: var(--white);
}

.service-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 0.75rem;
}

.service-card-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.service-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap var(--transition-fast);
    margin-top: auto;
}
.service-card:hover .service-card-link { gap: 0.75rem; }

/* Service card image area */
.service-card--featured {
    background: var(--navy-800);
    border-color: transparent;
    color: var(--white);
}
.service-card--featured .service-card-title { color: var(--white); }
.service-card--featured .service-card-text { color: rgba(255,255,255,0.7); }
.service-card--featured .service-card-icon {
    background: rgba(240,90,40,0.2);
    color: var(--accent-light);
}

/* ─── 12. WHY CHOOSE US ─────────────────────────────────────────────────── */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(240,90,40,0.3);
}

.feature-content {}
.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 0.4rem;
}
.feature-text {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 0;
}

/* ─── 13. FLEET / GALLERY GRID ──────────────────────────────────────────── */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--navy-700);
    cursor: pointer;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.4);
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    text-align: center;
    padding: 1rem;
    transition: border-color var(--transition);
}
.gallery-placeholder:hover { border-color: rgba(255,255,255,0.3); }
.gallery-placeholder i { font-size: 2rem; color: rgba(255,255,255,0.25); }
.gallery-placeholder-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.5;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,15,30,0.75) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-caption {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Gallery page grid */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.gallery-page-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: var(--navy-700);
    cursor: pointer;
}
.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.gallery-page-item:hover img { transform: scale(1.06); }
.gallery-page-item .gallery-placeholder { border-radius: 0; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}
.lightbox-close:hover { background: var(--accent); }

/* ─── 14. TESTIMONIALS ──────────────────────────────────────────────────── */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.25rem;
    left: 1.75rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.12;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: #F5A623;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--navy-800); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ─── 15. CUSTOMER TYPES ────────────────────────────────────────────────── */

.customer-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.customer-type-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all var(--transition);
}
.customer-type-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.customer-type-icon {
    width: 64px;
    height: 64px;
    background: var(--grey-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--navy-600);
    transition: all var(--transition);
}
.customer-type-card:hover .customer-type-icon {
    background: var(--accent);
    color: var(--white);
}

.customer-type-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 0.4rem;
}
.customer-type-text { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0; }

/* ─── 16. SEO CONTENT BLOCK ─────────────────────────────────────────────── */

.seo-content {
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.seo-content h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.seo-content h3 { font-size: 1.2rem; margin-top: 1.5rem; margin-bottom: 0.75rem; }
.seo-content p  { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }
.seo-content ul { margin: 1rem 0 1.5rem; }
.seo-content ul li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.4rem;
}
.seo-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ─── 17. INTRO / TWO-COL CONTENT ───────────────────────────────────────── */

.two-col-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.two-col-content--reverse { direction: rtl; }
.two-col-content--reverse > * { direction: ltr; }

.two-col-text .section-label { justify-content: flex-start; }
.two-col-text .section-label::before { display: none; }

.two-col-image {
    position: relative;
}

.img-placeholder-block {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255,255,255,0.3);
    border: 2px dashed rgba(255,255,255,0.15);
    overflow: hidden;
    position: relative;
}
.img-placeholder-block i { font-size: 3.5rem; color: rgba(255,255,255,0.15); }
.img-placeholder-block .placeholder-text {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
}

.two-col-image .accent-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 130px;
}
.accent-badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}
.accent-badge-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.9;
}

/* ─── 18. CHECK LISTS ───────────────────────────────────────────────────── */

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    background: rgba(240,90,40,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── 19. PROCESS STEPS ─────────────────────────────────────────────────── */

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--navy-500));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-number {
    width: 52px;
    height: 52px;
    background: var(--white);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    margin: 0 auto 1.25rem;
    box-shadow: var(--shadow-sm);
}

.process-step-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step-text { font-size: 0.85rem; color: var(--text-light); }

/* ─── 20. FAQ SECTION ───────────────────────────────────────────────────── */

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item.is-open { border-color: var(--accent); box-shadow: var(--shadow-sm); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-800);
    cursor: pointer;
    user-select: none;
    transition: color var(--transition-fast);
    list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.is-open .faq-question::after { transform: rotate(180deg); }

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.75;
}
.faq-item.is-open .faq-answer { display: block; }

/* ─── 21. FORMS ─────────────────────────────────────────────────────────── */

.form-section {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-grid-full { grid-column: span 2; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-700);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.form-label .required { color: var(--accent); }

.form-control {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--grey-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(240,90,40,0.12);
}

.form-control::placeholder { color: var(--grey-400); }

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%236B7280'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-control--file {
    padding: 0.75rem;
    background: var(--grey-50);
    cursor: pointer;
    border-style: dashed;
}

.form-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--grey-300);
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-check-label {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.form-submit-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.form-submit-note i { color: var(--accent); }

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.form-alert--success { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.25); color: #166534; }
.form-alert--error   { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.25); color: #991b1b; }
.form-alert i { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.form-alert strong { display: block; margin-bottom: 0.25rem; }
.form-alert p { margin: 0; opacity: 0.9; }

.form-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid var(--grey-100);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    grid-column: span 2;
}
.form-section-title i { color: var(--accent); }

/* ─── 22. PAGE HERO (inner pages) ───────────────────────────────────────── */

.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 380px;
}
.page-hero--sm { min-height: 320px; }
.page-hero--lg { min-height: 480px; }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,15,30,0.88) 0%, rgba(6,15,30,0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-block: 4rem;
}

.page-hero-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.page-hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.page-hero-meta {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ─── 23. BREADCRUMB ────────────────────────────────────────────────────── */

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
}

.breadcrumb li + li::before {
    content: '/';
    color: rgba(255,255,255,0.3);
}

.breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.breadcrumb a:hover { color: var(--white); }

.breadcrumb [aria-current="page"] { color: var(--accent-light); }

/* ─── 24. CTA BAR (footer) ──────────────────────────────────────────────── */

.section-cta-bar {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.section-cta-bar::before {
    content: '';
    position: absolute;
    right: -5%;
    top: -50%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(240,90,40,0.06);
    pointer-events: none;
}

.cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-bar-text h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}
.cta-bar-text p { color: rgba(255,255,255,0.7); margin-bottom: 0; font-size: 0.95rem; }

.cta-bar-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ─── 25. SITE FOOTER ───────────────────────────────────────────────────── */

.site-footer { background: var(--navy-900); }

.footer-main { padding: 4.5rem 0 2.5rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.logo-text-wrap--footer .logo-name { font-size: 1.2rem; color: var(--white); }
.logo-text-wrap--footer .logo-tagline { color: rgba(255,255,255,0.45); }

.footer-about {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    margin: 1.25rem 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.75rem;
}
.footer-badge i { color: var(--accent-light); font-size: 0.7rem; }

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.footer-links a:hover { color: var(--accent-light); }
.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--accent);
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
}
.footer-contact-item i {
    color: var(--accent);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    width: 16px;
    text-align: center;
}
.footer-contact-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.footer-contact-item a:hover { color: var(--accent-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.footer-legal-nav {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.footer-legal-nav a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.footer-legal-nav a:hover { color: rgba(255,255,255,0.65); }

/* ─── 26. INLINE HERO CTA ───────────────────────────────────────────────── */

.section-hero-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-hero-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.section-hero-cta h2 { color: var(--white); margin-bottom: 0.5rem; }
.section-hero-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; max-width: 540px; margin-inline: auto; }

/* ─── 27. TRUST BADGES / ICON ROW ───────────────────────────────────────── */

.trust-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.trust-item-icon {
    width: 56px;
    height: 56px;
    background: var(--grey-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--navy-600);
}

.trust-item-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    max-width: 90px;
    line-height: 1.3;
}

/* ─── 28. BLOG ──────────────────────────────────────────────────────────── */

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }

.blog-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.blog-card-image { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-content { padding: 1.5rem; }
.blog-card-meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.blog-card-title { font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-card-title a { color: var(--navy-800); text-decoration: none; }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1rem; }

/* ─── 29. CONTENT PROSE ─────────────────────────────────────────────────── */

.content-prose {
    max-width: 780px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}
.content-prose h2 { margin: 2rem 0 0.75rem; }
.content-prose h3 { margin: 1.5rem 0 0.5rem; }
.content-prose p  { margin-bottom: 1.25rem; }
.content-prose ul, .content-prose ol { margin: 1rem 0 1.5rem 1.5rem; }
.content-prose li { margin-bottom: 0.4rem; }
.content-prose a { color: var(--accent); text-decoration: underline; }

/* ─── 30. 404 ───────────────────────────────────────────────────────────── */

.error-404-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-404-content {
    text-align: center;
    max-width: 480px;
    margin-inline: auto;
}

.error-404-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.error-404-title {
    font-size: 6rem;
    font-weight: 900;
    color: var(--grey-200);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-404-content h2 { margin-bottom: 1rem; }
.error-404-content p { color: var(--text-light); margin-bottom: 2rem; }

.error-404-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── 31. VEHICLE TYPES ─────────────────────────────────────────────────── */

.vehicle-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.25rem;
}

.vehicle-card {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all var(--transition);
}
.vehicle-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.vehicle-card-icon {
    font-size: 2rem;
    color: var(--navy-600);
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}
.vehicle-card:hover .vehicle-card-icon { color: var(--accent); }
.vehicle-card-name { font-size: 0.9rem; font-weight: 700; color: var(--navy-800); }

/* ─── 32. CONTACT PAGE ──────────────────────────────────────────────────── */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.75fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    background: var(--navy-800);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
    position: sticky;
    top: 120px;
}

.contact-info-title {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(240,90,40,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.3rem;
}

.contact-info-value {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}
.contact-info-value a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.contact-info-value a:hover { color: var(--accent-light); }

/* ─── 33. SCROLL REVEAL ANIMATIONS ─────────────────────────────────────── */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }

/* ─── 34. PAGINATION ────────────────────────────────────────────────────── */

.nav-links, .pagination { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: 3rem; }
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--grey-300);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: all var(--transition-fast);
}
.page-numbers:hover, .page-numbers.current { border-color: var(--accent); background: var(--accent); color: var(--white); }

/* ─── 35. MEDIA QUERIES ─────────────────────────────────────────────────── */

/* Tablet ≤ 1100px */
@media (max-width: 1100px) {
    :root { --section-pad: 72px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .footer-col--brand { grid-column: span 2; }

    .two-col-content { gap: 3rem; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }

    .header-actions .btn-phone-header { display: none; }
}

/* Large mobile ≤ 900px */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .site-nav  { display: none; }
    .header-actions { display: none; }
    .header-topbar { display: none; }

    .two-col-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .two-col-content--reverse { direction: ltr; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-card { position: static; }

    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item--large { grid-column: span 2; grid-row: auto; }

    .process-steps::before { display: none; }
    .process-steps { gap: 1.5rem; }

    .hero { min-height: 70vh; }
    .hero::after { display: none; }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
    :root { --section-pad: 56px; --section-pad-sm: 40px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 1rem; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }

    .form-grid { grid-template-columns: 1fr; }
    .form-grid-full { grid-column: span 1; }
    .form-section-title { grid-column: span 1; }
    .form-section { padding: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-col--brand { grid-column: auto; }

    .cta-bar-inner { flex-direction: column; text-align: center; }
    .cta-bar-actions { justify-content: center; }

    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-trust { gap: 1rem; }

    .section-hero-cta .hero-actions { flex-direction: column; align-items: center; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-rows: auto; }
    .gallery-item--large { grid-column: auto; }

    .testimonials-grid { grid-template-columns: 1fr; }
    .customer-types-grid { grid-template-columns: repeat(2, 1fr); }

    .two-col-image .accent-badge { position: static; margin-top: 1rem; display: inline-block; }

    .contact-grid { gap: 1.5rem; }
}

/* Very small ≤ 380px */
@media (max-width: 380px) {
    .customer-types-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 1.9rem; }
}
