/*
Theme Name: Trinity Shipping & Logistics
Theme URI: https://www.trinitysl.co.uk
Author: Rajesh
Description: Premium custom theme for Trinity Shipping & Logistics
Version: 2.0
*/

/* ============================================================
   PART 1 — CSS VARIABLES + RESET + BASE + TYPOGRAPHY
   ============================================================ */

/* ---------- Google Font import (fallback — functions.php loads via wp_enqueue) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    /* Brand colours */
    --primary:        #123E9A;
    --primary-dark:   #0d2f7a;
    --primary-light:  #1a4db5;
    --secondary:      #214CB5;
    --accent:         #F5F7FB;
    --accent-blue:    #e8eef8;
    --white:          #FFFFFF;
    --bg:             #FFFFFF;
    --dark-text:      #1E293B;
    --body-text:      #475569;
    --muted:          #94A3B8;
    --border:         #E2E8F0;
    --border-light:   #F1F5F9;

    /* Gradients */
    --grad-hero:      linear-gradient(135deg, #0a2560 0%, #123E9A 45%, #214CB5 100%);
    --grad-primary:   linear-gradient(135deg, #123E9A 0%, #214CB5 100%);
    --grad-card-hover: linear-gradient(135deg, #123E9A 0%, #1a4db5 100%);
    --grad-cta:       linear-gradient(135deg, #0d2f7a 0%, #123E9A 50%, #214CB5 100%);

    /* Shadows */
    --shadow-xs:      0 1px 3px rgba(18,62,154,.06);
    --shadow-sm:      0 2px 8px rgba(18,62,154,.08);
    --shadow-md:      0 4px 20px rgba(18,62,154,.12);
    --shadow-lg:      0 8px 40px rgba(18,62,154,.16);
    --shadow-xl:      0 16px 60px rgba(18,62,154,.20);
    --shadow-card:    0 4px 24px rgba(18,62,154,.10);
    --shadow-card-hover: 0 12px 48px rgba(18,62,154,.22);
    --shadow-nav:     0 2px 20px rgba(18,62,154,.10);

    /* Spacing */
    --space-xs:   4px;
    --space-sm:   8px;
    --space-md:   16px;
    --space-lg:   24px;
    --space-xl:   40px;
    --space-2xl:  64px;
    --space-3xl:  96px;

    /* Border radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  18px;
    --radius-xl:  24px;
    --radius-full: 9999px;

    /* Typography */
    --font:       'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --text-xs:    12px;
    --text-sm:    13px;
    --text-base:  15px;
    --text-md:    16px;
    --text-lg:    18px;
    --text-xl:    20px;
    --text-2xl:   24px;
    --text-3xl:   30px;
    --text-4xl:   38px;
    --text-5xl:   48px;
    --text-6xl:   58px;

    /* Transitions */
    --transition-fast:   all .18s ease;
    --transition-base:   all .28s ease;
    --transition-slow:   all .42s ease;

    /* Layout */
    --container:  1320px;
    --nav-height: 80px;
}

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

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

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

/* ---------- Base elements ---------- */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover { color: var(--secondary); }

ul, ol { list-style: none; }

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: var(--font);
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}

/* ---------- Typography scale ---------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    color: var(--dark-text);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(36px, 5.5vw, var(--text-6xl)); font-weight: 800; }
h2 { font-size: clamp(26px, 3.5vw, var(--text-4xl)); font-weight: 700; }
h3 { font-size: clamp(18px, 2.5vw, var(--text-2xl)); font-weight: 600; }
h4 { font-size: var(--text-xl); font-weight: 600; }
h5 { font-size: var(--text-lg); font-weight: 600; }
h6 { font-size: var(--text-md); font-weight: 600; }

p { margin-bottom: 0; line-height: 1.75; }

/* ---------- Section layout helpers ---------- */
.section {
    padding: var(--space-3xl) 0;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.section-alt {
    background: var(--accent);
}

.section-dark {
    background: var(--dark-text);
    color: var(--white);
}

/* ---------- Section header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header.left {
    text-align: left;
    margin-bottom: 36px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-blue);
    color: var(--primary);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
    border: 1px solid rgba(18,62,154,.12);
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.section-header h2 {
    color: var(--dark-text);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-header h2 span {
    color: var(--primary);
}

.section-header p {
    color: var(--body-text);
    font-size: var(--text-md);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header.left p {
    margin: 0;
}

/* ---------- Divider line ---------- */
.section-header .divider {
    width: 56px;
    height: 4px;
    background: var(--grad-primary);
    border-radius: var(--radius-full);
    margin: 18px auto 0;
}

.section-header.left .divider {
    margin: 18px 0 0;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::after {
    background: rgba(255,255,255,.08);
}

/* Primary button */
.btn-primary {
    background: var(--grad-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(18,62,154,.30);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(18,62,154,.40);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Outline button */
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.55);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Outline dark (on white bg) */
.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* White button */
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
}

/* Button sizes */
.btn-sm  { padding: 10px 22px; font-size: var(--text-xs); }
.btn-lg  { padding: 17px 42px; font-size: var(--text-md); font-weight: 700; }
.btn-xl  { padding: 20px 52px; font-size: var(--text-lg); font-weight: 700; }

/* ---------- Badge / pill ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: rgba(18,62,154,.12);
    color: var(--primary);
}

.badge-white {
    background: rgba(255,255,255,.18);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.30);
    backdrop-filter: blur(8px);
}

/* ---------- Utility ---------- */
.text-primary  { color: var(--primary); }
.text-white    { color: var(--white); }
.text-muted    { color: var(--muted); }
.text-dark     { color: var(--dark-text); }
.text-center   { text-align: center; }
.text-left     { text-align: left; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.d-flex        { display: flex; }
.align-center  { align-items: center; }
.gap-sm        { gap: var(--space-sm); }
.gap-md        { gap: var(--space-md); }
.gap-lg        { gap: var(--space-lg); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mb-sm  { margin-bottom: var(--space-sm); }
.mb-md  { margin-bottom: var(--space-md); }
.mb-lg  { margin-bottom: var(--space-lg); }
.mb-xl  { margin-bottom: var(--space-xl); }

/* ---------- Scroll reveal animation base ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }
.reveal-delay-6 { transition-delay: .6s; }


/* ============================================================
   PART 2 — TOP BAR + STICKY NAVBAR
   ============================================================ */

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,.82);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.82);
    font-size: var(--text-xs);
    transition: var(--transition-fast);
}

.top-bar-item svg {
    width: 13px;
    height: 13px;
    fill: rgba(255,255,255,.60);
    flex-shrink: 0;
}

.top-bar-item a {
    color: rgba(255,255,255,.82);
    font-size: var(--text-xs);
}

.top-bar-item a:hover {
    color: var(--white);
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.18);
}

.top-bar-right .top-bar-item {
    font-weight: 500;
}

/* ---------- Site Header / Sticky Navbar ---------- */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-nav);
    transition: var(--transition-base);
    border-bottom: 1px solid var(--border-light);
}

.site-header.scrolled {
    box-shadow: 0 4px 32px rgba(18,62,154,.14);
    border-bottom-color: transparent;
}

/* ---------- Header inner 3-column layout ---------- */
.header-inner {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    width: 100%;
    gap: 20px;
}

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

.site-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.site-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

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

.logo-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-name span {
    color: var(--secondary);
}

.logo-tagline {
    font-size: 9px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ---------- Primary Navigation (centered) ---------- */
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark-text);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 0.1px;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.current-menu-item > a,
.main-nav > ul > li.current-menu-ancestor > a {
    color: var(--primary);
    background: var(--accent-blue);
}

/* Dropdown arrow */
.main-nav > ul > li.menu-item-has-children > a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: .6;
    transition: var(--transition-fast);
    margin-left: 2px;
}

.main-nav > ul > li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
    opacity: 1;
}

/* Active underline indicator */
.main-nav > ul > li.current-menu-item > a {
    position: relative;
}

.main-nav > ul > li.current-menu-item > a::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

/* ---------- Dropdown menu ---------- */
.main-nav ul ul {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 230px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    padding: 8px;
    z-index: 999;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    transform: translateX(-50%) translateY(6px);
}

.main-nav ul li:hover > ul {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown arrow pointer */
.main-nav ul ul::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: translateX(-50%) rotate(45deg);
}

.main-nav ul ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--dark-text);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.main-nav ul ul li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.main-nav ul ul li a:hover {
    background: var(--accent-blue);
    color: var(--primary);
    padding-left: 18px;
}

.main-nav ul ul li a:hover::before {
    background: var(--primary);
}

/* ---------- Header right — CTA ---------- */
.header-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--dark-text);
    white-space: nowrap;
}

.header-phone svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
}

.btn-quote {
    background: var(--grad-primary);
    color: var(--white);
    padding: 11px 24px;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 14px rgba(18,62,154,.28);
    transition: var(--transition-base);
    white-space: nowrap;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-quote svg {
    width: 14px;
    height: 14px;
    fill: var(--white);
    transition: var(--transition-fast);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(18,62,154,.40);
    color: var(--white);
}

.btn-quote:hover svg {
    transform: translateX(2px);
}

/* ---------- Mobile hamburger ---------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.nav-toggle:hover {
    border-color: var(--primary);
    background: var(--accent-blue);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark-text);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Navbar Responsive ---------- */
@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .main-nav > ul > li > a {
        padding: 10px 10px;
        font-size: 12px;
    }

    .header-phone {
        display: none;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
        position: relative;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(var(--nav-height) - 1px);
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        border-bottom: 3px solid var(--primary);
        box-shadow: var(--shadow-lg);
        padding: 16px 20px 20px;
        z-index: 999;
        justify-content: flex-start;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        width: 100%;
    }

    .main-nav > ul > li > a {
        padding: 12px 16px;
        font-size: var(--text-sm);
        border-radius: var(--radius-sm);
    }

    .main-nav ul ul {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--accent);
        border-radius: var(--radius-sm);
        padding: 4px 0 4px 16px;
        margin-top: 4px;
    }

    .main-nav ul ul::before { display: none; }

    .main-nav ul li:hover > ul,
    .main-nav ul li.open > ul {
        display: block;
        transform: none;
    }

    .header-cta .btn-quote {
        padding: 9px 18px;
        font-size: 11px;
    }

    .top-bar-left { display: none; }
}

@media (max-width: 480px) {
    .site-header { height: 68px; }
    :root { --nav-height: 68px; }
    .site-logo img { height: 42px; }
    .logo-name { font-size: 17px; }
}


/* ============================================================
   PART 3 — HERO SECTION
   ============================================================ */

/* ---------- Hero wrapper ---------- */
.hero {
    background: var(--grad-hero);
    min-height: calc(100vh - var(--nav-height) - 42px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

/* ---------- Hero background decorations ---------- */
.hero-bg-circle-1 {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33,76,181,.35) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg-circle-2 {
    position: absolute;
    bottom: -180px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18,62,154,.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-bg-glow {
    position: absolute;
    top: 30%;
    left: 35%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(33,76,181,.18) 0%, transparent 65%);
    pointer-events: none;
    filter: blur(40px);
}

/* ---------- Hero inner 2-column grid ---------- */
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ---------- Hero left — content ---------- */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

/* Subtitle pill */
.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.92);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    animation: fadeSlideDown .7s ease both;
}

.hero-subtitle-dot {
    width: 7px;
    height: 7px;
    background: #60a5fa;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.4); }
}

/* Hero headline */
.hero-headline {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 22px;
    animation: fadeSlideDown .7s .12s ease both;
}

.hero-headline .highlight {
    position: relative;
    color: #93c5fd;
    display: inline-block;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #93c5fd);
    border-radius: var(--radius-full);
    opacity: .6;
}

/* Hero description */
.hero-desc {
    font-size: var(--text-md);
    color: rgba(255,255,255,.78);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 36px;
    font-weight: 400;
    animation: fadeSlideDown .7s .22s ease both;
}

/* Hero CTA buttons */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeSlideDown .7s .32s ease both;
}

.hero-cta .btn-primary {
    padding: 15px 36px;
    font-size: var(--text-sm);
    font-weight: 700;
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 6px 24px rgba(0,0,0,.18);
}

.hero-cta .btn-primary:hover {
    background: var(--accent);
    color: var(--primary-dark);
    box-shadow: 0 10px 36px rgba(0,0,0,.24);
    transform: translateY(-3px);
}

.hero-cta .btn-outline {
    padding: 15px 36px;
    font-size: var(--text-sm);
    font-weight: 600;
}

/* Hero trust badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeSlideDown .7s .42s ease both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.72);
    font-size: var(--text-xs);
    font-weight: 500;
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    fill: #86efac;
    flex-shrink: 0;
}

.hero-trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,.20);
}

/* ---------- Hero right — truck image ---------- */
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeSlideLeft .9s .2s ease both;
}

/* Glow behind truck */
.hero-image-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at center, rgba(33,76,181,.30) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.hero-truck-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,.35));
    animation: truckFloat 4s ease-in-out infinite;
}

@keyframes truckFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

/* Floating stat cards on hero image */
.hero-stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: fadeSlideDown .7s ease both;
    border: 1px solid var(--border-light);
}

.hero-stat-card-1 {
    top: 12%;
    left: -20px;
    animation-delay: .6s;
}

.hero-stat-card-2 {
    bottom: 18%;
    right: -10px;
    animation-delay: .8s;
}

.hero-stat-icon {
    width: 38px;
    height: 38px;
    background: var(--accent-blue);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.hero-stat-num {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ---------- Hero animations ---------- */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Stats bar (below hero) ---------- */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    border-right: 1px solid var(--border);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transition: var(--transition-base);
    transform-origin: left;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--accent);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.stat-item:hover .stat-icon {
    background: var(--primary);
}

.stat-item:hover .stat-icon svg {
    fill: var(--white);
}

.stat-text .number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1;
    letter-spacing: -0.5px;
}

.stat-text .label {
    font-size: var(--text-xs);
    color: var(--muted);
    font-weight: 500;
    margin-top: 3px;
    display: block;
}

/* ---------- Hero Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-headline {
        font-size: clamp(30px, 4vw, 46px);
    }

    .hero-stat-card-1 { left: -10px; }
    .hero-stat-card-2 { right: 0; }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 420px;
        margin: 0 auto;
    }

    .hero-stat-card-1 { left: 0; top: 5%; }
    .hero-stat-card-2 { right: 0; bottom: 5%; }

    .hero-desc { max-width: 100%; }

    .hero-trust {
        justify-content: center;
    }

    .stats-bar-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 30px; letter-spacing: -0.5px; }
    .hero-cta { flex-direction: column; width: 100%; }
    .hero-cta .btn-primary,
    .hero-cta .btn-outline { width: 100%; justify-content: center; }
    .hero-stat-card { display: none; }
    .stats-bar-inner { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 20px 16px; gap: 10px; }
    .stat-icon { width: 38px; height: 38px; }
    .stat-text .number { font-size: var(--text-2xl); }
}


/* ============================================================
   PART 4 — SERVICE CARDS + STATS BAR
   ============================================================ */

/* ---------- Services Section ---------- */
.services-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primary);
}

/* ---------- Services Grid — 3 columns ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ---------- Service Card ---------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px 32px 34px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 0;
    cursor: pointer;
}

/* Top accent line */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Background fill on hover */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-card-hover);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 0;
    border-radius: var(--radius-lg);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

/* All card children above the ::after overlay */
.service-card > * {
    position: relative;
    z-index: 1;
}

/* ---------- Service card image ---------- */
.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    transition: var(--transition-base);
    filter: brightness(.96);
}

.service-card:hover .service-card-img {
    filter: brightness(.85) saturate(1.1);
    transform: scale(1.02);
}

/* ---------- Service icon ---------- */
.service-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--accent-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition-base);
    flex-shrink: 0;
    border: 1.5px solid rgba(18,62,154,.10);
}

.service-icon-wrap svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
    transition: var(--transition-base);
}

.service-card:hover .service-icon-wrap {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.30);
}

.service-card:hover .service-icon-wrap svg {
    fill: var(--white);
    transform: scale(1.1);
}

/* ---------- Service card content ---------- */
.service-card-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
    transition: var(--transition-fast);
    line-height: 1.3;
}

.service-card:hover .service-card-title {
    color: var(--white);
}

.service-card-desc {
    font-size: var(--text-sm);
    color: var(--body-text);
    line-height: 1.75;
    margin-bottom: 24px;
    flex-grow: 1;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-desc {
    color: rgba(255,255,255,.82);
}

/* ---------- Service card link ---------- */
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition-base);
    margin-top: auto;
    letter-spacing: 0.2px;
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    transition: var(--transition-base);
}

.service-card:hover .service-card-link {
    color: var(--white);
    gap: 12px;
}

.service-card:hover .service-card-link svg {
    fill: var(--white);
    transform: translateX(4px);
}

/* ---------- Service card number badge ---------- */
.service-card-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 52px;
    font-weight: 900;
    color: rgba(18,62,154,.05);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition-base);
    z-index: 1;
    letter-spacing: -2px;
}

.service-card:hover .service-card-num {
    color: rgba(255,255,255,.06);
}

/* ---------- Services grid responsive ---------- */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 28px 24px 26px;
    }

    .service-card-img {
        height: 160px;
    }
}

/* ---------- Services "view all" row ---------- */
.services-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
    gap: 16px;
}

.services-footer p {
    font-size: var(--text-sm);
    color: var(--muted);
}

/* ============================================================
   PART 4B — WELCOME / ABOUT STRIP
   ============================================================ */

.welcome-strip {
    background: var(--accent);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.welcome-strip::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(18,62,154,.06) 0%, transparent 70%);
    pointer-events: none;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.welcome-img-wrap {
    position: relative;
}

.welcome-img-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Experience badge on image */
.welcome-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    min-width: 130px;
}

.welcome-exp-badge .exp-num {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
    display: block;
    letter-spacing: -1px;
}

.welcome-exp-badge .exp-label {
    font-size: 11px;
    font-weight: 600;
    opacity: .85;
    letter-spacing: 0.5px;
    margin-top: 4px;
    display: block;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.welcome-content p {
    font-size: var(--text-md);
    color: var(--body-text);
    line-height: 1.8;
}

/* Feature list */
.welcome-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 8px;
}

.welcome-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark-text);
}

.welcome-feature-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .welcome-img-wrap img {
        height: 320px;
    }

    .welcome-exp-badge {
        bottom: -16px;
        right: 16px;
    }
}


/* ============================================================
   PART 5 — WHY US + PROCESS + CTA BANNER + CONTACT FORM
   ============================================================ */

/* ---------- Why Choose Us ---------- */
.why-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image side */
.why-image-wrap {
    position: relative;
}

.why-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Floating card on image */
.why-float-card {
    position: absolute;
    bottom: 32px;
    left: -28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border-light);
    min-width: 220px;
}

.why-float-icon {
    width: 48px;
    height: 48px;
    background: var(--grad-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-float-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.why-float-num {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--dark-text);
    line-height: 1;
}

.why-float-label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 3px;
}

/* Content side */
.why-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Why items list */
.why-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: var(--white);
    transition: var(--transition-base);
    cursor: default;
}

.why-item:hover {
    border-color: rgba(18,62,154,.18);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
    background: var(--accent);
}

.why-item-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.why-item-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    transition: var(--transition-base);
}

.why-item:hover .why-item-icon {
    background: var(--primary);
}

.why-item:hover .why-item-icon svg {
    fill: var(--white);
}

.why-item-body h4 {
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.why-item-body p {
    font-size: var(--text-sm);
    color: var(--body-text);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-image-wrap img { height: 340px; }
    .why-float-card { left: 16px; bottom: 16px; }
}

@media (max-width: 640px) {
    .why-item { padding: 16px 18px; }
    .why-float-card { display: none; }
}

/* ---------- How It Works / Process ---------- */
.process-section {
    padding: var(--space-3xl) 0;
    background: var(--accent);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(18,62,154,.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(33,76,181,.04) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

/* Connecting line between steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 18px);
    right: calc(12.5% + 18px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: .18;
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

/* Step number circle */
.step-circle {
    width: 72px;
    height: 72px;
    background: var(--white);
    border: 3px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.step-circle:hover,
.process-step:hover .step-circle {
    background: var(--grad-primary);
    border-color: transparent;
    box-shadow: 0 8px 28px rgba(18,62,154,.28);
    transform: scale(1.08);
}

.step-num-text {
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--primary);
    transition: var(--transition-fast);
}

.process-step:hover .step-num-text {
    color: var(--white);
}

/* Step connector dot */
.step-circle::after {
    content: '';
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: .25;
}

.process-step:last-child .step-circle::after {
    display: none;
}

.process-step h4 {
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.process-step:hover h4 {
    color: var(--primary);
}

.process-step p {
    font-size: var(--text-sm);
    color: var(--body-text);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .process-steps::before { display: none; }
    .step-circle::after { display: none; }
}

@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; gap: 20px; }

    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 18px;
        align-items: flex-start;
    }

    .step-circle {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
        margin-bottom: 0;
    }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    background: var(--grad-cta);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
}

.cta-banner-content .section-tag {
    background: rgba(255,255,255,.14);
    color: rgba(255,255,255,.90);
    border-color: rgba(255,255,255,.20);
}

.cta-banner-content .section-tag::before {
    background: rgba(255,255,255,.80);
}

.cta-banner-content h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--white);
    margin: 14px 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.cta-banner-content p {
    font-size: var(--text-md);
    color: rgba(255,255,255,.78);
    max-width: 560px;
    line-height: 1.75;
}

.cta-banner-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    flex-shrink: 0;
}

.cta-banner-actions .btn-white {
    padding: 16px 40px;
    font-size: var(--text-sm);
    font-weight: 700;
    white-space: nowrap;
}

.cta-banner-note {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    text-align: right;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-banner-note svg {
    width: 13px;
    height: 13px;
    fill: rgba(255,255,255,.55);
}

@media (max-width: 768px) {
    .cta-banner { padding: 64px 0; }

    .cta-banner-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .cta-banner-content p { margin: 0 auto; }

    .cta-banner-actions {
        align-items: center;
    }

    .cta-banner-note { text-align: center; }
}

/* ---------- Contact Form ---------- */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
    align-items: start;
}

/* Contact info side */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-intro h3 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-info-intro p {
    font-size: var(--text-md);
    color: var(--body-text);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--accent);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.contact-detail-item:hover {
    border-color: rgba(18,62,154,.18);
    box-shadow: var(--shadow-sm);
    background: var(--accent-blue);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--grad-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.contact-detail-text strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 3px;
}

.contact-detail-text span,
.contact-detail-text a {
    font-size: var(--text-sm);
    color: var(--body-text);
    font-weight: 400;
}

.contact-detail-text a:hover {
    color: var(--primary);
}

/* Contact form box */
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primary);
}

.contact-form-box h3 {
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.contact-form-box .form-subtitle {
    font-size: var(--text-sm);
    color: var(--muted);
    margin-bottom: 28px;
}

/* Form layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-family: var(--font);
    color: var(--dark-text);
    background: var(--accent);
    transition: var(--transition-fast);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(18,62,154,.10);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Select arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2394A3B8' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    padding: 15px 32px;
    font-size: var(--text-md);
    font-weight: 700;
    background: var(--grad-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 16px rgba(18,62,154,.28);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    letter-spacing: 0.3px;
    margin-top: 6px;
}

.form-submit-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    transition: var(--transition-fast);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(18,62,154,.38);
}

.form-submit-btn:hover svg {
    transform: translateX(3px);
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.form-note svg {
    width: 13px;
    height: 13px;
    fill: var(--muted);
}

/* Form success / error messages */
.form-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Contact section responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.3fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-box {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form-box {
        padding: 24px 16px;
    }
}


/* ============================================================
   PART 6 — FOOTER + INNER PAGES + GLOBAL MEDIA QUERIES
   ============================================================ */

/* ---------- Site Footer ---------- */
.site-footer {
    background: var(--dark-text);
    color: rgba(255,255,255,.70);
    position: relative;
    overflow: hidden;
}

/* Footer top decorative bar */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primary);
}

/* Subtle background pattern */
.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(18,62,154,.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(33,76,181,.06) 0%, transparent 40%);
    pointer-events: none;
}

/* ---------- Footer main body ---------- */
.footer-body {
    padding: 72px 0 48px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
}

/* ---------- Footer column base ---------- */
.footer-col h4 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--grad-primary);
    border-radius: var(--radius-full);
}

/* ---------- Footer brand column ---------- */
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-brand-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .90;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
}

.footer-brand-name span {
    color: #93c5fd;
}

.footer-brand-desc {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.58);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 300px;
}

/* Footer social icons */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-social-link svg {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,.60);
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(18,62,154,.40);
}

.footer-social-link:hover svg {
    fill: var(--white);
}

/* ---------- Footer nav links ---------- */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    color: rgba(255,255,255,.60);
    font-weight: 400;
    transition: var(--transition-fast);
    padding: 3px 0;
}

.footer-links li a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.20);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-links li a:hover::before {
    background: #93c5fd;
}

/* ---------- Footer contact items ---------- */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item-icon {
    width: 34px;
    height: 34px;
    background: rgba(18,62,154,.30);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: var(--transition-fast);
}

.footer-contact-item:hover .footer-contact-item-icon {
    background: var(--primary);
}

.footer-contact-item-icon svg {
    width: 15px;
    height: 15px;
    fill: rgba(255,255,255,.70);
}

.footer-contact-item-text strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.footer-contact-item-text span,
.footer-contact-item-text a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.72);
    font-weight: 400;
    transition: var(--transition-fast);
}

.footer-contact-item-text a:hover {
    color: var(--white);
}

/* ---------- Footer hours ---------- */
.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-sm);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    gap: 12px;
}

.footer-hours-item:last-child {
    border-bottom: none;
}

.footer-hours-day {
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

.footer-hours-time {
    color: rgba(255,255,255,.80);
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}

.footer-hours-time.closed {
    color: rgba(255,255,255,.35);
}

/* ---------- Footer bottom bar ---------- */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

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

.footer-copyright {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.40);
}

.footer-copyright a {
    color: rgba(255,255,255,.55);
    transition: var(--transition-fast);
}

.footer-copyright a:hover {
    color: var(--white);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: var(--text-xs);
    color: rgba(255,255,255,.40);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: rgba(255,255,255,.80);
}

/* Footer responsive */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 36px;
    }

    .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .footer-brand-desc { max-width: 100%; }
    .footer-body { padding: 48px 0 36px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ============================================================
   INNER PAGE STYLES
   ============================================================ */

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    background: var(--grad-hero);
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: var(--text-lg);
    color: rgba(255,255,255,.78);
    max-width: 580px;
    margin: 0 auto 20px;
    line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-xs);
    color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.08);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
}

.breadcrumb a {
    color: rgba(255,255,255,.70);
    font-weight: 500;
    transition: var(--transition-fast);
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb-sep {
    color: rgba(255,255,255,.30);
    font-size: 10px;
}

/* ---------- Service detail page ---------- */
.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 56px;
    align-items: start;
}

.service-detail-content h2 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.service-detail-content p {
    color: var(--body-text);
    margin-bottom: 18px;
    line-height: 1.85;
    font-size: var(--text-md);
}

.service-detail-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark-text);
    margin: 28px 0 14px;
}

.service-detail-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--text-sm);
    color: var(--body-text);
    line-height: 1.7;
}

.service-detail-content ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
}

/* Service sidebar */
.service-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: var(--accent);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border-light);
}

.sidebar-box h4 {
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sidebar-service-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-service-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: var(--text-sm);
    color: var(--body-text);
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.sidebar-service-links li a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.sidebar-service-links li a:hover,
.sidebar-service-links li.active a {
    background: var(--accent-blue);
    color: var(--primary);
    padding-left: 16px;
}

.sidebar-service-links li a:hover::before,
.sidebar-service-links li.active a::before {
    background: var(--primary);
}

.sidebar-cta-box {
    background: var(--grad-primary);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    color: var(--white);
}

.sidebar-cta-box h4 {
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.sidebar-cta-box p {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.78);
    margin-bottom: 18px;
    line-height: 1.7;
}

/* ---------- About page ---------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.about-content p {
    color: var(--body-text);
    margin-bottom: 18px;
    line-height: 1.85;
    font-size: var(--text-md);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(18,62,154,.12);
}

.value-card-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition-base);
}

.value-card-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--primary);
    transition: var(--transition-base);
}

.value-card:hover .value-card-icon {
    background: var(--primary);
}

.value-card:hover .value-card-icon svg {
    fill: var(--white);
}

.value-card h4 {
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.value-card p {
    font-size: var(--text-sm);
    color: var(--body-text);
    line-height: 1.7;
}

/* ---------- Generic page content ---------- */
.page-content {
    max-width: 860px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--dark-text);
    margin: 32px 0 14px;
}

.page-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark-text);
    margin: 24px 0 12px;
}

.page-content p {
    color: var(--body-text);
    margin-bottom: 16px;
    line-height: 1.85;
    font-size: var(--text-md);
}

.page-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

.page-content ul li {
    color: var(--body-text);
    margin-bottom: 8px;
    font-size: var(--text-md);
    line-height: 1.7;
}

/* ============================================================
   GLOBAL RESPONSIVE OVERRIDES
   ============================================================ */

@media (max-width: 1100px) {
    .service-detail-grid { grid-template-columns: 1.5fr 1fr; gap: 40px; }
    .about-grid { gap: 48px; }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: var(--space-2xl) 0; }
}

@media (max-width: 640px) {
    .values-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .section-header { margin-bottom: 36px; }
    .page-hero { padding: 52px 0 44px; }
}

@media (max-width: 480px) {
    :root {
        --space-3xl: 64px;
        --space-2xl: 48px;
    }

    .btn { padding: 12px 24px; font-size: var(--text-xs); }
    .btn-lg { padding: 14px 32px; font-size: var(--text-sm); }
    .section-header h2 { font-size: 24px; }
    .container { padding: 0 16px; }
}

/* ---------- Scroll reveal animation trigger ---------- */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .hero-content,
    .hero-image,
    .hero-subtitle,
    .hero-headline,
    .hero-desc,
    .hero-cta,
    .hero-trust,
    .hero-stat-card,
    .hero-truck-img {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
