/**
 * RCA3 LOGISTICA — Corporate Logistics Redesign v2
 * Inter only, dark navy + punchy red, photo-forward, dense layouts
 */

/* ============================
   1. Tokens
   ============================ */
:root {
    /* Brand */
    --navy: #0F2540;
    --navy-deep: #061629;
    --navy-soft: #1A3760;
    --navy-line: #233F66;
    --red: #E11D2A;
    --red-dark: #B91C1C;
    --red-bright: #EF3340;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-150: #E8EDF3;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Legacy aliases */
    --color-navy-blue: var(--navy);
    --color-electric-blue: var(--navy);
    --color-bright-orange: var(--red);
    --color-pure-white: var(--white);
    --color-light-gray: var(--gray-100);
    --color-dark-gray: var(--gray-600);
    --color-text-primary: var(--gray-900);
    --color-shadow: rgba(15, 37, 64, 0.08);

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: var(--font-body);
    --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

    /* Spacing */
    --s-1: 4px;
    --s-2: 8px;
    --s-3: 12px;
    --s-4: 16px;
    --s-5: 24px;
    --s-6: 32px;
    --s-7: 48px;
    --s-8: 64px;
    --s-9: 96px;
    --s-10: 128px;

    /* Radii */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --radius-sm: var(--r-sm);
    --radius-md: var(--r-md);
    --radius-lg: var(--r-lg);

    /* Shadows */
    --sh-sm: 0 1px 2px rgba(15, 37, 64, 0.06), 0 1px 3px rgba(15, 37, 64, 0.10);
    --sh-md: 0 4px 8px rgba(15, 37, 64, 0.08), 0 10px 25px rgba(15, 37, 64, 0.10);
    --sh-lg: 0 20px 50px rgba(15, 37, 64, 0.18);
    --sh-red: 0 12px 30px rgba(225, 29, 42, 0.35);

    /* Transitions */
    --t-fast: 150ms ease;
    --t-base: 240ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container: 1280px;
    --container-narrow: 960px;
    --container-tight: 720px;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--red);
    color: var(--white);
}

/* ============================
   3. Typography
   ============================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
}

h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.0;
}

h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

h4 {
    font-size: 1.125rem;
    font-weight: 700;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

p + p { margin-top: 1em; }

.lead {
    font-size: clamp(1.125rem, 1.4vw, 1.25rem);
    line-height: 1.6;
    color: var(--gray-700);
    font-weight: 400;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--s-3);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--red);
}

.eyebrow.centered {
    justify-content: center;
}

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

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

i.fas, i.far, i.fab, .fa, .fas, .far, .fab {
    color: inherit;
}

/* ============================
   4. Layout
   ============================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s-6);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--s-6);
}

.container-tight {
    max-width: var(--container-tight);
    margin: 0 auto;
    padding: 0 var(--s-6);
}

.section, .section-padding {
    padding: clamp(64px, 8vw, 112px) 0;
    position: relative;
}

.section-sm {
    padding: clamp(48px, 6vw, 72px) 0;
}

.bg-light, .bg-cream {
    background: var(--gray-50);
}

.bg-white {
    background: var(--white);
}

.bg-navy {
    background: var(--navy-deep);
    color: var(--white);
}

.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4,
.text-white h1, .text-white h2, .text-white h3, .text-white h4 {
    color: var(--white);
}

.bg-navy p, .text-white p {
    color: rgba(255, 255, 255, 0.8);
}

.text-center { text-align: center; }
.text-white { color: var(--white); }

/* ============================
   5. Buttons
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s-3);
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all var(--t-base);
    white-space: nowrap;
    position: relative;
    text-transform: none;
}

.btn i {
    font-size: 0.85em;
    transition: transform var(--t-base);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 6px 16px rgba(225, 29, 42, 0.25);
}

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

.btn-secondary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-primary-white {
    background: var(--white);
    color: var(--navy-deep);
    border-color: var(--white);
}

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

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost-white:hover {
    background: var(--white);
    color: var(--navy-deep);
    border-color: var(--white);
}

.btn-block { width: 100%; }

.btn-cta-large {
    padding: 20px 36px;
    font-size: 1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    transition: all var(--t-fast);
}

.link-arrow:hover {
    color: var(--red);
    gap: 14px;
}

/* ============================
   6. Header
   ============================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--t-base);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(15, 37, 64, 0.08);
}

.header-top {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    font-size: 0.8125rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s-5);
}

.header-top .contact-info a {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.header-top .contact-info a:hover {
    color: var(--white);
}

.header-top .contact-info i {
    color: var(--red-bright);
}

.language-switcher {
    display: flex;
    gap: 4px;
    align-items: center;
}

.language-switcher a {
    padding: 4px 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all var(--t-fast);
}

.language-switcher a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.language-switcher a.active {
    color: var(--white);
    background: var(--red);
}

.header-main {
    padding: var(--s-4) 0;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-6);
}

.logo a {
    display: block;
    line-height: 0;
}

.logo-image {
    height: 56px;
    width: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: var(--s-1);
}

.nav-menu > li > a {
    display: inline-block;
    padding: 10px 14px;
    color: var(--gray-700);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--r-sm);
    position: relative;
    transition: color var(--t-fast);
}

.nav-menu > li > a:hover {
    color: var(--navy);
}

.nav-menu > li > a.active {
    color: var(--navy);
}

.nav-menu > li > a.active::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background: var(--red);
}

.nav-menu a.btn-contact {
    background: var(--red);
    color: var(--white);
    padding: 12px 22px;
    border-radius: var(--r-sm);
    margin-left: var(--s-3);
    font-weight: 700;
}

.nav-menu a.btn-contact:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-menu a.btn-contact::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all var(--t-base);
    border-radius: 1px;
}

.page-hero,
.hero-section,
.values-hero-modern {
    padding-top: clamp(140px, 16vh, 180px);
}

/* ============================
   7. Hero — Home (Dark + photo)
   ============================ */
.hero-section {
    position: relative;
    background: var(--navy-deep);
    color: var(--white);
    padding-bottom: clamp(80px, 10vw, 128px);
    overflow: hidden;
    isolation: isolate;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/truck-delivery.webp');
    background-size: cover;
    background-position: center right;
    opacity: 0.18;
    z-index: -2;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--navy-deep) 30%, rgba(6, 22, 41, 0.85) 60%, rgba(6, 22, 41, 0.55) 100%),
        linear-gradient(0deg, var(--navy-deep) 0%, transparent 40%);
    z-index: -1;
}

.hero-bg-wrapper, .hero-bg-overlay, .hero-bg-pattern, .hero-float-element {
    display: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: center;
}

.hero-left {
    color: var(--white);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: var(--s-3);
    padding: 8px 16px;
    background: rgba(225, 29, 42, 0.15);
    border: 1px solid rgba(225, 29, 42, 0.4);
    color: var(--red-bright);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: var(--s-6);
}

.hero-label i {
    font-size: 0.75rem;
    color: var(--red-bright);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5.25rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.038em;
    color: var(--white);
    margin-bottom: var(--s-5);
    text-wrap: balance;
}

.hero-description {
    font-size: clamp(1.0625rem, 1.3vw, 1.1875rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: var(--s-7);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-4);
}

.hero-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-4);
}

.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--r-md);
    padding: var(--s-6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: var(--s-5);
    transition: all var(--t-base);
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--red);
    transform: translateX(4px);
}

.hero-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.hero-card-content {
    flex: 1;
    min-width: 0;
}

.hero-card-content h3 {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    color: var(--white);
    letter-spacing: -0.025em;
    font-variant-numeric: tabular-nums;
}

.hero-card-content h3 .counter {
    font-variant-numeric: tabular-nums;
}

.hero-card-content p {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.hero-card-glow { display: none; }

/* Stat strip below hero */
.hero-stat-strip {
    border-top: 1px solid var(--navy-line);
    background: var(--navy-deep);
    padding: var(--s-6) 0;
}

.hero-stat-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
    text-align: left;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: var(--s-4);
}

.hero-stat-item .icon {
    color: var(--red-bright);
    font-size: 1.5rem;
}

.hero-stat-item .text strong {
    color: var(--white);
    font-weight: 700;
    display: block;
    font-size: 0.95rem;
    line-height: 1.2;
}

.hero-stat-item .text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

/* ============================
   8. Page Hero (inner)
   ============================ */
.page-hero {
    position: relative;
    padding-top: clamp(140px, 16vh, 180px);
    padding-bottom: clamp(64px, 8vw, 96px);
    background: var(--navy-deep);
    color: var(--white);
    text-align: left;
    overflow: hidden;
    isolation: isolate;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/truck-delivery.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -2;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 22, 41, 0.85) 0%, var(--navy-deep) 100%);
    z-index: -1;
}

.page-hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: var(--white);
    max-width: 900px;
    margin: 0 0 var(--s-4);
}

.page-hero .hero-subtitle {
    font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
    color: rgba(255, 255, 255, 0.78);
    max-width: 720px;
    margin: 0;
    line-height: 1.6;
}

/* Breadcrumb strip after hero */
.page-hero-meta {
    position: relative;
    z-index: 1;
    margin-top: var(--s-6);
}

.page-hero-meta .eyebrow {
    color: var(--red-bright);
}

.page-hero-meta .eyebrow::before {
    background: var(--red-bright);
}

/* ============================
   9. Section Titles
   ============================ */
.section-title {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: var(--s-4);
}

.section-description {
    font-size: 1.0625rem;
    color: var(--gray-600);
    max-width: 720px;
    margin: 0 auto var(--s-7);
    line-height: 1.65;
}

.section-header-modern {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 72px);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-modern h2 {
    margin: var(--s-4) 0 var(--s-4);
}

.section-header-modern p {
    font-size: 1.0625rem;
    color: var(--gray-600);
    margin: 0;
}

/* ============================
   10. Services Grid (Home)
   ============================ */
.services-overview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
}

.service-card {
    background: var(--white);
    padding: var(--s-7);
    border-radius: var(--r-md);
    border: 1px solid var(--gray-200);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
    border-color: var(--gray-300);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--r-md);
    background: var(--navy-deep);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--s-5);
    transition: background var(--t-base);
}

.service-card:hover .service-icon {
    background: var(--red);
}

.service-card h3 {
    margin-bottom: var(--s-3);
    color: var(--navy);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: var(--s-5);
    flex: 1;
}

.service-card .link-arrow {
    align-self: flex-start;
}

/* ============================
   11. Two Column Layout
   ============================ */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.column-image {
    position: relative;
}

.column-image .rounded-image {
    width: 100%;
    border-radius: var(--r-md);
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--sh-md);
}

.column-image::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    background: var(--red);
    border-radius: var(--r-md);
    z-index: -1;
}

.column-content .subtitle {
    color: var(--red);
    font-weight: 700;
    font-size: 1.0625rem;
    margin: var(--s-3) 0 var(--s-4);
}

.column-content p {
    margin-bottom: var(--s-5);
    color: var(--gray-700);
}

.checkmark-list {
    list-style: none;
    margin: var(--s-5) 0 var(--s-6);
    padding: 0;
    display: grid;
    gap: var(--s-3);
}

.checkmark-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--s-3);
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.9375rem;
}

.checkmark-list li i {
    color: var(--white);
    background: var(--red);
    width: 22px;
    height: 22px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================
   12. Coverage Areas (Home)
   ============================ */
.coverage-areas {
    background: var(--gray-50);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: var(--s-4);
    padding: var(--s-5) var(--s-6);
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--gray-200);
    transition: all var(--t-base);
}

.coverage-item:hover {
    border-color: var(--red);
    transform: translateX(4px);
    box-shadow: var(--sh-sm);
}

.coverage-item i {
    color: var(--red);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.coverage-item span {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
}

/* ============================
   13. CTA Banner
   ============================ */
.cta-banner {
    background: var(--navy-deep);
    color: var(--white);
    padding: clamp(72px, 10vw, 112px) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(225, 29, 42, 0.2), transparent 60%);
    pointer-events: none;
}

.cta-banner > .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: var(--s-4);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.0625rem;
    margin-bottom: var(--s-7);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================
   14. About — Content blocks
   ============================ */
.content-box {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.content-box h2 {
    margin-bottom: var(--s-5);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-6);
}

.mission-card, .vision-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: var(--s-8);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--navy);
}

.mission-card:hover, .vision-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--r-md);
    background: var(--navy-deep);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--s-5);
}

.mission-card .card-icon {
    background: var(--red);
}

.mission-card h3, .vision-card h3 {
    margin-bottom: var(--s-3);
}

.mission-card p, .vision-card p {
    color: var(--gray-700);
    margin: 0;
}

/* ============================
   15. Services Page
   ============================ */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-6);
}

.service-feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: var(--s-7);
    display: flex;
    flex-direction: column;
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}

.service-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
    transform: translateY(100%);
    transition: transform var(--t-base);
}

.service-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}

.service-feature-card:hover::after {
    transform: translateY(0);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--r-md);
    background: var(--navy-deep);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--s-5);
    transition: background var(--t-base);
}

.service-feature-card:hover .service-card-icon {
    background: var(--red);
}

.service-feature-card h3 {
    margin-bottom: var(--s-3);
}

.service-feature-card p {
    color: var(--gray-600);
    flex: 1;
    margin-bottom: var(--s-5);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all var(--t-fast);
    align-self: flex-start;
}

.card-link:hover {
    color: var(--red);
    gap: 14px;
}

/* Service detail layout */
.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: flex-start;
}

.service-info-left {
    position: sticky;
    top: 140px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--s-3);
    padding: 8px 14px;
    background: var(--red);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--s-5);
}

.service-info-left h2 {
    margin-bottom: var(--s-4);
}

.service-description {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.benefits-section h3 {
    margin-bottom: var(--s-5);
    color: var(--navy);
    font-size: 1.5rem;
}

/* Accordion */
.benefits-accordion {
    border-radius: var(--r-md);
    overflow: hidden;
}

.accordion-item {
    border: 1px solid var(--gray-200);
    background: var(--white);
    margin-bottom: var(--s-3);
    border-radius: var(--r-sm);
    overflow: hidden;
    transition: all var(--t-base);
}

.accordion-item.active {
    border-color: var(--red);
    box-shadow: 0 4px 16px rgba(225, 29, 42, 0.10);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: var(--s-4);
    padding: var(--s-5);
    cursor: pointer;
    transition: background var(--t-fast);
}

.accordion-item.active .accordion-header {
    background: rgba(225, 29, 42, 0.04);
}

.accordion-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: var(--navy-deep);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    transition: all var(--t-fast);
}

.accordion-item.active .accordion-icon {
    background: var(--red);
}

.accordion-title {
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.accordion-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all var(--t-base);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
    color: var(--red);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-base);
}

.accordion-description {
    padding: 0 var(--s-5) var(--s-5) 76px;
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.65;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
}

/* ============================
   16. Coverage Page
   ============================ */
.coverage-regions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
}

.region-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: var(--s-7);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}

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

.region-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: var(--navy-deep);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: var(--s-5);
    transition: background var(--t-base);
}

.region-card:hover .region-icon {
    background: var(--red);
}

.region-card h3 {
    margin-bottom: var(--s-3);
}

.region-card p {
    color: var(--gray-600);
    margin: 0;
}

.map-container {
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--sh-md);
    border: 1px solid var(--gray-200);
}

.map-container iframe {
    display: block;
    border-radius: 0 !important;
}

.map-legend p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.map-legend p strong {
    color: var(--navy);
    font-weight: 700;
}

/* ============================
   17. Why Choose Us Page
   ============================ */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
}

.why-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: var(--s-7);
    position: relative;
    transition: all var(--t-base);
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}

.why-card-number {
    position: absolute;
    top: var(--s-5);
    right: var(--s-6);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gray-300);
    line-height: 1;
    letter-spacing: -0.02em;
    transition: color var(--t-base);
}

.why-card:hover .why-card-number {
    color: var(--red);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: var(--navy-deep);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: var(--s-5);
    transition: background var(--t-base);
}

.why-card:hover .why-card-icon {
    background: var(--red);
}

.why-card-title {
    margin-bottom: var(--s-3);
}

.why-card-content {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9375rem;
}

/* ============================
   18. Values Page
   ============================ */
.values-hero-modern {
    position: relative;
    padding-top: clamp(140px, 16vh, 180px);
    padding-bottom: clamp(64px, 8vw, 96px);
    background: var(--navy-deep);
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}

.values-hero-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/truck-delivery.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: -2;
}

.values-hero-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 22, 41, 0.92) 0%, var(--navy-deep) 100%),
        radial-gradient(ellipse 60% 60% at 50% 30%, rgba(225, 29, 42, 0.18), transparent 60%);
    z-index: -1;
}

.hero-gradient-bg { display: none; }

.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title-modern {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.035em;
    color: var(--white);
    margin-bottom: var(--s-4);
}

.hero-description-modern {
    font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
    color: rgba(255, 255, 255, 0.78);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
}

.value-card-modern {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: var(--s-8);
    position: relative;
    transition: all var(--t-base);
    overflow: hidden;
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--t-base);
}

.value-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-lg);
}

.value-card-modern:hover::before {
    transform: scaleY(1);
}

.value-number {
    position: absolute;
    top: var(--s-6);
    right: var(--s-7);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gray-300);
    line-height: 1;
    transition: color var(--t-base);
}

.value-card-modern:hover .value-number {
    color: var(--red);
}

.value-icon-modern {
    width: 64px;
    height: 64px;
    border-radius: var(--r-md);
    background: var(--navy-deep);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--s-5);
    transition: background var(--t-base);
}

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

.value-card-modern h3 {
    margin-bottom: var(--s-3);
}

.value-card-modern p {
    color: var(--gray-700);
    margin: 0;
}

.value-card-decoration { display: none; }

.values-action-modern {
    background: var(--navy-deep);
    color: var(--white);
}

.values-action-modern .section-header-modern h2,
.values-action-modern .section-header-modern p {
    color: var(--white);
}

.values-action-modern .section-header-modern p {
    color: rgba(255, 255, 255, 0.75);
}

.values-action-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.action-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
}

.action-card-modern {
    padding: var(--s-6);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r-md);
    transition: all var(--t-base);
}

.action-card-modern:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--red);
    transform: translateY(-4px);
}

.action-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: var(--s-5);
}

.action-card-modern h3 {
    color: var(--white);
    font-size: 1.0625rem;
    margin-bottom: var(--s-3);
}

.action-card-modern p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.6;
}

.values-cta-modern {
    background: var(--red);
    color: var(--white);
    padding: clamp(60px, 8vw, 96px) 0;
    position: relative;
    overflow: hidden;
}

.values-cta-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    pointer-events: none;
}

.cta-content-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--s-7);
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-left h2 {
    color: var(--white);
    margin-bottom: var(--s-4);
}

.cta-left p {
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    font-size: 1.0625rem;
}

.cta-right {
    text-align: right;
}

.values-cta-modern .btn-primary-white:hover {
    background: var(--navy-deep);
    border-color: var(--navy-deep);
    color: var(--white);
}

/* ============================
   19. Careers
   ============================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
}

.benefit-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: var(--s-6);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
}

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

.benefit-item i {
    color: var(--red);
    font-size: 2rem;
    margin-bottom: var(--s-4);
    display: block;
}

.benefit-item p {
    color: var(--gray-800);
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
}

.requirements-box {
    max-width: var(--container-narrow);
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--red);
    border-radius: var(--r-md);
    padding: var(--s-8);
    box-shadow: var(--sh-sm);
}

.requirements-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--s-3);
}

.requirements-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--s-3);
    color: var(--gray-800);
    font-size: 1rem;
    padding: var(--s-3) 0;
    border-bottom: 1px solid var(--gray-150);
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li i {
    color: var(--red);
    font-size: 1.125rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================
   20. Contact
   ============================ */
.contact-modern-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 6vw, 72px);
}

.contact-modern-header h2 {
    margin: var(--s-4) 0;
}

.contact-modern-header p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    margin: 0;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: flex-start;
}

.contact-form-modern {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: clamp(32px, 4vw, 48px);
    box-shadow: var(--sh-sm);
}

.contact-form-styled .form-group {
    margin-bottom: var(--s-5);
}

.contact-form-styled label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: var(--s-2);
}

.contact-form-styled input,
.contact-form-styled select,
.contact-form-styled textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-900);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-sm);
    transition: all var(--t-fast);
}

.contact-form-styled input:focus,
.contact-form-styled select:focus,
.contact-form-styled textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(225, 29, 42, 0.10);
}

.contact-form-styled textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-styled select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230F2540' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 10px;
    padding-right: 40px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
}

.benefit-item-contact {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-md);
    padding: var(--s-5);
    transition: all var(--t-base);
    display: flex;
    align-items: flex-start;
    gap: var(--s-4);
}

.benefit-item-contact:hover {
    border-color: var(--red);
    box-shadow: var(--sh-sm);
}

.benefit-item-contact i {
    color: var(--white);
    background: var(--red);
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item-contact > div {
    flex: 1;
}

.benefit-item-contact h4 {
    margin-bottom: 4px;
    font-size: 1rem;
    color: var(--navy);
}

.benefit-item-contact p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.alert {
    padding: var(--s-4) var(--s-5);
    border-radius: var(--r-sm);
    margin-bottom: var(--s-5);
    font-size: 0.95rem;
    border-left: 4px solid;
}

.alert-success {
    background: #ECFDF5;
    color: #065F46;
    border-color: #10B981;
}

.alert-error {
    background: #FEF2F2;
    color: var(--red-dark);
    border-color: var(--red);
}

/* ============================
   21. Footer
   ============================ */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.75);
}

.footer-main {
    padding: clamp(64px, 8vw, 96px) 0 var(--s-7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: var(--s-7);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: var(--s-5);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-logo {
    margin-bottom: var(--s-5);
}

.footer-logo-image {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: var(--red-bright);
    font-weight: 700;
    margin-bottom: var(--s-4);
    font-size: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.65;
    max-width: 360px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--s-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9375rem;
    transition: all var(--t-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--red-bright);
    transform: translateX(2px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: var(--s-3);
}

.footer-contact i {
    color: var(--red-bright);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--red-bright);
}

.social-links {
    display: flex;
    gap: var(--s-3);
    margin-top: var(--s-4);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--t-base);
}

.social-links a:hover {
    background: var(--red);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--s-5) 0;
}

.footer-bottom-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

/* ============================
   22. Popup
   ============================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 22, 41, 0.8);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: var(--white);
    border-radius: var(--r-md);
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.94) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--sh-lg);
    overflow: hidden;
}

.popup-overlay.active .popup-modal {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: var(--red);
}

.popup-close i {
    font-size: 18px;
    color: var(--navy-deep);
}

.popup-close:hover i {
    color: var(--white);
}

.popup-modal-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.popup-modal-image .popup-close {
    top: -50px;
    right: 0;
    background: var(--white);
    width: 44px;
    height: 44px;
}

.popup-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--r-md);
    box-shadow: var(--sh-lg);
}

/* ============================
   23. Responsive
   ============================ */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1fr;
    }

    .footer-grid .footer-column:nth-child(4),
    .footer-grid .footer-column:nth-child(5) {
        grid-column: span 1;
    }

    .hero-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (max-width: 960px) {
    .nav-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--navy-deep);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 32px 40px;
        gap: 0;
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu > li > a {
        font-size: 1.25rem;
        font-weight: 700;
        padding: 20px 0;
        width: 100%;
        border-radius: 0;
        color: var(--white);
    }

    .nav-menu > li > a:hover {
        color: var(--red-bright);
    }

    .nav-menu > li > a.active::after {
        display: none;
    }

    .nav-menu a.btn-contact {
        background: var(--red);
        color: var(--white);
        padding: 16px 0;
        text-align: center;
        margin-top: var(--s-5);
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-toggle.active span {
        background: var(--white);
    }

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

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    body.menu-open {
        overflow: hidden;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--s-7);
    }

    .hero-stat-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column-layout {
        grid-template-columns: 1fr;
    }

    .column-image::before {
        display: none;
    }

    .column-image .rounded-image {
        max-width: 560px;
        margin: 0 auto;
    }

    .services-grid,
    .services-cards-grid,
    .coverage-regions,
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .mission-vision-grid,
    .values-grid-modern,
    .contact-grid-modern {
        grid-template-columns: 1fr;
    }

    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .service-info-left {
        position: static;
    }

    .action-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-content-modern {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-right {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--s-6);
    }

    .footer-grid .footer-column:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 var(--s-5);
    }

    .services-grid,
    .services-cards-grid,
    .coverage-regions,
    .why-choose-grid,
    .coverage-grid,
    .action-grid-modern,
    .benefits-grid,
    .hero-stat-strip-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        justify-content: center;
    }

    .header-top {
        font-size: 0.75rem;
    }

    .header-top-content {
        gap: var(--s-3);
    }

    .header-top .contact-info {
        display: none;
    }

    .header-top-content {
        justify-content: center;
    }
}

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

/* ============================
   24. Animations & Polish
   ============================ */

/* --- Keyframes --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(-32px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(225, 29, 42, 0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(225, 29, 42, 0); }
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.55; transform: scale(0.85); }
}

@keyframes shimmer {
    0%   { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(220%) skewX(-20deg); }
}

@keyframes truckRoll {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(6px); }
}

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

/* --- Scroll reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children — applied via data-stagger="true" on parent */
[data-stagger="true"] > .reveal,
[data-stagger="true"] > .reveal-left,
[data-stagger="true"] > .reveal-right,
[data-stagger="true"] > .reveal-scale {
    transition-delay: 0ms;
}
[data-stagger="true"] > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger="true"] > *:nth-child(2) { transition-delay: 90ms; }
[data-stagger="true"] > *:nth-child(3) { transition-delay: 180ms; }
[data-stagger="true"] > *:nth-child(4) { transition-delay: 270ms; }
[data-stagger="true"] > *:nth-child(5) { transition-delay: 360ms; }
[data-stagger="true"] > *:nth-child(6) { transition-delay: 450ms; }
[data-stagger="true"] > *:nth-child(7) { transition-delay: 540ms; }
[data-stagger="true"] > *:nth-child(8) { transition-delay: 630ms; }

/* --- Hero entrance --- */
.hero-section .hero-left > * {
    animation: fadeUp 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-section .hero-left > *:nth-child(1) { animation-delay: 100ms; }
.hero-section .hero-left > *:nth-child(2) { animation-delay: 200ms; }
.hero-section .hero-left > *:nth-child(3) { animation-delay: 300ms; }
.hero-section .hero-left > *:nth-child(4) { animation-delay: 400ms; }

.hero-section .hero-right .hero-card {
    animation: fadeLeft 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-section .hero-right .hero-card:nth-child(1) { animation-delay: 500ms; }
.hero-section .hero-right .hero-card:nth-child(2) { animation-delay: 620ms; }
.hero-section .hero-right .hero-card:nth-child(3) { animation-delay: 740ms; }

/* Hero label pulse (red dot) */
.hero-label {
    position: relative;
}

.hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red-bright);
    border-radius: 50%;
    margin-right: 4px;
    flex-shrink: 0;
    animation: pulseDot 1.6s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(239, 51, 64, 0.6);
}

.hero-label i { display: none; }

/* Hero stat strip entrance */
.hero-stat-strip {
    animation: fadeUp 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 800ms;
}

/* --- Parallax (subtle) on hero bg --- */
.hero-section,
.page-hero,
.values-hero-modern {
    --parallax-y: 0px;
}

.hero-section::before,
.page-hero::before,
.values-hero-modern::before {
    transform: translate3d(0, var(--parallax-y), 0) scale(1.05);
    will-change: transform;
}

/* --- Button polish (shimmer on primary) --- */
.btn {
    overflow: hidden;
    position: relative;
    isolation: isolate;
    will-change: transform;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.25) 50%,
        transparent 100%
    );
    transform: translateX(-100%) skewX(-20deg);
    pointer-events: none;
    z-index: 1;
}

.btn:hover::before {
    animation: shimmer 700ms ease-out;
}

.btn-outline::before,
.btn-ghost-white::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(15, 37, 64, 0.10) 50%,
        transparent 100%
    );
}

.btn > * {
    position: relative;
    z-index: 2;
}

/* Primary button stronger lift */
.btn-primary:hover,
.btn-secondary:hover,
.btn-primary-white:hover {
    transform: translateY(-3px);
}

.btn:active {
    transform: translateY(0) !important;
    transition-duration: 80ms;
}

/* --- Service cards: dramatic hover --- */
.service-card,
.service-feature-card,
.region-card,
.why-card,
.value-card-modern,
.benefit-item {
    transition:
        transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 380ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 220ms ease;
    will-change: transform;
}

.service-card:hover,
.service-feature-card:hover,
.region-card:hover,
.why-card:hover,
.value-card-modern:hover,
.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 56px rgba(15, 37, 64, 0.16),
        0 8px 20px rgba(15, 37, 64, 0.08);
}

/* Icons inside cards: scale + bob on hover */
.service-icon,
.service-card-icon,
.region-icon,
.why-card-icon,
.value-icon-modern,
.card-icon {
    transition:
        background 320ms ease,
        transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 320ms ease;
}

.service-card:hover .service-icon,
.service-feature-card:hover .service-card-icon,
.region-card:hover .region-icon,
.why-card:hover .why-card-icon,
.value-card-modern:hover .value-icon-modern,
.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 12px 28px rgba(225, 29, 42, 0.35);
}

/* Card top bar grows wider on hover (already there, just smoother) */
.service-card::before,
.region-card::before,
.benefit-item::before {
    height: 4px;
    transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Hero cards micro-hover --- */
.hero-card {
    transition:
        background 320ms ease,
        border-color 320ms ease,
        transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-card:hover {
    transform: translateX(6px) translateY(-2px);
}

.hero-card:hover .hero-card-icon {
    animation: iconBob 1.2s ease-in-out infinite;
}

/* --- Coverage items polish --- */
.coverage-item {
    transition:
        transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 280ms ease,
        border-color 220ms ease,
        background 280ms ease;
}

.coverage-item:hover {
    transform: translateY(-3px);
    background: var(--white);
}

.coverage-item i {
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.coverage-item:hover i {
    transform: scale(1.25);
    color: var(--red);
}

/* --- Link arrow & card-link polish --- */
.link-arrow,
.card-link {
    position: relative;
}

.link-arrow i,
.card-link i {
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.link-arrow:hover i,
.card-link:hover i {
    transform: translateX(4px);
}

/* --- Header logo subtle scale on hover --- */
.logo a {
    overflow: hidden;
    display: block;
}

.logo-image {
    transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.logo a:hover .logo-image {
    transform: scale(1.06);
}

/* --- Nav menu link underline animation --- */
.nav-menu > li > a {
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: scaleX(1);
}

@media (max-width: 960px) {
    .nav-menu > li > a::after { display: none; }
}

/* --- Header on scroll --- */
.site-header {
    transition: box-shadow 280ms ease, padding 280ms ease;
}

.site-header.scrolled .header-main {
    padding-top: 10px;
    padding-bottom: 10px;
}

.site-header.scrolled .logo-image {
    height: 48px;
    transition: height 280ms ease;
}

/* --- Mission/vision cards icon polish --- */
.mission-card, .vision-card {
    transition:
        transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 380ms ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(15, 37, 64, 0.14);
}

/* --- Checkmark list reveal --- */
.checkmark-list li {
    transition: transform 280ms ease, color 220ms ease;
}

.checkmark-list li:hover {
    transform: translateX(4px);
    color: var(--navy);
}

.checkmark-list li i {
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.checkmark-list li:hover i {
    transform: scale(1.15) rotate(-6deg);
}

/* --- Footer link reveal --- */
.footer-links a {
    position: relative;
    transition: color 220ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-links a:hover {
    transform: translateX(6px);
}

/* --- Social icons polish --- */
.social-links a {
    transition:
        background 280ms ease,
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 280ms ease;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 22px rgba(225, 29, 42, 0.4);
}

/* --- Counter trail effect --- */
.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.counter.counting {
    color: var(--red-bright);
    transition: color 400ms ease;
}

/* --- Page hero entrance --- */
.page-hero .container > * {
    animation: fadeUp 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero h1 { animation-delay: 120ms; }
.page-hero .hero-subtitle { animation-delay: 240ms; }
.page-hero-meta { animation-delay: 360ms; }

.values-hero-modern .hero-content-wrapper > * {
    animation: fadeUp 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.values-hero-modern .hero-title-modern { animation-delay: 120ms; }
.values-hero-modern .hero-description-modern { animation-delay: 240ms; }

/* --- Map container polish --- */
.map-container {
    transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 480ms ease;
}

.map-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 56px rgba(15, 37, 64, 0.20);
}

/* --- Form field polish --- */
.contact-form-styled input,
.contact-form-styled select,
.contact-form-styled textarea {
    transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.contact-form-styled .form-group {
    position: relative;
    overflow: hidden;
}

.contact-form-styled label {
    transition: color 220ms ease;
}

.contact-form-styled .form-group:focus-within label {
    color: var(--red);
}

/* --- Benefit-item-contact slide on hover --- */
.benefit-item-contact {
    transition:
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 220ms ease,
        box-shadow 280ms ease;
}

.benefit-item-contact:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 22px rgba(15, 37, 64, 0.08);
}

.benefit-item-contact i {
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.benefit-item-contact:hover i {
    transform: scale(1.1) rotate(-6deg);
}

/* --- Hero stat strip items animate --- */
.hero-stat-item {
    transition: transform 280ms ease;
}

.hero-stat-item:hover {
    transform: translateY(-2px);
}

.hero-stat-item .icon {
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-stat-item:hover .icon {
    transform: scale(1.15) rotate(-8deg);
}

/* --- Service-feature-card hover: icon scale to red --- */
.service-feature-card:hover {
    border-color: transparent;
}

/* --- Accordion polish --- */
.accordion-header {
    transition: background 220ms ease, padding 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-icon {
    transition: background 280ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-item:hover .accordion-icon {
    transform: scale(1.08);
}

.accordion-toggle {
    transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease;
}

.accordion-content {
    transition: max-height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- CTA banner pulse glow --- */
.cta-banner .btn-primary,
.cta-banner .btn-primary-white {
    animation: pulseGlow 2.6s ease-in-out infinite;
    animation-delay: 1s;
}

.cta-banner .btn-primary:hover,
.cta-banner .btn-primary-white:hover {
    animation: none;
}

/* --- Hero truck icon roll animation --- */
.hero-card-icon .fa-truck-fast,
.fa-truck-fast {
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card:hover .hero-card-icon .fa-truck-fast,
.service-card:hover .service-icon .fa-truck-fast,
.service-feature-card:hover .service-card-icon .fa-truck-fast {
    animation: truckRoll 0.9s ease-in-out infinite;
}

/* --- Section transitions: visible by default --- */
.no-anim {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
    }
    .hero-section .hero-left > *,
    .hero-section .hero-right .hero-card,
    .hero-stat-strip,
    .page-hero .container > *,
    .values-hero-modern .hero-content-wrapper > * {
        animation: none !important;
        opacity: 1 !important;
    }
    .hero-label::before { animation: none; }
}
