/* Runga Trans — Bespoke Industrial Editorial Stylesheet */

/* ----------------------------------------------------
   1. DESIGN SYSTEM VARIABLES & EASING PHYSIC
   ---------------------------------------------------- */
:root {
    /* Color Palette — High-Trust, Industrial Light Theme */
    --color-bg-primary: #f8fafc;      /* Light slate/ice blue background */
    --color-bg-secondary: #ffffff;    /* White cards & secondary panels */
    --color-bg-tertiary: #f1f5f9;     /* Slate-grey high contrast panels */
    --color-border: #cbd5e1;          /* Medium border gauge */
    --color-border-active: #194c8b;   /* Royal Blue active borders */
    
    --color-brand-primary: #194c8b;   /* Runga Trans corporate Royal Blue */
    --color-brand-accent: #d97706;    /* Warning Amber active highlights */
    --color-brand-hover: #b45309;     /* Deep Amber hover states */
    
    --color-text-primary: #0f172a;    /* Dark slate headings for readability */
    --color-text-secondary: #334155;  /* Slate body text */
    --color-text-muted: #64748b;      /* Muted steel grey description text */
    
    /* Typography & Hierarchy */
    --font-heading: 'Barlow Semi Condensed', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Easing Physics (Emil Kowalski Sensibility) */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);       /* Custom fast-action ease */
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);  /* Custom flow ease */
    --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);    /* Drawer slide-out ease */
    
    --header-height: 72px;
    --z-index-header: 100;
    --z-index-drawer: 90;
    --z-index-whatsapp: 80;
}

/* ----------------------------------------------------
   2. SYSTEM RESET & BASE RULES
   ---------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-primary);
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.7;
    position: relative;
}

/* Blueprint Grid Background Pattern Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(25, 76, 139, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 76, 139, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-wrap: balance; /* Preventing widows */
}

h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
}

h1 em {
    font-family: var(--font-heading);
    font-style: normal;
    color: var(--color-brand-accent);
}

h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

.font-display {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.35;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background-color: var(--color-brand-accent);
    color: var(--color-text-primary);
    padding: 12px 24px;
    z-index: 200;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 4px;
    transition: top 200ms var(--ease-out);
}
.skip-link:focus-visible {
    top: 20px;
}

/* Global focus state overrides */
:focus-visible {
    outline: none;
    border-color: var(--color-border-active) !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

/* ----------------------------------------------------
   3. STRUCTURAL UTILITIES
   ---------------------------------------------------- */
.hidden {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 32px;
    padding-left: 32px;
}

section {
    padding-top: 120px;
    padding-bottom: 120px;
    border-bottom: 1px solid var(--color-border);
}

.subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-brand-accent);
    margin-bottom: 16px;
}

/* Interactive Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 150ms var(--ease-out), background-color 150ms var(--ease-out), border-color 150ms var(--ease-out);
    min-height: 48px;
    min-width: 160px;
}

.btn-primary {
    background-color: var(--color-brand-accent);
    color: var(--color-text-primary);
    border: 1px solid var(--color-brand-accent);
}
.btn-primary:hover {
    background-color: var(--color-brand-hover);
    border-color: var(--color-brand-hover);
}
.btn-primary:active {
    transform: scale(0.97);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}
.btn-secondary:hover {
    background-color: var(--color-bg-secondary);
    border-color: var(--color-text-muted);
}
.btn-secondary:active {
    transform: scale(0.97);
}

.btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

/* Split Section Header Layout */
.split-header {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: flex-end;
    margin-bottom: 80px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.header-left {
    display: flex;
    flex-direction: column;
}

.header-right-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ----------------------------------------------------
   4. GLASSMORPHIC NAVBAR & MOBILE DRAWER
   ---------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    z-index: var(--z-index-header);
    transition: background-color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(25, 76, 139, 0.1);
}

.header-container {
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    color: var(--color-text-primary);
    transition: transform 150ms var(--ease-out);
}
.logo-wrapper:active {
    transform: scale(0.98);
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-icon {
    width: 38px;
    height: 38px;
    color: var(--color-brand-accent);
    margin-right: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}
.logo-subtitle {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    position: relative;
    padding: 8px 0;
    transition: color 150ms var(--ease-out);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-brand-accent);
    transition: width 150ms var(--ease-out);
}
.nav-link:hover {
    color: var(--color-text-primary);
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link.active {
    color: var(--color-text-primary);
}
.nav-link.active::after {
    width: 100%;
}


.cta-button {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 18px;
    background-color: transparent;
    border: 1px solid var(--color-brand-accent);
    color: var(--color-brand-accent);
    border-radius: 2px;
    transition: transform 150ms var(--ease-out), background-color 150ms var(--ease-out), color 150ms var(--ease-out);
    min-height: 40px;
}
.cta-button:hover {
    background-color: var(--color-brand-accent);
    color: var(--color-text-primary);
}
.cta-button:active {
    transform: scale(0.96);
}
.cta-button.active {
    background-color: var(--color-brand-accent);
    color: var(--color-text-primary);
}

/* Mobile Nav Elements */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

.hamburger-line {
    width: 100%;
    height: 1.5px;
    background-color: var(--color-text-primary);
    transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-bg-secondary);
    border-left: 1px solid var(--color-border);
    padding: 100px 40px 40px 40px;
    z-index: var(--z-index-drawer);
    transition: right var(--transition-normal);
}
.mobile-drawer.open {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-primary);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: color 150ms var(--ease-out), border-bottom-color 150ms var(--ease-out);
}
.mobile-nav-link.active {
    color: var(--color-brand-accent);
    border-bottom: 1px solid var(--color-brand-accent);
}

.mobile-cta-button {
    font-family: var(--font-body);
    font-weight: 700;
    text-align: center;
    padding: 14px;
    background-color: var(--color-brand-accent);
    color: var(--color-text-primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    border-radius: 2px;
    margin-top: 16px;
    min-height: 48px;
    transition: background-color 150ms var(--ease-out), color 150ms var(--ease-out), border-color 150ms var(--ease-out);
    border: 1px solid transparent;
}
.mobile-cta-button.active {
    background-color: transparent;
    color: var(--color-brand-accent);
    border-color: var(--color-brand-accent);
}

/* ----------------------------------------------------
   5. EDITORIAL HERO SECTION
   ---------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid var(--color-border);
}

.hero-split-layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 60px;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.divider-line {
    width: 24px;
    height: 1px;
    background-color: var(--color-border);
}

.hero-title {
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-column {
    position: relative;
}

/* Technical blueprint photo mask */
.technical-mask {
    position: relative;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-secondary);
    padding: 12px;
}

.technical-mask::before,
.technical-mask::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--color-brand-accent);
    border-style: solid;
    z-index: 5;
}

/* Crosshairs for draft layout feel */
.technical-mask::before {
    top: -3px;
    left: -3px;
    border-width: 1px 0 0 1px;
}
.technical-mask::after {
    bottom: -3px;
    right: -3px;
    border-width: 0 1px 1px 0;
}

.hero-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.1);
}

.blueprint-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px dashed rgba(59, 130, 246, 0.15);
    pointer-events: none;
}

/* ----------------------------------------------------
   6. COMPLIANCE CREDENTIALS REGISTRY
   ---------------------------------------------------- */
.trust-bar {
    background-color: var(--color-bg-tertiary);
}

.compliance-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
    margin-bottom: 48px;
    text-align: center;
}

.compliance-registry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.registry-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: transform 250ms var(--ease-out), border-color 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
    position: relative;
    overflow: hidden;
}

.registry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-brand-primary);
    opacity: 0.3;
    transition: opacity 200ms var(--ease-out), background-color 200ms var(--ease-out);
}

.registry-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-brand-accent);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.registry-card:hover::before {
    opacity: 1;
    background-color: var(--color-brand-accent);
}

.card-inner-border {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.reg-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-brand-accent);
    line-height: 1;
}

.reg-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: -8px;
}

.reg-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.reg-badge {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    padding: 4px 8px;
    border-radius: 2px;
    width: max-content;
    background-color: var(--color-bg-primary);
}

/* ----------------------------------------------------
   7. AUDITED METRICS TABLE SECTION
   ---------------------------------------------------- */
.metrics-section {
    background-color: var(--color-bg-primary);
}

.metrics-table {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border);
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 3fr 5fr 3fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.metric-col-index {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.metric-col-title {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-col-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.metric-col-value {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--color-brand-accent);
    text-align: right;
    font-variant-numeric: tabular-nums; /* Monospace styling for numbers */
    line-height: 1;
}

/* ----------------------------------------------------
   8. TECHNICAL SERVICES ACCORDION
   ---------------------------------------------------- */
/* ----------------------------------------------------
   8. SPECIALIST FLEET ROSTER
   ---------------------------------------------------- */
.fleet-section {
    background-color: var(--color-bg-primary);
}

.fleet-roster-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.fleet-unit-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    transition: transform 250ms var(--ease-out), border-color 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
    position: relative;
}

.fleet-unit-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-brand-primary);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.unit-code {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-brand-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.unit-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.unit-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.unit-spec-list {
    list-style: none;
    padding: 0;
    margin: auto 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px dashed var(--color-border);
    padding-top: 20px;
}

.unit-spec-list li {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.unit-spec-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--color-brand-accent);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

/* ----------------------------------------------------
   9. CUSTOM OPERATIONS CALCULATOR (TERMINAL THEME)
   ---------------------------------------------------- */
.calculator-section {
    background-color: var(--color-bg-primary);
}

.calculator-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

.calc-panel-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    position: relative;
    border-radius: 4px;
}

/* Corner highlights on terminal control - subtle brand color */
.calc-panel-card::before,
.calc-panel-card::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: rgba(25, 76, 139, 0.15);
    border-style: solid;
}
.calc-panel-card::before {
    top: -2px;
    left: -2px;
    border-width: 1px 0 0 1px;
}
.calc-panel-card::after {
    bottom: -2px;
    right: -2px;
    border-width: 0 1px 1px 0;
}

.panel-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.panel-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* Optimized form control components */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
}

.form-group select,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    min-height: 42px;
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    padding: 0 12px;
    transition: border-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
    border-radius: 2px;
}

.form-group textarea {
    padding: 10px 12px;
    resize: none;
    min-height: 80px;
}

/* Custom dropdown indicator mapping */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23194c8b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px 14px;
    padding-right: 32px;
    cursor: pointer;
}

.form-group select:focus,
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-border-active);
    box-shadow: 0 0 0 3px rgba(25, 76, 139, 0.1);
}

/* Range weight slider customization */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.slider-header input[type="number"] {
    width: 90px;
    min-height: 32px !important;
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    text-align: right;
    font-family: var(--font-body);
    font-weight: 700;
    padding-right: 6px;
}

.slider-wrapper {
    position: relative;
    padding-bottom: 16px;
}

/* Range input defaults */
.slider-wrapper input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--color-border);
    outline: none;
    margin: 8px 0;
}

.slider-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--color-brand-accent);
    cursor: pointer;
    border-radius: 50%;
    transition: transform 100ms var(--ease-out);
}
.slider-wrapper input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 0.65rem;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-weight: 600;
}

/* Technical Terminal Display */
.calc-results-terminal {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    padding: 16px;
    margin-top: 16px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terminal-row {
    display: flex;
    justify-content: space-between;
}
.terminal-label {
    font-size: 0.65rem;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
}
.terminal-value {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--color-text-primary);
    transition: filter 150ms var(--ease-out), opacity 150ms var(--ease-out);
}

/* Blur state animation */
.terminal-value.transitioning {
    filter: blur(2px);
    opacity: 0.7;
}

/* Submit Action Button styling */
.btn-terminal {
    width: 100%;
    min-height: 44px;
    background-color: var(--color-brand-accent);
    color: var(--color-text-primary);
    border: 1px solid var(--color-brand-accent);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform 100ms var(--ease-out), background-color 150ms var(--ease-out);
}
.btn-terminal:hover {
    background-color: var(--color-brand-hover);
    border-color: var(--color-brand-hover);
}
.btn-terminal:active {
    transform: scale(0.97);
}

.btn-terminal-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    padding: 10px 20px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    min-height: 44px;
    transition: background-color 150ms var(--ease-out), transform 100ms var(--ease-out);
}
.btn-terminal-secondary:hover {
    background-color: var(--color-bg-primary);
}
.btn-terminal-secondary:active {
    transform: scale(0.97);
}

.calc-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: rgba(220, 38, 38, 0.04);
    border: 1px solid rgba(220, 38, 38, 0.15);
    color: #991b1b; /* Dark high-contrast red */
    font-size: 0.75rem;
    margin-bottom: 16px;
    line-height: 1.4;
}
.calc-alert.warning {
    background-color: rgba(217, 119, 6, 0.04);
    border-color: rgba(217, 119, 6, 0.15);
    color: #92400e; /* Dark high-contrast amber */
}

.alert-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.inline-error {
    font-size: 0.7rem;
    color: #b91c1c;
    margin-top: 4px;
}

/* Lead Capture Card details styling */
.capture-summary-box {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.775rem;
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 6px;
}
.summary-line:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.summary-line span:first-child {
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.03em;
}
.summary-line span:last-child {
    font-weight: 800;
    color: var(--color-text-primary);
}

.capture-btn-group {
    display: flex;
    gap: 12px;
}
.capture-btn-group button {
    flex: 1;
}

/* Success Card details styling */
.terminal-calc-success {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0;
}

.success-icon {
    width: 40px;
    height: 40px;
    color: #10b981;
    margin-bottom: 16px;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    margin-bottom: 10px;
}

.success-desc {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    max-width: 380px;
    line-height: 1.5;
}

.btn-terminal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    background-color: var(--color-brand-accent);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    transition: background-color 150ms var(--ease-out), transform 100ms var(--ease-out);
    border: 1px solid var(--color-brand-accent);
}
.btn-terminal-cta:hover {
    background-color: var(--color-brand-hover);
    border-color: var(--color-brand-hover);
}
.btn-terminal-cta:active {
    transform: scale(0.97);
}

.btn-reset-text {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    padding: 8px;
}

/* Text info layout elements */
.calc-text-column {
    padding-left: 20px;
}
.calc-side-desc {
    margin-bottom: 40px;
}

.compliance-callout {
    padding: 24px;
    border-left: 2px solid var(--color-brand-accent);
    background-color: rgba(59, 130, 246, 0.02);
}

.callout-header {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}
.callout-text {
    font-size: 0.825rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ----------------------------------------------------
   10. INFRASTRUCTURE & ABOUT (ASYMMETRIC SPLIT)
   ---------------------------------------------------- */
.infrastructure-section {
    background-color: var(--color-bg-secondary);
}

.infra-split-layout {
    display: grid;
    grid-template-columns: 5.5fr 6.5fr;
    gap: 64px;
    align-items: center;
}

.infra-visual-column {
    position: relative;
}

.infra-main-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.15);
}

.tech-metric-panel {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.panel-caption {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}
.panel-metric {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--color-brand-accent);
    line-height: 1.1;
    margin: 4px 0;
}
.panel-sub-caption {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.infra-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.wh-meters-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.wh-meter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wh-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
}
.wh-location {
    color: var(--color-text-primary);
}
.wh-value {
    color: var(--color-brand-accent);
}

.wh-track {
    height: 3px;
    background-color: var(--color-bg-primary);
}

.wh-fill {
    height: 100%;
    background-color: var(--color-brand-accent);
    transition: width 1s var(--ease-in-out);
}

.wh-meter-item:hover .wh-fill {
    background-color: var(--color-brand-hover);
}

.csr-text-panel {
    padding: 24px;
    border-left: 2px solid var(--color-border);
    background-color: rgba(255, 255, 255, 0.01);
}

.csr-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-brand-accent);
    display: block;
    margin-bottom: 8px;
}
.csr-body {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ----------------------------------------------------
   11. BRANCH CONTACT BOARD (SHIPPING INDEX STYLE)
   ---------------------------------------------------- */
.branches-section {
    background-color: var(--color-bg-primary);
}

.dispatch-board-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.dispatch-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color 150ms var(--ease-out);
}
.dispatch-card:hover {
    border-color: rgba(59, 130, 246, 0.25);
}

.dispatch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.dispatch-code {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.dispatch-status {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.dispatch-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.dispatch-status.online {
    color: #10b981;
}
.dispatch-status.online::before {
    background-color: #10b981;
}

.dispatch-depot {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.dispatch-address {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    min-height: 48px;
}

.dispatch-contact-block {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dispatch-line {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    min-height: 40px; /* Accessible pointer range */
}

.dispatch-line span,
.dispatch-line-static span {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.dispatch-line strong,
.dispatch-line-static strong {
    color: var(--color-text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.dispatch-line-static {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

/* ----------------------------------------------------
   12. COHESIVE SYSTEM FOOTER
   ---------------------------------------------------- */
.site-footer {
    background-color: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
}

.footer-top {
    padding: 80px 0 60px 0;
    border-bottom: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr repeat(3, 1fr);
    gap: 48px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand-footer-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 320px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 38px;
    height: 38px;
    background-color: transparent;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 150ms var(--ease-out);
}
.social-icon-link:hover {
    color: var(--color-text-primary);
    border-color: var(--color-brand-accent);
}
.social-icon-link:active {
    transform: scale(0.92);
}
.social-icon-link svg {
    width: 16px;
    height: 16px;
}

.footer-links-col h4 {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: color 150ms var(--ease-out), padding-left 150ms var(--ease-out);
}
.footer-links a:hover {
    color: var(--color-text-primary);
    padding-left: 4px;
}

.footer-hours-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}
.footer-hours-text strong {
    color: var(--color-text-primary);
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.footer-bottom {
    padding: 24px 0;
}

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

.copyright-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.apex-credit {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}
.apex-credit a {
    color: var(--color-brand-accent);
    font-weight: 700;
}

/* ----------------------------------------------------
   13. STICKY FLOATING WHATSAPP BUTTON
   ---------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 54px;
    height: 54px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    z-index: var(--z-index-whatsapp);
    transition: transform 150ms var(--ease-out), background-color 150ms var(--ease-out);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    background-color: #128c7e;
}
.whatsapp-float:active {
    transform: scale(0.94);
}

.whatsapp-icon {
    width: 26px;
    height: 26px;
}

/* Pulse animation for attention trigger */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: whatsapp-pulse 2.2s infinite;
}

/* ----------------------------------------------------
   14. ACCESSIBILITY: REDUCED MOTION SUPPORT
   ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    
    .btn, .site-header, .logo-wrapper, .cta-button, .wh-fill, .social-icon-link, .whatsapp-float {
        transform: none !important;
    }
    
    .whatsapp-float {
        animation: none !important;
    }
}

/* ----------------------------------------------------
   15. RESPONSIVE ADAPTATIONS (MEDIA QUERIES)
   ---------------------------------------------------- */

@media (max-width: 1024px) {
    .split-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-text-column {
        text-align: center;
    }
    .meta-row {
        justify-content: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-main-img {
        height: 400px;
    }
    
    .compliance-registry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fleet-roster-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-row {
        grid-template-columns: 1fr 4fr 3fr;
        gap: 16px;
        padding: 24px 0;
    }
    .metric-col-desc {
        grid-column: span 3;
    }
    .metric-col-value {
        text-align: right;
    }
    
    .acc-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-left: 0;
    }
    .acc-content-spec {
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding-left: 0;
        padding-top: 24px;
    }
    
    .calculator-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .infra-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .tech-metric-panel {
        bottom: -16px;
        right: 0;
    }
    
    .dispatch-board-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand-col {
        grid-column: span 2;
        align-items: center;
        text-align: center;
    }
    .brand-footer-text {
        max-width: 100%;
    }
    .footer-social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    
    .compliance-registry-grid {
        grid-template-columns: 1fr;
    }
    .fleet-roster-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-row {
        grid-template-columns: 1fr 3fr;
        gap: 8px;
    }
    .metric-col-index {
        font-size: 0.7rem;
    }
    .metric-col-title {
        font-size: 0.9rem;
    }
    .metric-col-desc {
        grid-column: span 2;
    }
    .metric-col-value {
        grid-column: span 2;
        text-align: left;
        font-size: 2.25rem;
    }
    
    .fleet-unit-card {
        padding: 24px;
    }
    
    .calc-panel-card {
        padding: 24px;
    }
    
    .dispatch-board-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand-col {
        grid-column: span 1;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 24px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
    .whatsapp-icon {
        width: 22px;
        height: 22px;
    }
}

/* ====================================================
   16. LIVE DISPATCH MONITOR BOARD & MAP GLOWS (LIGHT THEME)
   ==================================================== */
.dispatch-terminal {
    background-color: var(--color-bg-secondary); /* White panel background to match website cards */
    border: 1px solid var(--color-border); /* Standard slate border */
    padding: 24px;
    border-radius: 4px;
    font-family: var(--font-body);
    color: var(--color-text-secondary);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04); /* Soft subtle shadow matching rest of UI */
    margin-bottom: 32px;
    position: relative;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.terminal-dot.green {
    background-color: #10b981; /* Standard emerald green for active state */
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

.terminal-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-text-primary); /* High-contrast dark title */
    text-transform: uppercase;
}

.terminal-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dispatch-row {
    display: grid;
    grid-template-columns: 1.5fr 4fr 2fr 3fr;
    font-size: 0.75rem;
    align-items: center;
    border-bottom: 1px dashed var(--color-border); /* Slate dashed row separator */
    padding-bottom: 8px;
}
.dispatch-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.disp-time {
    color: var(--color-brand-primary); /* Runga Trans Royal Blue time highlight */
    font-weight: 700;
}

.disp-route {
    color: var(--color-text-primary); /* Dark high-contrast route names */
    font-weight: 600;
}

.disp-truck {
    color: var(--color-text-muted); /* Muted slate grey for truck ID */
    font-family: monospace;
}

.disp-status {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: right;
    padding: 2px 6px;
    border-radius: 2px;
    width: max-content;
    justify-self: end;
}

.disp-status.clear {
    background-color: rgba(16, 185, 129, 0.08);
    color: #047857; /* Rich green for readability on light BG */
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.disp-status.cargo {
    background-color: rgba(217, 119, 6, 0.08);
    color: #b45309; /* Deep amber for readability on light BG */
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.terminal-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
    margin-top: 16px;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    color: var(--color-text-muted); /* Muted footer text */
    text-transform: uppercase;
}

/* Custom Route Highlights for SVG map */
.map-route-line {
    transition: stroke 300ms var(--ease-out), stroke-width 300ms var(--ease-out), filter 300ms var(--ease-out);
}
.map-node {
    transition: fill 300ms var(--ease-out), r 300ms var(--ease-out), filter 300ms var(--ease-out);
}

.map-route-line.active-route {
    stroke: var(--color-brand-accent) !important; /* Warning Amber glow */
    stroke-width: 6px !important;
    filter: drop-shadow(0 0 8px rgba(217, 119, 6, 0.6));
    animation: stroke-pulse 2s infinite var(--ease-in-out);
}

.map-node.active-route {
    fill: var(--color-brand-accent) !important;
    r: 12px !important;
    filter: drop-shadow(0 0 10px rgba(217, 119, 6, 0.8));
}

@keyframes stroke-pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; stroke-width: 7px; }
    100% { opacity: 0.8; }
}

/* ----------------------------------------------------
   17. CORPORATE EXCELLENCE & AWARDS GALLERY
   ---------------------------------------------------- */
.excellence-section {
    background-color: var(--color-bg-secondary);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.excellence-card {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 150ms var(--ease-out), border-color 150ms var(--ease-out);
    border-radius: 2px;
}
.excellence-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-brand-primary);
}

.excellence-badge-wrapper {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    padding: 8px;
    border-radius: 2px;
    overflow: hidden;
}

.excellence-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: saturate(0.9) contrast(1.05);
    transition: transform 200ms var(--ease-out);
}
.excellence-card:hover .excellence-img {
    transform: scale(1.05);
}

.excellence-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.excellence-meta {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-brand-accent);
    text-transform: uppercase;
}

.excellence-card-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.excellence-card-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsiveness overrides for new components */
@media (max-width: 1024px) {
    .excellence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .excellence-grid {
        grid-template-columns: 1fr;
    }
    .dispatch-row {
        grid-template-columns: 1fr 2fr 1fr;
        gap: 8px;
    }
    .dispatch-row .disp-truck {
        display: none;
    }
}
