/**
 * Judge Haulage — Page-Specific Styles
 * Premium haulage identity: vivid orange, deep navy, bold typography, rich visuals.
 */

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 1. HERO
   ═══════════════════════════════════════════════════════════ */
.hero-section {
    background: var(--grad-hero);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Large decorative radial glow top-right */
.hero-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at 60% 40%, rgba(255,98,0,0.11) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
/* Subtle bottom-left noise */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 60px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(17,34,64,0.55) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Main content row */
.hero-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: stretch;
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 42px;
    position: relative;
    z-index: 1;
}

/* ── Left: text content ── */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
}

/* Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.45rem, 3.8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: .01em;
    margin-bottom: 18px;
    color: var(--color-white);
}
/* Orange accent word */
.hero-title-accent {
    color: var(--color-accent);
    position: relative;
    display: inline-block;
}
/* Subtle underline stroke on accent word */
.hero-title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: var(--grad-accent);
    border-radius: 2px;
    opacity: 0.6;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.68);
    margin-bottom: 22px;
    max-width: 510px;
}

/* CTA buttons */
.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.hero-cta-primary {
    padding: 0.82rem 1.6rem;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}
.hero-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    background: rgba(255,255,255,0.11);
}
.hero-action-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Proof strip ── */
.hero-proof-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.proof-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}
.proof-item svg { opacity: 0.5; flex-shrink: 0; }
.proof-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.proof-dot--green {
    background: var(--color-success);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
    animation: proof-pulse 2.5s ease-out infinite;
}
@keyframes proof-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.25); }
    50%       { box-shadow: 0 0 0 6px rgba(16,185,129,0.08); }
}
.proof-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
.proof-phone {
    color: var(--color-accent-light);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}
.proof-phone:hover { color: var(--color-accent); }

/* ── Right: image panel ── */
.hero-visual-wrapper {
    position: relative;
    align-self: center;
    width: 100%;
    min-height: 410px;
}
.hero-image-panel {
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--grad-card);
    box-shadow: 0 22px 60px rgba(0,0,0,0.34);
}
.hero-panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
/* Gradient overlay — dark left edge + top fade */
.hero-panel-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,  rgba(8,21,43,0.65) 0%, rgba(8,21,43,0.05) 50%, transparent 100%),
        linear-gradient(to bottom, rgba(8,21,43,0.3) 0%, transparent 40%, rgba(8,21,43,0.2) 100%);
    pointer-events: none;
}

/* ── Glass info chips on image ── */
.hero-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    background: rgba(8,21,43,0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    animation: chip-float 5s ease-in-out infinite;
}
.hero-chip--top-right {
    top: 18px;
    right: 18px;
    animation-delay: 2.5s;
}
@keyframes chip-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}
.chip-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.chip-dot--green {
    background: var(--color-success);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.3);
}
.chip-text { display: flex; flex-direction: column; gap: 1px; }
.chip-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.chip-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
}

/* ── Bottom stat bar ── */
.hero-stat-bar {
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 2;
}
.hero-stat-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 0;
}
.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: .01em;
}
.hero-stat-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 500;
}
.hero-stat-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}



/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 2. TRUST POINTS BAR
   ═══════════════════════════════════════════════════════════ */
.trust-points-section {
    background-color: var(--color-bg-white);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-bg-gray);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
}
.trust-grid > * + *::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--color-bg-gray-dark);
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
}
.trust-icon {
    color: var(--color-accent);
    background: var(--color-accent-subtle);
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,98,0,0.15);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}
.trust-item:hover .trust-icon {
    transform: scale(1.07);
    box-shadow: var(--shadow-accent);
}
.trust-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}
.trust-desc {
    font-size: 0.875rem;
    color: var(--color-text-medium);
    line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 3. HOME SERVICES
   ═══════════════════════════════════════════════════════════ */
.home-services-section { padding: var(--space-xxl) 0; }
.services-editorial-list {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-xxl);
}
.services-more-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 4. ABOUT TEASER
   ═══════════════════════════════════════════════════════════ */
.home-about-section {
    padding: var(--space-xxl) 0;
    background-color: var(--color-bg-light);
}
.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: var(--space-xxl);
    align-items: center;
}
.home-about-image-wrapper { position: relative; height: 460px; }
.home-about-decor-frame {
    width: 100%;
    height: 100%;
    background: var(--grad-card);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.home-about-decor-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-accent);
}
.about-map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    border-top: 4px solid var(--color-accent);
    text-align: center;
    min-width: 190px;
}
.about-map-marker span {
    display: block;
    font-size: 11px;
    color: var(--color-text-medium);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.about-map-marker strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.about-text-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.55;
}
.about-text-body {
    color: var(--color-text-medium);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
    font-size: 0.97rem;
}
.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
}
.about-features-list li {
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 22px;
    font-size: 0.92rem;
    color: var(--color-text-dark);
    line-height: 1.55;
}
.about-features-list li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 0.85rem;
    top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 5. WHY CHOOSE US
   ═══════════════════════════════════════════════════════════ */
.why-choose-section { padding: var(--space-xxl) 0; }
.why-choose-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}
.why-choose-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-medium);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}
.why-features-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}
.why-feature-item {
    padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
    border-left: 3px solid var(--color-accent);
    background: var(--color-bg-light);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.why-feature-item:hover {
    border-left-color: var(--color-accent-hover);
    box-shadow: var(--shadow-sm);
}
.why-feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}
.why-feature-item p {
    font-size: 0.875rem;
    color: var(--color-text-medium);
    line-height: 1.6;
    margin: 0;
}

.why-choose-visual {
    height: 400px;
    background: var(--grad-card);
    border-radius: var(--border-radius-xl);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
}
.why-choose-visual::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,98,0,0.12) 0%, transparent 70%);
}
.why-visual-decor {
    display: flex;
    gap: var(--space-md);
    flex-direction: column;
    z-index: 1;
}
.stat-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(6px);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--border-radius-md);
    text-align: center;
    border-top: 3px solid var(--color-success);
    color: var(--color-white);
    min-width: 200px;
    transition: transform var(--transition-medium);
}
.stat-badge:hover { transform: scale(1.03); }
.stat-badge-accent { border-top-color: var(--color-accent); }
.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 4px;
    letter-spacing: .01em;
}
.stat-lbl {
    font-size: 10.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.8px;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 6. FLEET PREVIEW
   ═══════════════════════════════════════════════════════════ */
.home-fleet-section {
    padding: var(--space-xxl) 0;
    background-color: var(--color-bg-light);
}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}
.fleet-teaser-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-bg-gray);
    box-shadow: var(--shadow-xs);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}
.fleet-teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.fleet-card-badge {
    display: inline-block;
    background: var(--grad-card);
    color: var(--color-accent-light);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.fleet-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}
.fleet-card-use {
    font-size: 0.88rem;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}
.fleet-card-capacity {
    font-size: 0.86rem;
    color: var(--color-text-medium);
    margin-bottom: var(--space-lg);
    flex-grow: 1;
    line-height: 1.55;
}
.fleet-notice-box {
    background: var(--color-white);
    border: 1px solid rgba(255,98,0,0.25);
    border-left: 4px solid var(--color-accent);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius-md);
    font-size: 0.875rem;
    color: var(--color-text-dark);
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 7. HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.how-it-works-section { padding: var(--space-xxl) 0; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

/* connector line between step cards */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, var(--color-accent), rgba(255,98,0,0.15));
    z-index: 0;
}

.step-card {
    background-color: var(--color-white);
    padding: var(--space-xl) var(--space-lg) var(--space-lg) var(--space-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-bg-gray);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.step-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--space-sm);
    opacity: 0.25;
}
.step-card:hover .step-num { opacity: 0.5; }
.step-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}
.step-desc {
    font-size: 0.86rem;
    color: var(--color-text-medium);
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 8. INDUSTRIES
   ═══════════════════════════════════════════════════════════ */
.industries-section {
    padding: var(--space-xxl) 0;
    background-color: var(--color-bg-light);
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.industry-card {
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-bg-gray);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}
.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.industry-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
    padding-left: var(--space-sm);
    border-left: 3px solid var(--color-accent);
}
.industry-desc {
    font-size: 0.86rem;
    color: var(--color-text-medium);
    line-height: 1.6;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 9. AREAS / ROUTE CHECKER
   ═══════════════════════════════════════════════════════════ */
.areas-covered-checker-section {
    padding: var(--space-xxl) 0;
    border-top: 1px solid var(--color-bg-gray);
}
.areas-checker-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}
.checker-desc {
    font-size: 1.05rem;
    color: var(--color-text-medium);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}
.availability-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ECFDF5;
    border: 1px solid rgba(16,185,129,0.3);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    color: #065F46;
    font-weight: 500;
}
.status-indicator-green {
    width: 9px;
    height: 9px;
    background-color: var(--color-success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.2); }
    50%       { box-shadow: 0 0 0 8px rgba(16,185,129,0.05); }
}
.checker-form-wrapper {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-bg-gray);
}
.checker-form-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-lg);
}
.checker-form { display: flex; flex-direction: column; gap: var(--space-md); }
.checker-alt-cta {
    margin-top: var(--space-md);
    font-size: 0.84rem;
    color: var(--color-text-medium);
    text-align: center;
}
.whatsapp-text-link {
    font-weight: 700;
    color: var(--color-success);
    text-decoration: none;
}
.whatsapp-text-link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 10. SAFETY
   ═══════════════════════════════════════════════════════════ */
.safety-section {
    padding: var(--space-xxl) 0;
    background-color: var(--color-bg-light);
}
.safety-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xxl);
    align-items: center;
}
.safety-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-medium);
    margin-bottom: var(--space-lg);
    line-height: 1.65;
}
.safety-points {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}
.safety-point {
    background-color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xs);
    border-left: 4px solid var(--color-accent);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-medium);
    transition: box-shadow var(--transition-fast);
}
.safety-point:hover { box-shadow: var(--shadow-sm); }
.safety-point strong {
    display: block;
    color: var(--color-text-dark);
    margin-bottom: 3px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}
.safety-visual {
    height: 340px;
    background: var(--grad-card);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
    position: relative;
}
.safety-visual::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
}
.safety-badge-container { padding: var(--space-xl); max-width: 300px; z-index: 1; }
.safety-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    backdrop-filter: blur(6px);
    color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    border-top: 4px solid var(--color-success);
}
.safety-card h4 {
    font-family: var(--font-heading);
    margin-bottom: var(--space-sm);
    color: var(--color-white);
    font-size: 1.1rem;
}
.safety-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 11. TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials-section { padding: var(--space-xxl) 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}
.testimonial-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-bg-gray);
    border-radius: var(--border-radius-lg);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.12;
    pointer-events: none;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}
.testimonial-quote {
    font-size: 0.97rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: var(--space-lg);
    line-height: 1.75;
    flex-grow: 1;
}
.testimonial-footer { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-dark);
    font-style: normal;
    font-size: 0.95rem;
}
.testimonial-meta {
    font-size: 0.78rem;
    color: var(--color-text-medium);
}
.testimonial-placeholder-tag {
    font-size: 10px;
    color: var(--color-text-light);
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — 12 (CTA), 13 (FAQ)
   ═══════════════════════════════════════════════════════════ */
.home-faqs-section { padding: var(--space-xxl) 0; }
.faq-more-cta {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.93rem;
    color: var(--color-text-medium);
}
.faq-more-cta a { color: var(--color-accent); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — COMPACT EDITORIAL SYSTEM
   Carries the hero's premium industrial direction through the page.
   ═══════════════════════════════════════════════════════════ */
.section-title-accent { color: var(--color-accent); }

.home-services-section,
.home-about-section,
.why-choose-section,
.home-fleet-section,
.how-it-works-section,
.industries-section,
.areas-covered-checker-section,
.safety-section,
.testimonials-section,
.home-faqs-section {
    padding: clamp(3.75rem, 6vw, 4.75rem) 0;
}

.home-services-section .section-header,
.home-fleet-section .section-header,
.how-it-works-section .section-header,
.industries-section .section-header,
.testimonials-section .section-header,
.home-faqs-section .section-header {
    margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.home-services-section .section-badge,
.home-about-section .section-badge,
.why-choose-section .section-badge,
.home-fleet-section .section-badge,
.how-it-works-section .section-badge,
.industries-section .section-badge,
.areas-covered-checker-section .section-badge,
.safety-section .section-badge,
.testimonials-section .section-badge,
.home-faqs-section .section-badge {
    background: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 8px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    letter-spacing: 1.6px;
}

/* Trust rail */
.trust-points-section {
    padding: 0;
    background: var(--color-primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-grid { gap: 0; }
.trust-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-rows: max-content max-content;
    column-gap: 16px;
    row-gap: 5px;
    align-items: center;
    align-content: center;
    padding: 30px 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}
.trust-item:first-child { border-left: 0; }
.trust-icon {
    grid-row: 1 / 3;
    width: 46px;
    height: 46px;
    background: transparent;
    border: 1px solid rgba(255, 98, 0, 0.55);
    color: var(--color-accent-light);
    box-shadow: none;
}
.trust-title { color: var(--color-white); font-size: 1rem; margin: 0; }
.trust-desc { color: rgba(255, 255, 255, 0.62); margin: 0; font-size: 0.8rem; }
.trust-item:hover .trust-icon { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

/* Services rail with intentional media fallback */
.home-services-section { background: var(--color-white); }
.home-services-section .services-editorial-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 0;
}
.home-services-section .service-card {
    border-color: #DCE3EA;
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(8, 21, 43, 0.07);
}
.home-services-section .service-card:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(8, 21, 43, 0.12); }
.home-services-section .service-card-image { height: 210px; }
.home-services-section .service-card-body { padding: 24px; }
.home-services-section .service-card-title { font-size: 1.28rem; }
.home-services-section .service-card-text { font-size: 0.86rem; line-height: 1.62; margin-bottom: 16px; }
.home-services-section .service-card-benefit { margin-bottom: 18px; font-size: 0.8rem; line-height: 1.5; }
.home-services-section .services-more-cta { margin-top: 28px; }
.home-services-section .services-more-cta .btn { min-width: 210px; }

.service-media-fallback {
    background:
        radial-gradient(circle at 82% 20%, rgba(255, 98, 0, 0.16), transparent 28%),
        linear-gradient(145deg, #08152B 0%, #0A1E38 55%, #112C4D 100%);
}
.service-media-fallback::after {
    content: '';
    position: absolute;
    left: -12%;
    right: -12%;
    bottom: 23px;
    height: 2px;
    background: var(--color-accent);
    transform: rotate(-5deg);
    opacity: 0.78;
}
.service-fallback-art {
    width: 100%;
    height: 100%;
    padding: 26px 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.82);
}
.service-fallback-truck {
    width: min(100%, 250px);
    height: auto;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--transition-slow), color var(--transition-fast);
}
.service-fallback-art span {
    margin-top: 6px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-accent-light);
    text-transform: uppercase;
    letter-spacing: 1.3px;
}
.service-card:hover .service-fallback-truck,
.service-editorial-block:hover .service-fallback-truck { transform: translateX(6px); color: var(--color-white); }

/* About / operational base */
.home-about-section { background: var(--color-bg-light); }
.home-about-grid { grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 5vw, 4.75rem); }
.home-about-image-wrapper { height: 410px; }
.home-about-decor-frame {
    border-radius: 14px;
    background:
        radial-gradient(circle at 56% 50%, rgba(255, 98, 0, 0.18) 0 2px, transparent 3px),
        linear-gradient(28deg, transparent 0 46%, rgba(255, 98, 0, 0.82) 47% 47.6%, transparent 48.2%),
        linear-gradient(-18deg, transparent 0 52%, rgba(255, 98, 0, 0.55) 53% 53.5%, transparent 54%),
        repeating-linear-gradient(12deg, transparent 0 34px, rgba(255,255,255,0.045) 35px 36px),
        var(--grad-card);
    box-shadow: 0 20px 50px rgba(8, 21, 43, 0.18);
}
.home-about-decor-frame::before {
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent 0 70px, rgba(255,255,255,0.035) 71px 72px);
}
.home-about-decor-frame::after {
    content: 'TW5  ·  WEST LONDON';
    position: absolute;
    left: 24px;
    bottom: 20px;
    color: rgba(255,255,255,0.46);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
}
.about-map-marker {
    background: rgba(8, 21, 43, 0.9);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.12);
    border-top: 3px solid var(--color-accent);
    box-shadow: 0 18px 38px rgba(0,0,0,0.28);
}
.about-map-marker span { color: rgba(255,255,255,0.55); }
.about-map-marker strong { color: var(--color-white); }
.map-corridor {
    position: absolute;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 4px;
    background: #166534;
    border: 1px solid rgba(255,255,255,0.7);
    color: var(--color-white);
    font-size: 0.68rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.map-corridor--m4 { top: 21%; right: 14%; }
.map-corridor--m25 { bottom: 25%; right: 9%; }
.map-corridor--m3 { bottom: 19%; left: 12%; }
.home-about-content .section-title { max-width: 620px; }
.about-text-lead { font-size: 1.03rem; }
.about-text-body { font-size: 0.9rem; line-height: 1.68; margin-bottom: 18px; }
.about-features-list { margin-bottom: 24px; }
.about-features-list li { margin-bottom: 9px; font-size: 0.86rem; }

/* Commitment band */
.why-choose-section {
    background: var(--grad-card);
    color: var(--color-white);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.why-choose-grid { grid-template-columns: minmax(0, 1fr) 250px; gap: 36px; align-items: stretch; }
.why-choose-section .section-title,
.why-choose-section .why-feature-item h4 { color: var(--color-white); }
.why-choose-section .why-choose-subtitle { color: rgba(255,255,255,0.62); margin-bottom: 26px; }
.why-features-stack { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.why-feature-item {
    padding: 4px 24px 4px 20px;
    border: 0;
    border-left: 1px solid rgba(255,255,255,0.14);
    border-radius: 0;
    background: transparent;
}
.why-feature-item:first-child { padding-left: 0; border-left: 0; }
.why-feature-item:hover { border-left-color: rgba(255,255,255,0.14); box-shadow: none; }
.why-feature-item h4 { font-size: 0.98rem; }
.why-feature-item p { color: rgba(255,255,255,0.58); font-size: 0.8rem; }
.why-choose-visual {
    height: auto;
    min-height: 238px;
    background: rgba(255,255,255,0.035);
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,0.1);
}
.why-choose-visual::before { width: 160px; height: 160px; }
.stat-badge { background: transparent; border: 0; border-radius: 0; padding: 18px 22px; min-width: 180px; }
.stat-badge + .stat-badge { border-top: 1px solid rgba(255,255,255,0.12); }
.stat-num { font-size: 2.15rem; }

/* Fleet */
.home-fleet-section { background: var(--color-white); }
.fleet-grid { gap: 18px; margin-bottom: 22px; }
.fleet-teaser-card {
    background: var(--grad-card);
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(8,21,43,0.12);
    padding: 24px;
}
.fleet-teaser-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(8,21,43,0.18); }
.fleet-card-badge { background: transparent; border-radius: 0; padding: 0 0 10px; border-bottom: 2px solid var(--color-accent); width: fit-content; }
.fleet-card-use { color: var(--color-white); }
.fleet-card-capacity { color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.fleet-notice-box { box-shadow: none; background: var(--color-bg-light); }

/* Process timeline */
.how-it-works-section { background: var(--color-bg-light); }
.steps-grid { gap: 0; }
.steps-grid::before { top: 34px; left: 8%; right: 8%; background: rgba(255,98,0,0.35); }
.step-card {
    padding: 0 24px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    border-left: 1px solid #D9E0E7;
}
.step-card:first-child { border-left: 0; padding-left: 0; }
.step-card:last-child { padding-right: 0; }
.step-card:hover { transform: none; box-shadow: none; }
.step-num {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,98,0,0.42);
    border-radius: 50%;
    background: var(--color-white);
    font-size: 1.25rem;
    opacity: 1;
    box-shadow: 0 8px 22px rgba(8,21,43,0.06);
}
.step-card:hover .step-num { opacity: 1; }
.step-title { font-size: 1rem; margin-top: 12px; }
.step-desc { font-size: 0.8rem; }

/* Industry index */
.industries-section { background: var(--color-white); }
.industries-grid { gap: 0; border-top: 1px solid #DDE4EB; border-bottom: 1px solid #DDE4EB; }
.industry-card {
    padding: 22px 24px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-right: 1px solid #DDE4EB;
    border-bottom: 1px solid #DDE4EB;
    background: transparent;
}
.industry-card:nth-child(3n) { border-right: 0; }
.industry-card:nth-last-child(-n + 3) { border-bottom: 0; }
.industry-card:hover { transform: none; box-shadow: inset 3px 0 0 var(--color-accent); background: var(--color-bg-light); }
.industry-name { font-size: 1rem; padding-left: 0; border-left: 0; }
.industry-desc { font-size: 0.8rem; line-height: 1.56; }

/* Route checker action band */
.areas-covered-checker-section {
    background: var(--grad-card);
    border: 0;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.areas-covered-checker-section::before {
    content: '';
    position: absolute;
    left: -10%;
    bottom: 18%;
    width: 52%;
    height: 2px;
    background: var(--color-accent);
    transform: rotate(-8deg);
    opacity: 0.5;
}
.areas-checker-grid { grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); position: relative; z-index: 1; }
.areas-covered-checker-section .section-title { color: var(--color-white); }
.checker-desc { color: rgba(255,255,255,0.64); font-size: 0.92rem; line-height: 1.65; }
.availability-status { border-radius: 6px; padding: 8px 12px; background: rgba(16,185,129,0.12); color: #D1FAE5; }
.checker-form-wrapper {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    box-shadow: none;
    padding: 28px;
}
.checker-form-title { color: var(--color-white); margin-bottom: 18px; }
.checker-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checker-form .form-group { margin: 0; }
.checker-form .form-label { color: rgba(255,255,255,0.78); }
.checker-form .btn { grid-column: 1 / -1; }
.checker-form .route-whatsapp-note {
    grid-column: 1 / -1;
    margin: -2px 0 0;
    color: rgba(255,255,255,0.56);
    font-size: 0.7rem;
    line-height: 1.5;
    text-align: center;
}
.checker-alt-cta { color: rgba(255,255,255,0.54); }

/* Safety */
.safety-section { background: var(--color-bg-light); }
.safety-grid { grid-template-columns: minmax(0, 1fr) 300px; gap: 30px; }
.safety-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.safety-point {
    background: transparent;
    border: 0;
    border-left: 1px solid #D7DEE6;
    border-radius: 0;
    box-shadow: none;
    padding: 4px 24px;
    font-size: 0.8rem;
}
.safety-point:first-child { border-left: 0; padding-left: 0; }
.safety-point:hover { box-shadow: none; }
.safety-visual { height: 100%; min-height: 240px; border-radius: 12px; box-shadow: 0 16px 38px rgba(8,21,43,0.14); }
.safety-badge-container { padding: 24px; }
.safety-card { background: transparent; border: 0; border-radius: 0; border-left: 3px solid var(--color-success); padding: 4px 0 4px 18px; }

/* Testimonials and closing sequence */
.testimonials-section { background: var(--color-white); }
.testimonials-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.testimonial-card { border-radius: 12px; padding: 26px; box-shadow: none; }
.testimonial-card::before { font-size: 3.5rem; top: 14px; right: 20px; }
.testimonial-card:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(8,21,43,0.08); }
.testimonial-quote { font-size: 0.93rem; line-height: 1.65; margin-bottom: 20px; }

.quote-cta-section { padding: clamp(2.75rem, 5vw, 3.75rem) 0; }
.quote-cta-inner { grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr); gap: 40px; }
.quote-cta-title { font-size: clamp(1.65rem, 3vw, 2.15rem); margin-bottom: 10px; }
.quote-cta-desc { font-size: 0.92rem; max-width: 720px; }
.quote-cta-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.quote-cta-actions .btn:first-child { grid-column: 1 / -1; }
.quote-cta-actions .btn { padding: 0.72rem 1rem; font-size: 0.82rem; }

.home-faqs-section { background: var(--color-bg-light); }
.home-faqs-section .section-header,
.home-faqs-section .faq-accordion-list,
.home-faqs-section .faq-more-cta { max-width: 920px; margin-left: auto; margin-right: auto; }
.home-faqs-section .section-header { text-align: center; }
.home-faqs-section .section-badge { display: inline-flex; }
.home-faqs-section .faq-accordion-list { gap: 0; border-top: 1px solid #D8E0E8; }
.home-faqs-section .faq-accordion-item { border: 0; border-bottom: 1px solid #D8E0E8; border-radius: 0; background: transparent; }
.home-faqs-section .faq-accordion-item:hover { border-color: #D8E0E8; box-shadow: none; }
.home-faqs-section .faq-accordion-trigger { padding: 17px 4px; font-size: 0.93rem; }
.home-faqs-section .faq-accordion-content { padding: 0 4px 17px; border-top: 0; font-size: 0.86rem; }
.home-faqs-section .faq-accordion-item.faq-active { border-color: var(--color-accent); box-shadow: none; }
.faq-more-cta { margin-top: 24px; font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════════════
   INNER PAGE HERO BANNER
   ═══════════════════════════════════════════════════════════ */
.page-hero-section {
    background: var(--grad-dark);
    color: var(--color-white);
    padding: var(--space-xxl) 0 var(--space-xl) 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
}
.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255,98,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
    letter-spacing: .01em;
    position: relative;
    z-index: 1;
}
.page-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    max-width: 700px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — COMPACT EDITORIAL SYSTEM
   ═══════════════════════════════════════════════════════════ */
.about-page { background: var(--color-white); }

.about-page-hero {
    background: var(--color-primary-deep);
    padding: 0;
}
.about-page-hero::before {
    width: 42%;
    background: linear-gradient(118deg, transparent 34%, rgba(255,98,0,0.09) 34.2%, transparent 34.7%);
}
.about-page-hero::after {
    content: '';
    position: absolute;
    right: 22%;
    bottom: 34px;
    width: 12px;
    height: 12px;
    border: 3px solid rgba(255,98,0,0.32);
    border-radius: 50%;
    pointer-events: none;
}
.about-page-hero .breadcrumb-container {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0;
    border: 0;
}
.about-page-hero .breadcrumbs {
    padding-top: 20px;
    padding-bottom: 0;
}
.about-page-hero .breadcrumb-item,
.about-page-hero .breadcrumb-item a { color: rgba(255,255,255,0.52); }
.about-page-hero .breadcrumb-item a:hover,
.about-page-hero .breadcrumb-item.active { color: var(--color-accent); }
.about-page-hero-content { padding-top: 34px; padding-bottom: 54px; text-align: center; }
.about-page-hero .page-hero-title { font-size: clamp(1.9rem, 3.8vw, 2.8rem); letter-spacing: .01em; }
.about-page-hero .page-hero-title span { color: var(--color-accent); }
.about-page-hero .page-hero-desc { max-width: 700px; margin-left: auto; margin-right: auto; font-size: 1.05rem; }

.about-details-section { padding: clamp(4rem, 7vw, 5.75rem) 0 0; }
.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}
.about-details-text h2,
.about-operations-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.45rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: .01em;
    color: var(--color-text-dark);
    margin-bottom: 22px;
}
.about-details-text h2 span,
.about-operations-section h2 span { color: var(--color-accent); }
.about-details-text p {
    color: var(--color-text-medium);
    font-size: 0.92rem;
    line-height: 1.72;
    margin-bottom: 14px;
}
.about-details-text .lead-text {
    color: var(--color-text-dark);
    font-size: 1.02rem;
    line-height: 1.66;
}

.about-route-visual {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid #D7E0E8;
    border-radius: 12px;
    background-color: #F4F7FA;
    background-image:
        linear-gradient(28deg, transparent 48%, rgba(11,25,48,0.04) 49%, rgba(11,25,48,0.04) 50%, transparent 51%),
        linear-gradient(152deg, transparent 48%, rgba(11,25,48,0.035) 49%, rgba(11,25,48,0.035) 50%, transparent 51%);
    background-size: 120px 96px, 150px 110px;
}
.about-route-visual::before,
.about-route-visual::after {
    content: '';
    position: absolute;
    border: 4px solid rgba(57,167,219,0.16);
    border-radius: 48%;
    transform: rotate(-13deg);
}
.about-route-visual::before { width: 360px; height: 145px; left: 12%; top: 32%; }
.about-route-visual::after { width: 230px; height: 100px; right: -25px; bottom: 15px; }
.about-route-line {
    position: absolute;
    display: block;
    height: 4px;
    border-radius: 999px;
    background: var(--color-primary-deep);
    transform-origin: left center;
    z-index: 2;
}
.about-route-line-one { width: 78%; top: 26%; left: -7%; transform: rotate(5deg); }
.about-route-line-two { width: 72%; top: 62%; left: 19%; transform: rotate(-18deg); background: var(--color-accent); }
.about-route-line-three { width: 55%; top: 42%; right: -17%; transform: rotate(69deg); }
.about-route-node {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid var(--color-primary-deep);
    border-radius: 50%;
    background: #F4F7FA;
    z-index: 4;
}
.route-node-one { top: 24%; left: 37%; }
.route-node-two { top: 47%; right: 24%; border-color: var(--color-accent); }
.route-node-three { bottom: 23%; left: 48%; border-color: var(--color-accent); }
.about-route-label {
    position: absolute;
    z-index: 5;
    padding: 5px 9px;
    background: var(--color-primary-deep);
    color: var(--color-white);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.route-label-m4 { left: 21%; top: 16%; }
.route-label-m25 { right: 12%; top: 48%; }
.about-depot-marker {
    position: absolute;
    left: 22%;
    top: 42%;
    z-index: 6;
    display: grid;
    padding: 16px 18px 15px 52px;
    min-width: 210px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 18px 38px rgba(8,21,43,0.16);
}
.about-depot-pin {
    position: absolute;
    left: 18px;
    top: 17px;
    width: 22px;
    height: 22px;
    border: 6px solid var(--color-accent);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}
.about-depot-marker strong { color: var(--color-primary-deep); font-size: 0.9rem; }
.about-depot-marker small { color: var(--color-accent); font-size: 0.67rem; text-transform: uppercase; letter-spacing: 0.7px; }
.about-key-commitments { margin-top: clamp(3rem, 6vw, 5rem); }
.about-key-commitments > h3 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    width: max-content;
    margin-bottom: 0;
}
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #DCE3EA;
    border-bottom: 1px solid #DCE3EA;
}
.commitment-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 30px 28px;
    border-left: 1px solid #DCE3EA;
}
.commitment-item:first-child { border-left: 0; padding-left: 0; }
.commitment-item:last-child { padding-right: 0; }
.about-feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--color-primary-deep);
    border: 1px solid #D7E0E8;
    border-radius: 50%;
    background: #F7F9FB;
}
.about-feature-icon svg { width: 30px; height: 30px; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.commitment-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-primary-deep);
    margin: 3px 0 8px;
}
.commitment-item p { color: var(--color-text-medium); font-size: 0.82rem; line-height: 1.6; margin: 0; }

.about-operations-section {
    background: var(--color-primary-deep);
    color: var(--color-white);
    padding: clamp(3.75rem, 6vw, 5rem) 0;
    margin-top: clamp(4rem, 7vw, 5.75rem);
}
.about-operations-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(3rem, 7vw, 6rem); }
.about-operations-section h2 { color: var(--color-white); font-size: clamp(1.85rem, 2.8vw, 2.4rem); margin-bottom: 16px; }
.about-depot-contact { padding-right: clamp(2rem, 5vw, 4.5rem); border-right: 1px solid rgba(255,255,255,0.14); }
.about-depot-contact > p { color: rgba(255,255,255,0.68); font-size: 0.9rem; line-height: 1.6; max-width: 500px; margin-bottom: 24px; }
.sidebar-contact-list { list-style: none; padding: 0; margin: 0; }
.sidebar-contact-list li {
    display: grid;
    grid-template-columns: 155px 1fr;
    gap: 18px;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.11);
    color: rgba(255,255,255,0.78);
    font-size: 0.84rem;
}
.sidebar-contact-list strong { color: var(--color-accent); font-size: 0.77rem; text-transform: uppercase; letter-spacing: 0.5px; }
.sidebar-contact-list a { color: var(--color-white); text-decoration: none; }
.sidebar-contact-list a:hover { color: var(--color-accent); }
.about-logistics-list .sidebar-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}
.about-logistics-list .sidebar-checklist li {
    position: relative;
    color: rgba(255,255,255,0.82);
    font-size: 0.88rem;
    line-height: 1.45;
    padding: 17px 18px 17px 30px;
    border-top: 1px solid rgba(255,255,255,0.11);
}
.about-logistics-list .sidebar-checklist li::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 21px;
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
    transform: rotate(-45deg);
}

.about-why-choose { padding: clamp(4rem, 7vw, 5.75rem) 0; background: var(--color-white); }
.about-section-heading { margin-bottom: 34px; text-align: center; }
.about-section-heading .section-title {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.why-choose-grid-three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #DCE3EA;
    border-bottom: 1px solid #DCE3EA;
}
.why-card { padding: 30px 32px 30px 0; border-left: 1px solid #DCE3EA; }
.why-card:first-child { border-left: 0; }
.why-card:not(:first-child) { padding-left: 32px; }
.why-card-index {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    color: var(--color-accent);
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.why-card h3 { font-family: var(--font-heading); color: var(--color-primary-deep); font-size: 1.08rem; margin-bottom: 10px; }
.why-card p { color: var(--color-text-medium); font-size: 0.85rem; line-height: 1.65; margin: 0; }

.about-testimonials { padding: clamp(4rem, 7vw, 5.5rem) 0; background: var(--color-bg-light); }
.about-testimonials .testimonials-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.about-testimonials .testimonial-card { display: flex; flex-direction: column; min-height: 330px; background: var(--color-white); }
.about-testimonials .testimonial-quote { flex: 1; }
.about-testimonials .testimonial-footer { padding-top: 16px; border-top: 1px solid #E3E8ED; }
.about-testimonials .testimonial-card::before { color: rgba(255,98,0,0.1); }

/* ═══════════════════════════════════════════════════════════
   SERVICES LIST PAGE
   ═══════════════════════════════════════════════════════════ */
.services-page { background: var(--color-white); }
.services-page-hero { padding: 0; }
.services-page-hero .breadcrumb-container {
    position: relative;
    z-index: 2;
    padding: 0;
    border: 0;
    background: transparent;
}
.services-page-hero .breadcrumbs { padding-top: 20px; }
.services-page-hero .breadcrumb-item,
.services-page-hero .breadcrumb-item a { color: rgba(255,255,255,0.54); }
.services-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.28); }
.services-page-hero .breadcrumb-item a:hover,
.services-page-hero .breadcrumb-item.active { color: var(--color-accent); }
.services-page-hero-content { padding-top: 34px; padding-bottom: 54px; text-align: center; }
.services-page-hero .page-hero-title { margin-left: auto; margin-right: auto; }
.services-page-hero .page-hero-title span { color: var(--color-accent); }
.services-page-hero .page-hero-desc { margin-left: auto; margin-right: auto; }

.services-list-section { padding: clamp(2.75rem, 5vw, 4rem) 0; }
.services-page .services-editorial-list { margin-bottom: 0; }
.services-page .service-editorial-block {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    margin-bottom: 0;
    padding: clamp(2.25rem, 4vw, 3.5rem) 0;
    border-bottom: 1px solid #E0E6EC;
}
.services-page .service-editorial-block:first-child { padding-top: 0; }
.services-page .service-editorial-block:last-child { padding-bottom: 0; border-bottom: 0; }
.services-page .service-editorial-block.editorial-reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}
.services-page .service-editorial-block.editorial-reverse .service-editorial-image-wrapper { order: 2; }
.services-page .service-editorial-block.editorial-reverse .service-editorial-content { order: 1; }
.services-page .service-editorial-image-wrapper {
    height: clamp(280px, 30vw, 350px);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(8, 21, 43, 0.14);
}
.services-page .service-editorial-img { opacity: 1; }
.services-page .service-badge {
    background: none;
    color: var(--color-accent);
    border-radius: 0;
    border-bottom: 2px solid rgba(255,98,0,0.65);
    padding: 0 0 7px;
    letter-spacing: 1.5px;
}
.services-page .service-editorial-title { font-size: clamp(1.65rem, 2.4vw, 2.05rem); margin-bottom: 12px; }
.services-page .service-editorial-desc { max-width: 610px; margin-bottom: 18px; font-size: 0.94rem; }
.services-page .service-editorial-benefit { margin-bottom: 22px; line-height: 1.55; }

.services-industries-section { padding: clamp(3.75rem, 6vw, 5rem) 0; background: var(--color-bg-light); }
.services-industries-section .section-header { max-width: 720px; margin: 0 auto 34px; }
.services-industries-section .section-title { margin-bottom: 10px; }
.services-industries-section .section-badge {
    background: none;
    border: 0;
    border-bottom: 2px solid var(--color-accent);
    border-radius: 0;
    padding: 0 0 7px;
    letter-spacing: 1.5px;
}

/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.service-detail-section { padding: var(--space-xxl) 0; }
.service-detail-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-xl);
    align-items: start;
}
.sidebar-box {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
    border: 1px solid var(--color-bg-gray);
    margin-bottom: var(--space-lg);
}
.sidebar-box-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-accent);
}
.sidebar-menu-list { list-style: none; padding: 0; margin: 0; }
.sidebar-menu-list li { margin-bottom: 4px; }
.sidebar-menu-link {
    display: block;
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    color: var(--color-text-medium);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}
.sidebar-menu-link.active,
.sidebar-menu-link:hover {
    background-color: var(--color-primary-deep);
    color: var(--color-white);
}

.service-main-image-wrapper {
    position: relative;
    height: 340px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-lg);
}
.service-main-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 42% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(8,21,43,0.88));
    pointer-events: none;
}
.service-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-main-image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: var(--space-xl);
    background: var(--grad-card);
}
.image-text-overlay { position: absolute; left: var(--space-xl); right: var(--space-xl); bottom: var(--space-xl); z-index: 1; color: var(--color-white); }
.image-text-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
}
.image-text-overlay p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0; }

.service-description h2,
.service-benefits-block h2,
.service-industries-block h2,
.service-process-block h2,
.service-faqs-block h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin: var(--space-xl) 0 var(--space-md) 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-bg-gray);
}
.service-description p {
    color: var(--color-text-medium);
    font-size: 0.97rem;
    line-height: 1.75;
}

.benefits-checklist { list-style: none; padding: 0; }
.benefits-checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: 10px;
    font-size: 0.93rem;
    color: var(--color-text-dark);
}

.industry-tag-cloud { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.industry-tag {
    background-color: var(--color-bg-gray);
    color: var(--color-text-medium);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid var(--color-bg-gray-dark);
}

.process-steps-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    padding: 0;
    list-style: none;
}
.process-steps-list li {
    background-color: var(--color-bg-light);
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--color-accent);
}
.process-step-num {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.4;
}
.process-step-text {
    font-size: 0.82rem;
    color: var(--color-text-medium);
    margin-top: 4px;
    line-height: 1.5;
}
.vehicle-suitability-notice {
    background-color: #FFFBEB;
    border: 1px solid #D97706;
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    margin: var(--space-xl) 0;
    border-left: 4px solid #D97706;
}
.vehicle-suitability-notice h3 {
    font-family: var(--font-heading);
    color: #92400E;
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
}
.vehicle-suitability-notice p {
    font-size: 0.875rem;
    color: #92400E;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

/* Service detail — compact editorial system */
.service-detail-page { background: var(--color-white); }
.service-detail-page .service-detail-section {
    padding: clamp(3.25rem, 5.5vw, 4.75rem) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, #F8FAFC 100%);
}
.service-detail-page .service-detail-grid {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    max-width: 1180px;
}
.service-detail-page .service-sidebar {
    position: sticky;
    top: 108px;
}
.service-detail-page .sidebar-box {
    margin-bottom: 18px;
    padding: 22px 20px;
    border: 1px solid #DDE4EA;
    border-radius: 10px;
    background: var(--color-white);
    box-shadow: none;
}
.service-detail-page .sidebar-box-title {
    position: relative;
    margin-bottom: 14px;
    padding: 0 0 12px;
    border: 0;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: .01em;
    text-transform: none;
}
.service-detail-page .sidebar-box-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-accent);
}
.service-detail-page .sidebar-menu-list li { margin: 0; }
.service-detail-page .sidebar-menu-link {
    position: relative;
    padding: 9px 10px 9px 16px;
    border-radius: 0;
    border-bottom: 1px solid #E4E9EE;
    color: var(--color-text-medium);
    font-size: 0.8rem;
    line-height: 1.35;
}
.service-detail-page .sidebar-menu-list li:last-child .sidebar-menu-link { border-bottom: 0; }
.service-detail-page .sidebar-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    transform: translateY(-50%);
    background: rgba(255,98,0,0.6);
    transition: width var(--transition-fast), background var(--transition-fast);
}
.service-detail-page .sidebar-menu-link.active,
.service-detail-page .sidebar-menu-link:hover {
    color: var(--color-primary-deep);
    background: transparent;
}
.service-detail-page .sidebar-menu-link.active { font-weight: 700; }
.service-detail-page .sidebar-menu-link.active::before,
.service-detail-page .sidebar-menu-link:hover::before { width: 10px; background: var(--color-accent); }
.service-detail-page .contact-box {
    position: relative;
    overflow: hidden;
    border-color: var(--color-primary-deep);
    color: var(--color-white);
    background: var(--color-primary-deep);
}
.service-detail-page .contact-box::after {
    content: '';
    position: absolute;
    right: -38px;
    bottom: 28px;
    width: 140px;
    height: 2px;
    transform: rotate(-22deg);
    background: rgba(255,98,0,0.36);
}
.service-detail-page .contact-box > * { position: relative; z-index: 1; }
.service-detail-page .contact-box .sidebar-box-title { color: var(--color-white); }
.service-detail-page .contact-box p {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.66);
    font-size: 0.8rem;
    line-height: 1.6;
}
.service-detail-page .contact-box .btn {
    margin-top: 8px;
    padding: 0.68rem 0.8rem;
    font-size: 0.78rem;
}
.service-detail-page .service-main-content { min-width: 0; }
.service-detail-page .service-main-image-wrapper {
    height: clamp(340px, 37vw, 430px);
    margin-bottom: clamp(2.25rem, 4vw, 3rem);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(8,21,43,0.14);
}
.service-detail-page .service-main-image-wrapper::after {
    inset: 48% 0 0;
    background: linear-gradient(to bottom, transparent, rgba(8,21,43,0.9));
}
.service-detail-page .service-main-image { transition: transform var(--transition-slow); }
.service-detail-page .service-main-image-wrapper:hover .service-main-image { transform: scale(1.025); }
.service-detail-page .image-text-overlay { left: 28px; right: 28px; bottom: 26px; }
.service-detail-page .image-text-overlay h3 {
    margin-bottom: 4px;
    font-size: clamp(1.45rem, 2.5vw, 1.95rem);
    font-weight: 400;
    letter-spacing: .01em;
}
.service-detail-page .image-text-overlay p { font-size: 0.82rem; }
.service-detail-page .service-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: clamp(2.25rem, 4vw, 4rem);
    align-items: start;
    padding-bottom: clamp(2.25rem, 4vw, 3rem);
    border-bottom: 1px solid #DDE4EA;
}
.service-detail-page .service-description h2,
.service-detail-page .service-benefits-block h2,
.service-detail-page .service-industries-block h2,
.service-detail-page .service-process-block h2,
.service-detail-page .service-faqs-block h2 {
    position: relative;
    margin: 0 0 18px;
    padding: 0 0 12px;
    border-bottom: 1px solid #DDE4EA;
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: .01em;
}
.service-detail-page .service-description h2::after,
.service-detail-page .service-benefits-block h2::after,
.service-detail-page .service-industries-block h2::after,
.service-detail-page .service-process-block h2::after,
.service-detail-page .service-faqs-block h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 62px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-accent);
}
.service-detail-page .service-description p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.78;
}
.service-detail-page .benefits-checklist {
    display: grid;
    gap: 0;
    margin: 0;
}
.service-detail-page .benefits-checklist li {
    gap: 11px;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #E3E8ED;
    color: var(--color-text-medium);
    font-size: 0.84rem;
    line-height: 1.5;
}
.service-detail-page .benefits-checklist li:first-child { padding-top: 0; }
.service-detail-page .benefits-checklist li:last-child { padding-bottom: 0; border-bottom: 0; }
.service-detail-page .benefit-check { flex: 0 0 auto; margin-top: 3px; color: var(--color-success); }
.service-detail-page .service-industries-block,
.service-detail-page .service-process-block,
.service-detail-page .service-faqs-block { padding-top: clamp(2.25rem, 4vw, 3rem); }
.service-detail-page .industry-tag-cloud {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #DDE4EA;
    border-bottom: 1px solid #DDE4EA;
}
.service-detail-page .industry-tag {
    min-height: 74px;
    display: flex;
    align-items: center;
    padding: 16px 18px;
    border: 0;
    border-right: 1px solid #DDE4EA;
    border-radius: 0;
    background: transparent;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: .01em;
}
.service-detail-page .industry-tag:last-child { border-right: 0; }
.service-detail-page .process-steps-list { gap: 0; }
.service-detail-page .process-steps-list li {
    position: relative;
    padding: 18px 18px 18px 20px;
    border: 0;
    border-top: 1px solid #DDE4EA;
    border-right: 1px solid #DDE4EA;
    border-radius: 0;
    background: transparent;
}
.service-detail-page .process-steps-list li:last-child { border-right: 0; }
.service-detail-page .process-step-num {
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: 1;
}
.service-detail-page .process-step-text { margin: 0; font-size: 0.8rem; line-height: 1.55; }
.service-detail-page .vehicle-suitability-notice {
    position: relative;
    overflow: hidden;
    margin: clamp(2.5rem, 4vw, 3.25rem) 0 0;
    padding: clamp(1.6rem, 3vw, 2.25rem);
    border: 0;
    border-left: 3px solid var(--color-accent);
    border-radius: 10px;
    color: var(--color-white);
    background: var(--color-primary-deep);
}
.service-detail-page .vehicle-suitability-notice::after {
    content: '';
    position: absolute;
    right: -7%;
    bottom: 21%;
    width: 42%;
    height: 2px;
    transform: rotate(-20deg);
    background: rgba(255,98,0,0.32);
}
.service-detail-page .vehicle-suitability-notice > * { position: relative; z-index: 1; }
.service-detail-page .vehicle-suitability-notice h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: .01em;
}
.service-detail-page .vehicle-suitability-notice p {
    max-width: 760px;
    color: rgba(255,255,255,0.68);
    font-size: 0.84rem;
    line-height: 1.68;
}
.service-detail-page .vehicle-suitability-notice .btn-text { color: var(--color-accent); }
.service-detail-page .service-faqs-block .faq-accordion-list {
    gap: 0;
    border-top: 1px solid #D8E0E8;
}
.service-detail-page .service-faqs-block .faq-accordion-item {
    border: 0;
    border-bottom: 1px solid #D8E0E8;
    border-radius: 0;
    background: transparent;
}
.service-detail-page .service-faqs-block .faq-accordion-trigger { padding: 17px 4px; font-size: 0.9rem; }
.service-detail-page .service-faqs-block .faq-accordion-content { padding: 0 4px 17px; border-top: 0; font-size: 0.84rem; }

/* ═══════════════════════════════════════════════════════════
   FLEET PAGE
   ═══════════════════════════════════════════════════════════ */
.fleet-page { background: var(--color-white); }
.fleet-page-hero { padding: 0; }
.fleet-page-hero .breadcrumb-container {
    position: relative;
    z-index: 2;
    padding: 0;
    border: 0;
    background: transparent;
}
.fleet-page-hero .breadcrumbs { padding-top: 20px; }
.fleet-page-hero .breadcrumb-item,
.fleet-page-hero .breadcrumb-item a { color: rgba(255,255,255,0.54); }
.fleet-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.28); }
.fleet-page-hero .breadcrumb-item a:hover,
.fleet-page-hero .breadcrumb-item.active { color: var(--color-accent); }
.fleet-page-hero-content { padding-top: 34px; padding-bottom: 54px; text-align: center; }
.fleet-page-hero .page-hero-title { margin-left: auto; margin-right: auto; }
.fleet-page-hero .page-hero-title span { color: var(--color-accent); }
.fleet-page-hero .page-hero-desc { margin-left: auto; margin-right: auto; }

.fleet-showcase-section { padding: clamp(2.75rem, 5vw, 4rem) 0; }
.fleet-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.fleet-showcase-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
    background-color: var(--color-white);
    padding: clamp(2.25rem, 4vw, 3.5rem) 0;
    border-bottom: 1px solid #E0E6EC;
}
.fleet-showcase-card:first-child { padding-top: 0; }
.fleet-showcase-card:last-child { padding-bottom: 0; border-bottom: 0; }
.fleet-showcase-card:nth-child(even) { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); }
.fleet-showcase-card:nth-child(even) .fleet-image-wrapper { order: 2; }
.fleet-showcase-card:nth-child(even) .fleet-showcase-body { order: 1; }
.fleet-image-wrapper {
    height: clamp(290px, 30vw, 350px);
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-bg-light);
    box-shadow: 0 18px 44px rgba(8,21,43,0.14);
}
.fleet-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.fleet-showcase-card:hover .fleet-showcase-image { transform: scale(1.035); }
.fleet-showcase-body { padding: 0; }
.fleet-category-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    padding-bottom: 7px;
    border-bottom: 2px solid rgba(255,98,0,0.65);
    margin-bottom: 14px;
    display: inline-block;
}
.fleet-showcase-title {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.4vw, 2.05rem);
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1.15;
    margin-bottom: 18px;
}
.fleet-info-row { margin-bottom: 14px; font-size: 0.88rem; }
.fleet-info-row strong { color: var(--color-text-dark); display: block; margin-bottom: 4px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.8px; }
.fleet-info-row p { color: var(--color-text-medium); margin: 0; line-height: 1.6; }
.fleet-features-bullet { list-style: none; padding: 0; }
.fleet-features-bullet li {
    position: relative;
    padding-left: 14px;
    font-size: 0.86rem;
    color: var(--color-text-medium);
    margin-bottom: 4px;
}
.fleet-features-bullet li::before {
    content: '▸';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    top: 2px;
}
.fleet-card-actions {
    display: flex;
    gap: var(--space-md);
    border-top: 1px solid var(--color-bg-gray);
    padding-top: 18px;
    margin-top: 18px;
}
.fleet-mandatory-notice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    background-color: var(--color-bg-light);
    border-radius: 8px;
    padding: 22px 24px;
    border: 1px solid var(--color-bg-gray);
    border-left: 3px solid var(--color-accent);
    text-align: left;
}
.fleet-mandatory-notice h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 0;
    white-space: nowrap;
}
.fleet-mandatory-notice p {
    font-size: 0.88rem;
    color: var(--color-text-medium);
    margin: 0;
    max-width: none;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   AREAS COVERED PAGE
   ═══════════════════════════════════════════════════════════ */
.areas-page { background: var(--color-white); }
.areas-page-hero { padding: 0; }
.areas-page-hero .breadcrumb-container {
    position: relative;
    z-index: 2;
    padding: 0;
    border: 0;
    background: transparent;
}
.areas-page-hero .breadcrumbs { padding-top: 20px; }
.areas-page-hero .breadcrumb-item,
.areas-page-hero .breadcrumb-item a { color: rgba(255,255,255,0.54); }
.areas-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.28); }
.areas-page-hero .breadcrumb-item a:hover,
.areas-page-hero .breadcrumb-item.active { color: var(--color-accent); }
.areas-page-hero-content { padding-top: 34px; padding-bottom: 54px; text-align: center; }
.areas-page-hero .page-hero-title { margin-left: auto; margin-right: auto; }
.areas-page-hero .page-hero-title span { color: var(--color-accent); }
.areas-page-hero .page-hero-desc { margin-left: auto; margin-right: auto; }

.areas-covered-section { padding: clamp(3.5rem, 6vw, 5rem) 0; }
.areas-covered-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    gap: clamp(2.75rem, 5vw, 5rem);
    align-items: center;
}
.areas-coverage-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: .01em;
    color: var(--color-text-dark);
    margin-bottom: 18px;
}
.areas-coverage-info h2 span { display: block; color: var(--color-accent); }
.areas-coverage-info > p { color: var(--color-text-medium); font-size: 0.92rem; line-height: 1.7; margin-bottom: 12px; }
.areas-coverage-info .lead-text { color: var(--color-text-dark); font-size: 1rem; }
.coverage-zones-block { margin-top: 26px; border-top: 1px solid #DFE5EA; }
.coverage-zones-block h3 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-size: 1.12rem;
    padding: 20px 0 4px;
}
.zones-bullet-list { list-style: none; padding: 0; }
.zones-bullet-list li {
    margin: 0;
    padding: 15px 0 15px 20px;
    position: relative;
    font-size: 0.86rem;
    color: var(--color-text-medium);
    line-height: 1.6;
    border-bottom: 1px solid #E3E8ED;
}
.zones-bullet-list li::before {
    content: '▸';
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    top: 3px;
}
.zones-bullet-list strong {
    display: block;
    color: var(--color-text-dark);
    margin-bottom: 2px;
    font-size: 0.9rem;
}
.areas-visual-map {
    height: 500px;
    background-color: #F3F6F9;
    background-image:
        linear-gradient(28deg, transparent 48%, rgba(11,25,48,0.045) 49%, rgba(11,25,48,0.045) 50%, transparent 51%),
        linear-gradient(-32deg, transparent 48%, rgba(11,25,48,0.04) 49%, rgba(11,25,48,0.04) 50%, transparent 51%);
    background-size: 150px 100px, 190px 130px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(8,21,43,0.12);
    border: 1px solid #D7E0E8;
}
.map-graphic-box {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.coverage-grid-line {
    position: absolute;
    border: 1px solid rgba(15,31,53,0.08);
    border-radius: 50%;
}
.grid-line-one { width: 360px; height: 190px; left: 7%; top: 18%; }
.grid-line-two { width: 280px; height: 145px; right: -8%; bottom: 14%; }
.route-line-decor {
    position: absolute;
    z-index: 1;
    height: 4px;
    border-radius: 999px;
    background: var(--color-primary-deep);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.7);
    transform-origin: left center;
}
.line-london { width: 78%; left: -9%; top: 31%; transform: rotate(7deg); }
.line-midlands { width: 68%; left: 39%; top: 53%; transform: rotate(-19deg); background: var(--color-accent); }
.line-south { width: 58%; left: 34%; top: 54%; transform: rotate(69deg); }
.line-west { width: 49%; left: 8%; top: 68%; transform: rotate(-25deg); background: rgba(15,31,53,0.68); }
.map-hub-marker {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 5;
    text-align: center;
    min-width: 190px;
    border: 1px solid #DFE5EA;
}
.pulse-marker {
    width: 10px;
    height: 10px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: block;
    margin: 0 auto var(--space-xs) auto;
    position: relative;
}
.pulse-marker::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: marker-pulse 2s infinite ease-out;
}
@keyframes marker-pulse {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}
.hub-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.7px; }
.hub-label strong { display: inline-block; margin-top: 3px; font-size: 0.82rem; }
.corridor-label,
.coverage-region {
    position: absolute;
    z-index: 3;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(8,21,43,0.08);
}
.corridor-label { padding: 5px 8px; background: var(--color-primary-deep); color: var(--color-white); font-size: 0.66rem; font-weight: 700; }
.corridor-m4 { left: 17%; top: 19%; }
.corridor-m25 { right: 11%; top: 35%; }
.corridor-m3 { left: 24%; bottom: 23%; }
.corridor-m1 { right: 23%; bottom: 18%; }
.coverage-region { padding: 6px 9px; background: rgba(255,255,255,0.88); border: 1px solid #DDE4EA; color: var(--color-text-medium); font-size: 0.65rem; }
.region-london { right: 8%; top: 13%; }
.region-national { right: 33%; bottom: 8%; }
.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(8,21,43,0.92);
    backdrop-filter: blur(8px);
    padding: var(--space-md);
    border-radius: var(--border-radius-md);
    font-size: 11px;
    color: var(--color-white);
    border-left: 3px solid var(--color-accent);
}
.map-legend h4 { margin-bottom: var(--space-sm); font-family: var(--font-heading); }
.legend-list { list-style: none; padding: 0; margin: 0; }
.legend-list li { display: flex; align-items: center; gap: 6px; margin-bottom: var(--space-xs); }
.legend-indicator { width: 8px; height: 8px; border-radius: 50%; }
.dot-green  { background-color: var(--color-success); }
.dot-blue   { background-color: #3b82f6; }
.dot-orange { background-color: var(--color-accent); }

.areas-route-enquiry {
    display: grid;
    grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
    gap: 20px 34px;
    align-items: end;
    margin-top: clamp(3rem, 6vw, 4.5rem);
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    border-radius: 12px;
    border: 1px solid #DCE3EA;
    background: var(--color-bg-light);
    box-shadow: none;
}
.areas-route-enquiry-copy .checker-form-title {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 2.8vw, 2.1rem);
    line-height: 1.12;
    letter-spacing: .01em;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}
.areas-route-enquiry-copy .checker-form-title span { color: var(--color-accent); }
.areas-route-enquiry-copy p { color: var(--color-text-medium); font-size: 0.86rem; line-height: 1.6; margin: 0; }
.areas-route-enquiry .checker-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: end; margin: 0; }
.areas-route-enquiry .form-row-two { gap: 12px; }
.areas-route-enquiry .form-label { color: var(--color-text-dark); }
.areas-route-enquiry .btn { white-space: nowrap; }
.areas-route-enquiry .checker-alt-cta { grid-column: 1 / -1; margin-top: 0; padding-top: 16px; border-top: 1px solid #DCE3EA; color: var(--color-text-medium); text-align: center; }

/* ═══════════════════════════════════════════════════════════
   QUOTE / CONTACT FORM PAGES
   ═══════════════════════════════════════════════════════════ */
.quote-form-section,
.contact-page-section { padding: var(--space-xxl) 0; }
.quote-form-grid,
.contact-page-grid {
    display: grid;
    grid-template-columns: 2.4fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}
.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}
.form-sidebar-info,
.contact-details-column { display: flex; flex-direction: column; gap: 0; }
.sidebar-tel-btn {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-white);
}

/* Quote page — guided commercial enquiry layout */
.quote-page { background: var(--color-white); }
.quote-page-hero { padding: 0; }
.quote-page-hero .breadcrumb-container {
    position: relative;
    z-index: 2;
    padding: 0;
    border: 0;
    background: transparent;
}
.quote-page-hero .breadcrumbs { padding-top: 20px; }
.quote-page-hero .breadcrumb-item,
.quote-page-hero .breadcrumb-item a { color: rgba(255,255,255,0.54); }
.quote-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.28); }
.quote-page-hero .breadcrumb-item a:hover,
.quote-page-hero .breadcrumb-item.active { color: var(--color-accent); }
.quote-page-hero-content {
    padding-top: 34px;
    padding-bottom: 54px;
    text-align: center;
}
.quote-page-hero .page-hero-title { margin-left: auto; margin-right: auto; }
.quote-page-hero .page-hero-title span { color: var(--color-accent); }
.quote-page-hero .page-hero-desc { margin-left: auto; margin-right: auto; }

.quote-page .quote-form-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, #F8FAFC 100%);
}
.quote-page .quote-form-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}
.quote-page .quote-form-card {
    min-width: 0;
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    border: 1px solid #DDE4EA;
    border-radius: 12px;
    box-shadow: 0 20px 48px rgba(8,21,43,0.1);
}
.quote-page .form-fieldset {
    position: relative;
    margin: 0 0 28px;
    padding: 0 0 10px;
    border: 0;
    border-bottom: 1px solid #DDE4EA;
}
.quote-page .fieldset-legend {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    padding: 0 0 13px;
    border: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.18rem, 2vw, 1.4rem);
    line-height: 1.25;
    letter-spacing: .01em;
    color: var(--color-text-dark);
}
.quote-page .fieldset-legend::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 72px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-accent);
}
.quote-page .quote-checkout-form .form-row-two { gap: 16px; }
.quote-page .quote-checkout-form .form-group { margin-bottom: 16px; }
.quote-page .form-label { font-size: 0.78rem; }
.quote-page .form-input,
.quote-page .form-select,
.quote-page .form-textarea { padding: 12px 13px; font-size: 0.88rem; }
.quote-page .form-textarea { min-height: 112px; }
.quote-page .consent-group { margin-bottom: 18px; padding: 15px 16px; }
.quote-page #submit-quote-btn { min-height: 50px; font-size: 0.88rem; }
.quote-page .quote-whatsapp-note {
    max-width: 680px;
    margin: 10px auto 0;
    color: var(--color-text-muted);
    font-size: 0.74rem;
    line-height: 1.55;
    text-align: center;
}

.quote-page .form-sidebar-info {
    position: sticky;
    top: 108px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.quote-page .sidebar-box {
    margin: 0;
    padding: 26px;
    border-radius: 10px;
    border: 1px solid #DDE4EA;
    box-shadow: none;
}
.quote-page .sidebar-box h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.2;
    letter-spacing: .01em;
    margin-bottom: 12px;
}
.quote-page .sidebar-box p { font-size: 0.86rem; line-height: 1.65; margin-bottom: 18px; }
.quote-page .contact-box {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    border-color: var(--color-primary-deep);
    background: var(--color-primary-deep);
}
.quote-page .contact-box::after {
    content: '';
    position: absolute;
    width: 78%;
    height: 3px;
    right: -22%;
    bottom: 18%;
    transform: rotate(-20deg);
    border-radius: 999px;
    background: rgba(255,98,0,0.38);
}
.quote-page .contact-box h3,
.quote-page .contact-box p,
.quote-page .contact-box .btn { position: relative; z-index: 1; }
.quote-page .contact-box h3 { color: var(--color-white); }
.quote-page .contact-box p { color: rgba(255,255,255,0.66); }
.quote-page .contact-box .btn { margin-top: 10px; padding: 0.72rem 0.8rem; font-size: 0.8rem; }
.quote-page .contact-box .sidebar-tel-btn {
    display: flex;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.42);
    background: rgba(255,255,255,0.04);
}
.quote-page .contact-box .sidebar-tel-btn:hover { border-color: var(--color-white); background: rgba(255,255,255,0.1); }
.quote-page .info-box { background: var(--color-white); }
.quote-page .info-box h3 { color: var(--color-text-dark); }
.quote-page .sidebar-checklist { list-style: none; padding: 0; margin: 0; }
.quote-page .sidebar-checklist li {
    position: relative;
    padding: 10px 0 10px 26px;
    border-bottom: 1px solid #E1E7EC;
    color: var(--color-text-medium);
    font-size: 0.84rem;
    line-height: 1.45;
}
.quote-page .sidebar-checklist li:last-child { border-bottom: 0; }
.quote-page .sidebar-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 9px;
    display: grid;
    place-items: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-success);
    font-size: 10px;
    font-weight: 800;
}
.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}
.contact-detail-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    border: 1px solid var(--color-bg-gray);
    transition: box-shadow var(--transition-fast);
}
.contact-detail-card:hover { box-shadow: var(--shadow-sm); }
.card-icon { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.card-text strong {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    display: block;
    margin-bottom: 2px;
    font-size: 1rem;
}
.card-text p {
    font-size: 0.875rem;
    color: var(--color-text-medium);
    margin-bottom: 4px;
    line-height: 1.5;
}
.link-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.link-text:hover { color: var(--color-accent-hover); }

.contact-map-wrapper {
    margin-top: var(--space-xl);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--color-bg-gray);
    box-shadow: var(--shadow-sm);
}
.map-embed-placeholder {
    background: var(--grad-card);
    color: var(--color-white);
    padding: var(--space-xl);
    text-align: center;
}
.map-embed-placeholder h4 {
    font-family: var(--font-heading);
    margin-bottom: var(--space-sm);
}
.map-depot-coord {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-lg);
}

/* Contact page — compact two-column enquiry system */
.contact-page { background: var(--color-white); }
.contact-page-hero { padding: 0; }
.contact-page-hero .breadcrumb-container {
    position: relative;
    z-index: 2;
    padding: 0;
    border: 0;
    background: transparent;
}
.contact-page-hero .breadcrumbs { padding-top: 20px; }
.contact-page-hero .breadcrumb-item,
.contact-page-hero .breadcrumb-item a { color: rgba(255,255,255,0.54); }
.contact-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.28); }
.contact-page-hero .breadcrumb-item a:hover,
.contact-page-hero .breadcrumb-item.active { color: var(--color-accent); }
.contact-page-hero-content {
    padding-top: 34px;
    padding-bottom: 54px;
    text-align: center;
}
.contact-page-hero .page-hero-title { margin-left: auto; margin-right: auto; }
.contact-page-hero .page-hero-title span { color: var(--color-accent); }
.contact-page-hero .page-hero-desc { margin-left: auto; margin-right: auto; }

.contact-page .contact-page-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, #F8FAFC 100%);
}
.contact-page .contact-page-grid {
    grid-template-columns: minmax(390px, 0.88fr) minmax(520px, 1.12fr);
    gap: clamp(2.5rem, 5vw, 4.75rem);
    align-items: start;
}
.contact-section-title {
    max-width: 470px;
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: .01em;
    color: var(--color-text-dark);
    margin-bottom: 14px;
}
.contact-section-title span { display: block; color: var(--color-accent); }
.contact-page .contact-details-column > .lead-text {
    max-width: 500px;
    margin: 0;
    color: var(--color-text-medium);
    font-size: 0.92rem;
    line-height: 1.7;
}
.contact-page .contact-cards-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}
.contact-page .contact-detail-card {
    min-width: 0;
    min-height: 132px;
    padding: 17px;
    gap: 10px;
    align-items: flex-start;
    border: 1px solid #DDE4EA;
    border-radius: 10px;
    background: rgba(255,255,255,0.88);
    box-shadow: none;
}
.contact-page .contact-detail-card:hover {
    border-color: rgba(255,98,0,0.35);
    box-shadow: 0 12px 26px rgba(8,21,43,0.07);
    transform: translateY(-2px);
}
.contact-page .card-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    margin: 0;
    color: var(--color-accent);
    border-radius: 50%;
    background: rgba(255,98,0,0.09);
}
.contact-page .card-icon svg { width: 16px; height: 16px; }
.contact-page .card-text { min-width: 0; }
.contact-page .card-text strong {
    font-size: 0.9rem;
    line-height: 1.35;
    margin-bottom: 5px;
}
.contact-page .card-text p { font-size: 0.8rem; overflow-wrap: anywhere; }
.contact-page .card-links { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.contact-page .link-text { display: inline-flex; line-height: 1.4; }

.contact-page .contact-map-wrapper {
    position: relative;
    margin-top: 14px;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
}
.contact-page .map-embed-placeholder {
    position: relative;
    min-height: 176px;
    padding: 28px;
    overflow: hidden;
    text-align: left;
    background: var(--color-primary-deep);
}
.contact-page .map-embed-placeholder::before,
.contact-page .map-embed-placeholder::after {
    content: '';
    position: absolute;
    width: 72%;
    height: 3px;
    right: -18%;
    border-radius: 999px;
    transform: rotate(-18deg);
    background: rgba(255,255,255,0.12);
}
.contact-page .map-embed-placeholder::before { top: 34%; }
.contact-page .map-embed-placeholder::after { top: 62%; background: rgba(255,98,0,0.42); }
.contact-page .map-embed-placeholder h4,
.contact-page .map-embed-placeholder p,
.contact-page .map-embed-placeholder .btn { position: relative; z-index: 1; }
.contact-page .map-embed-placeholder h4 {
    font-size: 1.35rem;
    letter-spacing: .01em;
    margin-bottom: 6px;
}
.contact-page .map-depot-coord { max-width: 300px; margin-bottom: 18px; color: rgba(255,255,255,0.62); }
.contact-page .map-embed-placeholder .btn { padding: 0.68rem 1rem; font-size: 0.78rem; }

.contact-page .contact-form-column { min-width: 0; }
.contact-page .form-container-box {
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    border: 1px solid #DDE4EA;
    border-radius: 12px;
    box-shadow: 0 20px 48px rgba(8,21,43,0.1);
}
.contact-page .form-container-box > h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3vw, 2.25rem);
    line-height: 1.12;
    letter-spacing: .01em;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}
.contact-page .form-container-box > h2 span { color: var(--color-accent); }
.contact-page .form-container-box > p {
    max-width: 520px;
    margin-bottom: 26px;
    color: var(--color-text-medium);
    font-size: 0.9rem;
    line-height: 1.65;
}
.contact-page .quote-checkout-form .form-row-two { gap: 14px; }
.contact-page .quote-checkout-form .form-group { margin-bottom: 16px; }
.contact-page .form-label { font-size: 0.78rem; }
.contact-page .form-input,
.contact-page .form-select,
.contact-page .form-textarea { padding: 12px 13px; font-size: 0.88rem; }
.contact-page .form-textarea { min-height: 118px; }
.contact-page .consent-group { padding: 14px 16px; }
.contact-page #submit-contact-btn { min-height: 48px; font-size: 0.86rem; }
.contact-page .contact-whatsapp-note {
    max-width: 520px;
    margin: 10px auto 0;
    color: var(--color-text-muted);
    font-size: 0.74rem;
    line-height: 1.55;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   LEGAL / POLICY PAGES
   ═══════════════════════════════════════════════════════════ */
.legal-content-section { padding: var(--space-xxl) 0; }
.legal-container { max-width: 800px; }
.legal-text-block h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: var(--space-xl) 0 var(--space-md) 0;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--color-bg-gray);
}
.legal-text-block p,
.legal-text-block ul {
    color: var(--color-text-medium);
    margin-bottom: var(--space-md);
    line-height: 1.75;
    font-size: 0.95rem;
}
.legal-text-block ul { padding-left: 20px; }
.legal-text-block li { margin-bottom: 6px; }
.legal-table { width: 100%; border-collapse: collapse; margin: var(--space-lg) 0; }
.legal-table th,
.legal-table td {
    border: 1px solid var(--color-bg-gray-dark);
    padding: 10px 14px;
    text-align: left;
    font-size: 0.875rem;
}
.legal-table th {
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    font-weight: 700;
}
.legal-table td { color: var(--color-text-medium); }

/* Privacy policy — focused legal reading layout */
.privacy-page { background: var(--color-white); }
.privacy-page-hero { padding: 0; }
.privacy-page-hero .breadcrumb-container {
    position: relative;
    z-index: 2;
    padding: 0;
    border: 0;
    background: transparent;
}
.privacy-page-hero .breadcrumbs { padding-top: 20px; }
.privacy-page-hero .breadcrumb-item,
.privacy-page-hero .breadcrumb-item a { color: rgba(255,255,255,0.54); }
.privacy-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.28); }
.privacy-page-hero .breadcrumb-item a:hover,
.privacy-page-hero .breadcrumb-item.active { color: var(--color-accent); }
.privacy-page-hero-content {
    padding-top: 34px;
    padding-bottom: 54px;
    text-align: center;
}
.privacy-page-hero .page-hero-title { margin-left: auto; margin-right: auto; }
.privacy-page-hero .page-hero-title span { color: var(--color-accent); }
.privacy-page-hero .page-hero-desc { margin-left: auto; margin-right: auto; }

.privacy-page .legal-content-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, #F8FAFC 100%);
}
.privacy-page .legal-container { max-width: 1180px; }
.privacy-legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
}
.privacy-contents {
    position: sticky;
    top: 108px;
    padding: 6px 0 6px 20px;
    border-left: 2px solid #DDE4EA;
}
.privacy-contents h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.2;
    letter-spacing: .01em;
    color: var(--color-text-dark);
    margin-bottom: 14px;
}
.privacy-contents nav { display: flex; flex-direction: column; }
.privacy-contents a {
    position: relative;
    padding: 8px 0;
    color: var(--color-text-medium);
    font-size: 0.8rem;
    line-height: 1.35;
    text-decoration: none;
    transition: color var(--transition-fast), transform var(--transition-fast);
}
.privacy-contents a::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 50%;
    width: 2px;
    height: 0;
    transform: translateY(-50%);
    background: var(--color-accent);
    transition: height var(--transition-fast);
}
.privacy-contents a:hover,
.privacy-contents a:focus-visible { color: var(--color-accent); transform: translateX(3px); }
.privacy-contents a:hover::before,
.privacy-contents a:focus-visible::before { height: 24px; }

.privacy-document {
    min-width: 0;
    padding: clamp(2rem, 4vw, 3.25rem);
    border: 1px solid #DDE4EA;
    border-radius: 12px;
    background: var(--color-white);
    box-shadow: 0 18px 42px rgba(8,21,43,0.08);
}
.privacy-document h2 {
    position: relative;
    scroll-margin-top: 112px;
    margin: 38px 0 18px;
    padding: 0 0 12px;
    border-bottom: 1px solid #DDE4EA;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    line-height: 1.25;
    letter-spacing: .01em;
    color: var(--color-text-dark);
}
.privacy-document h2:first-child { margin-top: 0; }
.privacy-document h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 68px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-accent);
}
.privacy-document p,
.privacy-document ul {
    color: var(--color-text-medium);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.privacy-document ul { list-style: none; padding: 0; }
.privacy-document li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 9px;
}
.privacy-document li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent);
}
.privacy-document strong { color: var(--color-text-dark); }
.privacy-document a { color: var(--color-accent); font-weight: 700; text-underline-offset: 3px; }
.privacy-document code {
    padding: 2px 6px;
    border-radius: 4px;
    background: var(--color-bg-light);
    color: var(--color-text-dark);
    font-size: 0.84em;
}
.privacy-contact-address {
    margin-top: 18px;
    padding: 22px 24px;
    border-left: 3px solid var(--color-accent);
    border-radius: 8px;
    background: var(--color-primary-deep);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.75;
    font-style: normal;
}
.privacy-contact-address strong { color: var(--color-white); }
.privacy-contact-address a { color: var(--color-accent); }

/* Cookie policy — shares the focused legal reading system */
.cookie-page { background: var(--color-white); }
.cookie-page .legal-content-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, #F8FAFC 100%);
}
.cookie-page .legal-container { max-width: 1180px; }
.legal-table-scroll {
    width: 100%;
    margin: 22px 0 30px;
    overflow-x: auto;
    border: 1px solid #DDE4EA;
    border-radius: 9px;
    background: var(--color-white);
    -webkit-overflow-scrolling: touch;
}
.legal-table-scroll:focus-visible {
    outline: 3px solid var(--color-accent-glow);
    outline-offset: 3px;
}
.cookie-document .legal-table {
    min-width: 690px;
    margin: 0;
    border: 0;
}
.cookie-document .legal-table th,
.cookie-document .legal-table td {
    padding: 14px 16px;
    border: 0;
    border-right: 1px solid #DDE4EA;
    border-bottom: 1px solid #DDE4EA;
    vertical-align: top;
    font-size: 0.82rem;
    line-height: 1.55;
}
.cookie-document .legal-table th:last-child,
.cookie-document .legal-table td:last-child { border-right: 0; }
.cookie-document .legal-table tbody tr:last-child td { border-bottom: 0; }
.cookie-document .legal-table th {
    background: var(--color-primary-deep);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    letter-spacing: .01em;
}
.cookie-document .legal-table td:first-child { white-space: nowrap; }
.cookie-document .legal-table code {
    color: var(--color-accent);
    background: rgba(255,98,0,0.07);
    font-weight: 700;
}

/* Terms and conditions — shares the focused legal reading system */
.terms-page { background: var(--color-white); }
.terms-page .legal-content-section {
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, #F8FAFC 100%);
}
.terms-page .legal-container { max-width: 1180px; }
