/* ================================================================
   RG BASSETT & SONS — Main Stylesheet
   Aesthetic: Heritage Industrial — authoritative, refined, British.
   Fonts: Segoe UI (headings) + Jost (body)
   Colours: #000066 navy · #C8102E crimson · #25764A green
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
    --navy:          #000066;
    --navy-deep:     #00003C;
    --navy-mid:      #0000AA;
    --orange:        #C8102E;
    --orange-dark:   #A00024;
    --orange-pale:   #FCEAED;
    --green:         #25764A;
    --green-dark:    #1A5635;
    --green-pale:    #E8F5EE;
    --off-white:     #F6F4EF;
    --white:         #FFFFFF;
    --text-dark:     #18152E;
    --text:          #3D3958;
    --text-light:    #7A7590;
    --border:        #DDD9E8;
    --shadow-xs:     0 2px 8px rgba(0,0,60,0.07), 0 1px 2px rgba(0,0,60,0.04);
    --shadow-sm:     0 4px 16px rgba(0,0,60,0.10), 0 1px 4px rgba(0,0,60,0.06);
    --shadow:        0 8px 32px rgba(0,0,60,0.13), 0 2px 8px rgba(0,0,60,0.07);
    --shadow-lg:     0 16px 56px rgba(0,0,60,0.18), 0 4px 16px rgba(0,0,60,0.10);
    --r:             8px;
    --r-lg:          14px;

}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography helpers ── */
h1, h2, h3, h4, h5 {
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* ── Announcement Banner ── */
.announcement-banner {
    background: var(--navy-deep);
    border-bottom: 2px solid var(--orange);
    overflow: hidden;
    padding: 5px 0;
}
.banner-track {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: banner-scroll 40s linear infinite;
    will-change: transform;
}
.announcement-banner:hover .banner-track { animation-play-state: paused; }
.banner-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.banner-item strong { color: #fff; font-weight: 700; }
.banner-sep { color: var(--orange); opacity: 0.45; font-size: 0.45rem; }
.banner-sep-img { height: 13px; width: auto; vertical-align: middle; opacity: 0.55; }
.banner-logo-img { height: 15px; width: auto; vertical-align: middle; }
@keyframes banner-scroll {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100vw); }
}

/* ── Navigation ── */
.navbar {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 2px 24px rgba(0,0,50,0.35);
}
.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    height: 66px;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-name {
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0;
}
.logo-img-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.logo-img-bg { position: absolute; height: 43px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; z-index: 1; pointer-events: none; }
.logo-img { height: 38px; display: block; position: relative; z-index: 2; }
@media (max-width: 480px) { .logo-img { height: 30px; } .logo-img-bg { height: 37px; } }

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.15rem;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin-left: auto;
}
.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.75);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    white-space: nowrap;
    padding: 0.4rem 0.7rem;
    border-radius: var(--r);
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }

.btn-contact {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
    font-weight: 600 !important;
    transition: background 0.2s, border-color 0.2s !important;
}
.btn-contact:hover {
    background: rgba(255,255,255,0.18) !important;
    border-color: rgba(255,255,255,0.4) !important;
}

.btn-portal,
.btn-portal-emp {
    background: rgba(255,255,255,0.1);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.22);
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 0.4rem 0.7rem;
    border-radius: var(--r);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
}
.btn-portal:hover,
.btn-portal-emp:hover {
    background: rgba(255,255,255,0.18) !important;
    border-color: rgba(255,255,255,0.4) !important;
    color: #fff !important;
}

.nav-phone {
    display: flex !important;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    white-space: nowrap;
    text-decoration: none !important;
    padding: 0.4rem 0.6rem;
    border-radius: var(--r);
    transition: color 0.2s;
}
.nav-phone:hover { color: #fff !important; }
.nav-phone svg { width: 13px; height: 13px; fill: var(--orange); flex-shrink: 0; }

/* ── Hamburger Button ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
    transform-origin: center;
}
.navbar.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.nav-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Nav Dropdowns ── */
.nav-item { position: relative; }
.nav-parent {
    display: flex !important;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    user-select: none;
}
.nav-chevron {
    width: 11px; height: 11px;
    stroke: currentColor; fill: none;
    transition: transform 0.22s ease;
    flex-shrink: 0;
    opacity: 0.65;
}
.nav-item.is-open .nav-chevron,
.nav-item:hover .nav-chevron { transform: rotate(180deg); opacity: 1; }

.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}
.nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--off-white);
    border: 1px solid var(--border);
    border-top: 2px solid var(--orange);
    border-radius: var(--r-lg);
    padding: 0.5rem;
    min-width: 260px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.22s ease;
    box-shadow: 0 12px 40px rgba(0,0,40,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    z-index: 200;
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px; height: 6px;
    background: var(--orange);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.nav-item:hover .nav-dropdown,
.nav-item.is-open .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.72rem 0.85rem;
    border-radius: var(--r);
    text-decoration: none;
    color: var(--navy) !important;
    border-left: 2px solid transparent;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.dropdown-item:hover {
    background: rgba(0,0,60,0.06);
    border-left-color: var(--orange);
    color: var(--navy) !important;
}
.dropdown-icon {
    width: 34px; height: 34px;
    background: rgba(200,16,46,0.12);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s;
}
.dropdown-item:hover .dropdown-icon { background: rgba(200,16,46,0.22); }
.dropdown-icon svg {
    width: 15px; height: 15px;
    stroke: var(--orange); fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.dropdown-label { display: flex; flex-direction: column; gap: 0.1rem; }
.dropdown-label strong {
    font-size: 0.875rem; font-weight: 600;
    color: var(--navy); font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0; line-height: 1.3;
}
.dropdown-label em {
    font-size: 0.72rem; font-style: normal;
    color: var(--text-light);
    font-family: 'Jost', sans-serif; line-height: 1.4;
}

/* ── Hero ── */
.hero {
    position: relative;
    color: #fff;
    padding: 9rem 24px 8rem;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: var(--navy);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/lorry1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    opacity: 0.28;
    pointer-events: none;
    z-index: 0;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg,
        rgba(0,0,60,0.82) 30%,
        rgba(0,0,70,0.45) 65%,
        rgba(0,0,40,0.05) 100%);
    pointer-events: none;
    z-index: 1;
}
/* Diagonal orange stripe accent */
.hero-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--orange) 0%, var(--orange) 40%, transparent 100%);
    z-index: 3;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 0 0 max(0px, calc((100vw - 1200px) / 2 + 24px - 6rem));
}
.hero-content h2 {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    display: inline-block;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 0.25rem;
    margin-bottom: 1.1rem;
    opacity: 0;
    animation: slideUp 0.55s ease forwards;
    animation-delay: 0.1s;
}
.hero-content h1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.0;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: slideUp 0.55s ease forwards;
    animation-delay: 0.25s;
}
.hero-content > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
    opacity: 0;
    animation: slideUp 0.55s ease forwards;
    animation-delay: 0.4s;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: slideUp 0.55s ease forwards;
    animation-delay: 0.55s;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
.hero-phone {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 10;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.hero-phone:hover { color: #fff; text-decoration: underline; }

/* ── Buttons ── */
.btn {
    padding: 0.85rem 2.25rem;
    border: none;
    border-radius: var(--r);
    font-family: 'Jost', sans-serif;
    font-size: 0.925rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.03em;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
    border: 2px solid transparent;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200,16,46,0.42);
}
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.85);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-tertiary {
    background: #fff;
    color: var(--navy);
    border: 2px solid #fff;
}
.btn-tertiary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-large { padding: 0.95rem 2.5rem; font-size: 1rem; }
.btn-outline-navy {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
}

/* ── Section chrome ── */
.sec-heading {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}
.sec-heading::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: var(--orange);
    margin-top: 0.8rem;
    border-radius: 2px;
}
.sec-heading.center { text-align: center; }
.sec-heading.center::after { margin: 0.8rem auto 0; }
.sec-heading.white { color: #fff; }
.sec-heading.white::after { background: var(--orange); }

/* ── Stats Strip ── */
.stats-strip {
    background: var(--navy);
    padding: 1.75rem 1rem;
}
.stats-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-val {
    font-family: 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.35rem;
}
.stat-lbl {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* ── About Section ── */
.about {
    padding: 7rem 24px;
    background: var(--off-white);
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/oldp1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
}
.about .container { position: relative; z-index: 1; }
.about h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}
.about h2::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: var(--orange);
    margin-top: 0.75rem;
    border-radius: 2px;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}
.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}
.about-text .btn { align-self: flex-start; margin-top: 0.5rem; }
.about .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.65;
    margin: 0;
}
.history-intro {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.85;
    max-width: 100%;
    text-align: left;
}

/* ── Stats ── */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 1.25rem;
    margin-top: 3.5rem;
}
.stat-item {
    background: var(--navy);
    color: #fff;
    padding: 2.25rem 2rem;
    border-radius: var(--r-lg);
    border-bottom: 3px solid var(--orange);
    position: relative;
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.28s cubic-bezier(0.25,0.46,0.45,0.94);
}
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0,0,60,0.25), 0 0 0 1px rgba(200,16,46,0.15);
}
.stat-item::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(200,16,46,0.08);
}
.stat-item h3 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.03em;
    line-height: 1;
}
.stat-item p { color: rgba(255,255,255,0.75); font-weight: 500; font-size: 0.875rem; }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--left  { transform: translateX(-48px); }
.reveal--right { transform: translateX(48px); }
.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}
.team-card.reveal {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* ── Lorry Frame ── */
.lorry-slideshow { width: 100%; max-width: 100%; }
.lorry-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #f0f0f0;
    border: 2px solid rgba(0,0,102,0.2);
}
.lorry-single {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Service icon boxes ── */
.service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange-pale);
    border-radius: 10px;
    color: var(--orange);
    flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon-img { width: 28px; height: 28px; object-fit: contain; }

/* ── Services Section ── */
.services {
    padding: 7rem 24px;
    background: var(--white);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/hist5.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
}
.services .container { position: relative; z-index: 1; }

.services h2, .warehousing h2, .training-section h2,
.tracking h2, .support h2, .credentials h2, .news h2, .cta h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.6rem;
    letter-spacing: -0.025em;
}
.services h2::after, .warehousing h2::after, .training-section h2::after,
.tracking h2::after, .support h2::after, .credentials h2::after,
.news h2::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: var(--orange);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}
.cta h2 { color: #fff; }

.services > .container > p,
.warehousing > .container > p,
.training-section .lead,
.tracking .lead,
.support .lead,
.credentials > .container > p,
.news .lead {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.services-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
}
.services-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}
.services-text h2 {
    text-align: left;
}
.services-text h2::after {
    margin: 0.75rem 0 0;
}
.services-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.65;
    margin: 0;
}
.services-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.85;
}
.services-bullets li {
    padding-left: 1.1rem;
    position: relative;
}
.services-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}
.services-text .btn { align-self: flex-start; margin-top: 0.5rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--orange);
    border-radius: var(--r-lg);
    padding: 2.5rem 2.25rem;
    transition: transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.28s cubic-bezier(0.25,0.46,0.45,0.94), border-left-color 0.2s;
    box-shadow: var(--shadow-xs);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow), 0 0 0 1px rgba(200,16,46,0.08);
    border-left-color: var(--orange-dark);
}
.service-card h3 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}
.service-card p { color: var(--text); line-height: 1.7; font-size: 0.95rem; }

/* ── Warehousing Section ── */
.warehousing {
    padding: 7rem 24px;
    background: var(--off-white);
    position: relative;
}
.warehousing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/Warehousing.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}
.warehousing .container { position: relative; z-index: 1; }
.warehousing-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}
.warehousing-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}
.warehousing-text h2 {
    text-align: left;
}
.warehousing-text h2::after {
    margin: 0.75rem 0 0;
}
.warehousing-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.65;
    margin: 0;
}
.warehousing-text .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ── Training Section (homepage) ── */
.training-section {
    padding: 7rem 24px 3rem;
    background: var(--white);
    position: relative;
}
.training-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/Photo39.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    pointer-events: none;
}
.training-section .container { position: relative; z-index: 1; }
.training-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}
.training-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}
.training-text h2 {
    text-align: left;
}
.training-text h2::after {
    margin: 0.75rem 0 0;
}
.training-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.65;
    margin: 0;
    text-align: left;
}
.training-text .fb-section { width: 100%; }
.training-text .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ── Testimonials ── */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 16px rgba(0,0,60,0.08), 0 1px 4px rgba(0,0,60,0.04);
    border: 1px solid var(--border);
    border-top: 3px solid var(--orange);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,60,0.14), 0 4px 12px rgba(0,0,60,0.07);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 3.5rem;
    color: var(--orange);
    opacity: 0.12;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}
.testimonial-stars { color: var(--orange); font-size: 0.85rem; letter-spacing: 2px; }
.testimonial-quote {
    font-size: 0.83rem;
    color: var(--text);
    line-height: 1.65;
    font-style: italic;
    flex: 1;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--border);
}
.testimonial-name { font-weight: 700; font-size: 0.8rem; color: var(--navy); }
.testimonial-role { font-size: 0.75rem; color: var(--text-light); }

/* ── Facebook Section ── */
.fb-section {
    margin: 2rem auto 0;
    max-width: 460px;
    background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    border-radius: var(--r-lg);
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(24,119,242,0.2);
}
.fb-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
.fb-section-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #1877f2;
    font-weight: 900;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
}
.fb-section-header h3 { font-size: 1.2rem; font-weight: 700; margin: 0; color: #fff; }
.fb-section-header p { font-size: 0.88rem; opacity: 0.85; margin: 0; color: #fff; }
.fb-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #fff;
    color: #1877f2;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.55rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s;
}
.fb-follow-btn:hover { background: #e7f0fd; }
.training-fb-wrap {
    display: flex;
    justify-content: center;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ── Logo Scrolling Banner ── */
.logo-banner {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
    overflow: hidden;
}
.logo-track-wrapper { overflow: hidden; width: 100%; }
.logo-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: scroll-logos 25s linear infinite;
}
.logo-track img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(25%) opacity(0.72);
    transition: filter 0.3s ease, transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.logo-track img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.08); }
@keyframes scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Tracking Section ── */
.tracking {
    padding: 7rem 24px;
    background: var(--navy-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.tracking::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,16,46,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.tracking h2 { color: #fff !important; }
.tracking h2::after { background: var(--orange); }
.tracking h3 {
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.tracking .lead { color: rgba(255,255,255,0.68) !important; }
.tracking-hub {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0;
    margin-top: 3rem;
    position: relative;
}
.hub-left .hub-feature { text-align: right; position: relative; padding-right: 1.5rem; }
.hub-right .hub-feature { text-align: left; position: relative; padding-left: 1.5rem; }
.hub-feature h4 {
    font-family: 'Segoe UI', sans-serif;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}
.hub-feature p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.55; }
.hub-left .hub-feature::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 1.5rem;
    height: 1px;
    background: var(--orange);
    opacity: 0.4;
    transform: translateY(-50%);
}
.hub-right .hub-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.5rem;
    height: 1px;
    background: var(--orange);
    opacity: 0.4;
    transform: translateY(-50%);
}
.hub-image-wrap { padding: 0 1.5rem; position: relative; }
.hub-image-wrap::before, .hub-image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(200,16,46,0.3) 20%, rgba(200,16,46,0.3) 80%, transparent);
}
.hub-image-wrap::before { left: 0; }
.hub-image-wrap::after  { right: 0; }
.hub-image {
    display: block;
    max-width: 420px;
    width: 100%;
    border-radius: var(--r-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,255,255,0.08);
}
.tracking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.feature {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid var(--orange);
    padding: 1.75rem;
    border-radius: var(--r);
    transition: background 0.25s ease, transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.28s ease;
}
.feature:hover {
    background: rgba(255,255,255,0.09);
    transform: translateX(5px);
    box-shadow: -3px 0 0 var(--orange), 0 4px 20px rgba(0,0,0,0.2);
}
.feature h4 { font-family: 'Segoe UI', sans-serif; color: #fff; margin-bottom: 0.4rem; font-size: 0.975rem; font-weight: 700; }
.feature p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── Support Section ── */
.support {
    padding: 7rem 24px;
    background: var(--off-white);
}
.support-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.support-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}
.support-text h2 {
    text-align: left;
}
.support-text h2::after {
    margin: 0.75rem 0 0;
}
.support-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.65;
    margin: 0;
    text-align: left;
}

/* ── Credentials Section ── */
.credentials { padding: 7rem 24px; background: var(--white); }
.credentials-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}
.credential-item {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--r-lg);
    text-align: center;
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--border);
    transition: transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.28s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.2s;
}
.credential-item:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow), 0 0 0 1px rgba(0,0,102,0.08);
    transform: translateY(-5px);
}
.credential-logo {
    background: var(--off-white);
    border-radius: var(--r);
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    border: 2px solid var(--navy);
}
.credential-logo img { width: 120px; height: 70px; object-fit: contain; }
.credential-logo img[alt="RHA"] { width: 70px; height: 50px; }
.credential-logo img[alt="TA"] { margin-top: 10px; }
.credential-logo img[alt="UKWA"] { width: 80px; height: 55px; margin-top: 10px; }
.credential-logo img[alt="ISO9001"] { width: 75px; height: 55px; }
.credential-item p { color: var(--text); font-weight: 600; font-size: 0.85rem; }

/* ── News Section ── */
.news { padding: 7rem 24px; background: var(--off-white); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.news-card {
    background: #fff;
    border-radius: 8px;
    padding: 2.5rem 2.25rem;
    box-shadow: 0 4px 16px rgba(0,0,60,0.08), 0 1px 4px rgba(0,0,60,0.04);
    border: 1px solid var(--border);
    border-top: 3px solid var(--orange);
    transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.3s ease;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,60,0.16), 0 4px 16px rgba(0,0,60,0.08), 0 0 0 1px rgba(200,16,46,0.08);
}
.news-date {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.news-card h3 {
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
}
.news-card p { color: var(--text); margin-bottom: 1.25rem; font-size: 0.9rem; line-height: 1.7; }
.read-more {
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 1px;
}
.read-more:hover { color: var(--orange); border-bottom-color: var(--orange); }

/* ── CTA Section ── */
.cta {
    background: var(--navy-deep);
    color: #fff;
    padding: 8rem 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,16,46,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,118,74,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta h2 {
    font-family: 'Segoe UI', sans-serif;
    color: #fff !important;
    margin-bottom: 0.75rem;
    font-size: 2.8rem;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 1;
}
.cta p {
    font-size: 1.1rem;
    margin: 0 auto 2.5rem;
    max-width: 500px;
    color: rgba(255,255,255,0.78);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.cta .btn { position: relative; z-index: 1; }

/* ── Footer ── */
.footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.75);
    padding: 6rem 24px 3rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
    gap: 2.5rem;
    margin-bottom: 0;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-section h4 {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.75);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--orange);
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-section a:hover { color: #fff; }
.footer-section p { color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; font-size: 0.875rem; line-height: 1.65; }
.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--r);
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.8rem;
    font-weight: 600;
    transition: border-color 0.2s, color 0.2s, transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.25s ease;
}
.social-links a:hover { border-color: var(--orange); color: #fff !important; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.footer-bottom {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    line-height: 1.8;
}

/* ── Photo Banner ── */
.photo-banner { width: 100%; line-height: 0; text-align: center; }
.photo-banner img { width: 100%; height: auto; display: block; }

/* ── Hero lorry / placeholder ── */
.hero-lorry-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    border-radius: var(--r-lg);
    margin-top: 6rem;
    margin-left: auto;
    transform: translateX(-1rem);
}
.placeholder-image {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero { padding: 4.5rem 20px 4rem; }
    .hero-content { width: 100%; margin: 0; text-align: center; }
    .hero-content h1 { font-size: 3.25rem; }
    .hero-title { white-space: normal; font-size: 2rem; }
    .hero-content > p { font-size: 1rem; }
    .hero-buttons { flex-direction: column; gap: 0.75rem; align-items: center; }

    .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about { text-align: center; }
    .about h2::after { margin: 0.75rem auto 0; }
    .about-text { align-items: center; }
    .about-text .btn { align-self: center; }
    .history-intro { text-align: center; }

    .services-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-text { align-items: center; text-align: center; }
    .services-text h2::after { margin: 0.75rem auto 0; }
    .services-text .btn { align-self: center; }
    .services-bullets { text-align: left; }

    .warehousing-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .warehousing-text { align-items: center; text-align: center; }
    .warehousing-text h2::after { margin: 0.75rem auto 0; }
    .warehousing-text .btn { align-self: center; }

    .training-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .training-text { align-items: center; text-align: center; }
    .training-text h2::after { margin: 0.75rem auto 0; }
    .training-text .btn { align-self: center; }
    .services-bullets { text-align: left; }

    .support-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .support-text { align-items: center; text-align: center; }
    .support-text h2::after { margin: 0.75rem auto 0; }
    .support-text .lead { text-align: center; }

    .services h2, .about h2, .warehousing h2, .tracking h2,
    .support h2, .credentials h2, .news h2, .cta h2 { font-size: 1.9rem; }
    .cta h2 { font-size: 2rem; }

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

    .services-grid, .support-grid, .credentials-display,
    .tracking-features, .news-grid { grid-template-columns: 1fr; }

    .tracking-hub { grid-template-columns: 1fr; }
    .hub-left .hub-feature, .hub-right .hub-feature { text-align: center; padding: 0; }
    .hub-left .hub-feature::after, .hub-right .hub-feature::before { display: none; }
    .hub-image-wrap { order: -1; text-align: center; margin-bottom: 2rem; padding: 0; }
    .hub-image-wrap::before, .hub-image-wrap::after { display: none; }
    .hub-image { max-width: 320px; margin: 0 auto; }

    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }

    /* ── Mobile Nav ── */
    .hamburger { display: flex; }
    .nav-container { flex-wrap: wrap; height: auto; min-height: 66px; }
    .nav-links, .nav-phone, .btn-portal, .btn-portal-emp { display: none !important; }
    .navbar.nav-open .nav-container { padding-bottom: 1rem; }
    .navbar.nav-open .nav-phone {
        display: flex !important;
        justify-content: center;
        width: 100%;
        padding: 0.5rem 0.75rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: 0.25rem;
    }
    .navbar.nav-open .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
        margin-left: 0;
        border-top: 1px solid rgba(255,255,255,0.12);
        padding-top: 0.5rem;
    }
    .navbar.nav-open .nav-links .nav-item { width: 100%; }
    .navbar.nav-open .nav-links > li > a {
        display: block;
        width: 100%;
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
        box-sizing: border-box;
        text-align: center;
    }
    .navbar.nav-open .nav-item .nav-dropdown {
        display: none;
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        border: 1px solid rgba(255,255,255,0.15);
        border-left: 2px solid var(--orange);
        border-top: 2px solid var(--orange);
        border-radius: 0 var(--r) var(--r) 0;
        min-width: unset;
        background: rgba(0,0,60,0.3);
        margin: 0.15rem 0 0.5rem 1rem;
        padding: 0.35rem 0.5rem;
    }
    .navbar.nav-open .nav-item .nav-dropdown::before { display: none; }
    .navbar.nav-open .nav-item.is-open .nav-dropdown { display: block; }
    .navbar.nav-open .dropdown-item { color: rgba(255,255,255,0.82) !important; }
    .navbar.nav-open .dropdown-item:hover { background: rgba(255,255,255,0.08); border-left-color: var(--orange); color: #fff !important; }
    .navbar.nav-open .dropdown-label strong { color: rgba(255,255,255,0.9); }
    .navbar.nav-open .dropdown-label em { color: rgba(255,255,255,0.55); }
    .navbar.nav-open .dropdown-icon { background: rgba(255,255,255,0.1); }
    .navbar.nav-open .dropdown-icon svg { stroke: rgba(255,255,255,0.65); }
    .navbar.nav-open .nav-phone {
        display: flex !important;
        width: 100%;
        padding: 0.65rem 0.75rem;
        margin-left: 0;
        border-top: 1px solid rgba(255,255,255,0.12);
        margin-top: 0.25rem;
        font-size: 0.9rem !important;
    }
    .navbar.nav-open .btn-portal,
    .navbar.nav-open .btn-portal-emp {
        display: block !important;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        margin-top: 0.4rem;
        padding: 0.6rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero { padding: 3.5rem 16px 3rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-title { font-size: 1.75rem; white-space: normal; }
    .hero-title-break { display: block; }
    .logo-name { font-size: 1.05rem; }
    .stats { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
}

/* ── Cookie Banner ── */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy-deep);
    color: #fff;
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 -4px 24px rgba(0,0,60,0.25);
    flex-wrap: wrap;
}
#cookie-banner p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
    flex: 1;
    min-width: 200px;
}
#cookie-banner p a {
    color: var(--orange);
    text-decoration: underline;
}
.cookie-banner-btns {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
#cookie-accept {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
#cookie-accept:hover { background: var(--orange-dark); }
#cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.35);
    padding: 0.55rem 1.3rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s, color 0.2s;
}
#cookie-reject:hover { border-color: #fff; color: #fff; }
@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; gap: 0.9rem; }
    .cookie-banner-btns { width: 100%; }
    #cookie-accept, #cookie-reject { flex: 1; text-align: center; }
}

/* ── Cookie Policy Page ── */
.cookie-hero {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 5.5rem 1rem 3.5rem;
    position: relative;
    overflow: hidden;
}
.cookie-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/alltrucks.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}
.cookie-hero-inner { position: relative; z-index: 1; }
.cookie-hero .hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 3px;
    margin-bottom: 1.1rem;
}
.cookie-hero h1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0 0 0.8rem;
}
.cookie-hero p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto;
}
.cookie-content {
    background: var(--off-white);
    padding: 4rem 1rem;
}
.cookie-content .container {
    max-width: 820px;
    margin: 0 auto;
}
.cookie-content h2 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy);
    margin: 2.5rem 0 0.6rem;
    padding-top: 0.5rem;
    border-top: 2px solid var(--border);
}
.cookie-content h2:first-child { border-top: none; margin-top: 0; }
.cookie-content p {
    color: var(--text);
    line-height: 1.75;
    margin: 0 0 0.9rem;
}
.cookie-content ul {
    padding-left: 1.4rem;
    margin: 0 0 1rem;
}
.cookie-content ul li {
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 0.35rem;
}
.cookie-content strong { color: var(--text-dark); }
.cookie-content a { color: var(--orange); text-decoration: underline; }
.cookie-consent-state {
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    padding: 1rem 1.3rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}
.cookie-consent-state span { opacity: 0.85; }
.cookie-manage-btn {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 0.45rem 1rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.cookie-manage-btn:hover { background: var(--orange-dark); }

/* ── Contact Bubble ── */
@keyframes bubble-wobble {
    0%, 100% { transform: rotate(0deg) scale(1); }
    15%  { transform: rotate(-8deg) scale(1.06); }
    30%  { transform: rotate(6deg)  scale(1.06); }
    45%  { transform: rotate(-4deg) scale(1.06); }
    60%  { transform: rotate(3deg)  scale(1.04); }
    75%  { transform: rotate(-2deg) scale(1.02); }
}
.contact-bubble {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9000;
}
.contact-bubble-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(200,16,46,0.45);
    transition: box-shadow 0.2s;
    position: relative;
    z-index: 1;
}
.contact-bubble-btn:hover {
    animation: bubble-wobble 0.6s ease;
    box-shadow: 0 6px 28px rgba(200,16,46,0.6);
}
.contact-bubble-btn svg {
    width: 26px; height: 26px;
    stroke: #fff; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.contact-bubble-btn .icon-close { display: none; }
.contact-bubble--open .contact-bubble-btn .icon-chat  { display: none; }
.contact-bubble--open .contact-bubble-btn .icon-close { display: block; }
.contact-bubble-modal {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 340px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    border: 1px solid var(--border);
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform-origin: bottom right;
}
.contact-bubble--open .contact-bubble-modal {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}
.bubble-modal-header {
    background: var(--navy);
    padding: 1rem 1.25rem;
}
.bubble-modal-header h4 {
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.975rem;
    font-weight: 700;
    margin: 0 0 2px;
}
.bubble-modal-header p {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    margin: 0;
}
.bubble-modal-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-height: 70vh;
    overflow-y: auto;
}
.bubble-field { display: flex; flex-direction: column; gap: 0.3rem; }
.bubble-field + .bubble-field { margin-top: 0.75rem; }
.bubble-field label {
    font-size: 0.75rem; font-weight: 700;
    color: var(--text-dark); font-family: 'Jost', sans-serif;
    letter-spacing: 0.04em;
}
.bubble-field input,
.bubble-field textarea {
    padding: 0.6rem 0.85rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    font-size: 0.875rem;
    font-family: 'Jost', inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.bubble-field input:focus,
.bubble-field textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0,0,102,0.08);
}
.bubble-field textarea { resize: vertical; min-height: 80px; }
.bubble-submit {
    margin-top: 0.75rem;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: var(--r);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}
.bubble-submit:hover { background: var(--orange-dark); }
.bubble-status {
    font-size: 0.82rem; font-weight: 600;
    padding: 0.6rem 0.85rem;
    border-radius: 6px;
    display: none;
}
@media (max-width: 480px) {
    .contact-bubble { bottom: 1rem; right: 1rem; }
    .contact-bubble-modal { width: calc(100vw - 2rem); }
}


/* ═══════════════════════════════════════════════
   REDESIGN ENHANCEMENTS — March 2026
   ═══════════════════════════════════════════════ */

/* ── Update color variable ── */
:root {
    --off-white: #FAF9F6;
}

/* ── Section eyebrow labels ── */
.sec-label {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    border-bottom: 2px solid var(--orange);
    padding-bottom: 0.2rem;
    margin-bottom: 0.9rem;
}

/* ── Hero title (no inline style) ── */
.hero-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.0;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: slideUp 0.55s ease forwards;
    animation-delay: 0.25s;
}

@media (min-width: 769px) {
    .hero-title { white-space: nowrap; }
    .hero-title-break { display: inline; }
}

/* ── Image lift wrapper — hover lift on images ── */
.img-lift-wrap {
    transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.32s ease;
    border-radius: 8px;
}
.img-lift-wrap:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 60, 0.2), 0 4px 16px rgba(0, 0, 60, 0.1);
}
.img-lift-wrap .lorry-frame {
    border-radius: 8px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 60, 0.13), 0 2px 8px rgba(0, 0, 60, 0.07);
    overflow: hidden;
}

/* ── Services bullet items ── */
.bullet-item {
    display: flex !important;
    align-items: flex-start;
    gap: 0.85rem;
    padding-left: 0 !important;
    line-height: 1.65;
    border-bottom: 1px solid rgba(0, 0, 60, 0.07);
    padding-bottom: 0.85rem !important;
}
.bullet-item:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
}
.bullet-item::before {
    display: none !important;
}
.bullet-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(200, 16, 46, 0.1);
    border-radius: 50%;
    color: var(--orange);
    margin-top: 0.1rem;
}
.bullet-check svg {
    width: 11px;
    height: 11px;
    stroke: var(--orange);
}

/* ── Enhanced lorry frame — tighter radius ── */
.lorry-frame {
    border-radius: 8px !important;
    overflow: hidden;
}

/* ── Section spacing increase ── */
.about,
.services,
.warehousing,
.training-section,
.support,
.credentials,
.news {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

/* ── Stats strip improvements ── */
.stats-strip {
    padding: 2.5rem 1rem;
    border-bottom: 3px solid var(--orange);
}
.stats-grid > div {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
}
.stats-grid > div:last-child {
    border-right: none;
}
.stat-val {
    font-size: 3.25rem;
    color: #fff;
    letter-spacing: -0.04em;
}


.testimonial-quote {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text);
}



/* ── Enhanced credential items ── */
.credential-item {
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 60, 0.07), 0 1px 2px rgba(0, 0, 60, 0.04);
    transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.28s ease, border-color 0.2s;
    padding: 2rem 1.5rem;
}
.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 60, 0.14), 0 4px 12px rgba(0, 0, 60, 0.07);
    border-color: var(--navy);
}
.credential-logo {
    border-radius: 8px !important;
    border: 1px solid rgba(0, 0, 60, 0.1) !important;
    border-width: 1px !important;
}

/* ── CTA enhancements ── */
.cta {
    padding: 9rem 24px;
}
.cta .sec-label {
    color: rgba(255, 255, 255, 0.6);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    display: block;
    text-align: center;
    margin-bottom: 0.75rem;
}
.cta h2::after {
    display: none;
}

/* ── Service card radius fix ── */
.service-card {
    border-radius: 8px !important;
}

/* ── Dropdown radius fix ── */
.nav-dropdown {
    border-radius: 8px !important;
}
.dropdown-item {
    border-radius: 8px !important;
}

/* ── Hub features on dark background ── */
.hub-feature {
    transition: opacity 0.2s;
}
.hub-feature:hover {
    opacity: 0.9;
}
.hub-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

/* ── Read more link improvement ── */
.read-more {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.02em;
}
.read-more:hover {
    color: var(--orange-dark);
}

/* ── About section ── */
.about-inner {
    gap: 5rem;
}

/* ═══════════════════════════════════════════════
   INNER PAGE COMPONENT ENHANCEMENTS — March 2026
   ═══════════════════════════════════════════════ */

/* ── 8px radius for all page-specific cards ── */
.specialist-card,
.accred-card,
.team-card,
.vacancy-card,
.no-vacancies,
.indeed-strip,
.faq-item,
.sidebar-card,
.download-card,
.net-panel,
.net-item,
.history-card,
.hist-card,
.timeline-item,
.course-card,
.why-card,
.svc-card {
    border-radius: 8px !important;
}

/* ── Specialist / accreditation cards (dark bg) — hover lift ── */
.specialist-card,
.accred-card {
    transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.28s ease;
}
.specialist-card:hover,
.accred-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ── Team cards — already have hover, enforce 8px ── */
.team-card {
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 60, 0.14), 0 4px 12px rgba(0, 0, 60, 0.07);
}

/* ── Vacancy cards ── */
.vacancy-card {
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease;
}
.vacancy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 60, 0.12), 0 3px 8px rgba(0, 0, 60, 0.06);
}

/* ── FAQ accordion items ── */
.faq-item {
    transition: box-shadow 0.2s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 60, 0.08), 0 1px 4px rgba(0, 0, 60, 0.04);
}
.faq-item.is-open {
    box-shadow: 0 6px 20px rgba(0, 0, 60, 0.1);
}

/* ── Contact sidebar cards ── */
.sidebar-card {
    border-radius: 8px !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 60, 0.1), 0 2px 6px rgba(0, 0, 60, 0.06);
}

/* ── Download cards ── */
.download-card {
    border-radius: 8px !important;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease, border-color 0.2s;
}
.download-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 60, 0.12);
    border-color: var(--navy);
}

/* ── Net panel ── */
.net-panel {
    border-radius: 8px !important;
}
.net-item {
    border-radius: 8px !important;
    transition: background 0.2s ease;
}
.net-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ── Training / service cards ── */
.svc-card,
.course-card,
.why-card {
    transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.28s ease;
}
.svc-card:hover,
.course-card:hover,
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 60, 0.14), 0 4px 12px rgba(0, 0, 60, 0.07);
}

/* ── Cookie / Privacy hero (shared) ── */
.cookie-hero {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 5.5rem 1rem 3.5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--orange);
}
.cookie-hero::after {
    content: '';
    position: absolute;
    bottom: 3px; left: 0; right: 0;
    height: 0;
}
.cookie-hero-inner { position: relative; z-index: 1; }
.cookie-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.32rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}
.cookie-hero h1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
}
.cookie-hero p {
    font-size: 1rem;
    opacity: 0.78;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Cookie / Privacy content ── */
.cookie-content {
    background: var(--off-white);
    padding: 4.5rem 1rem;
}
.cookie-content .container {
    max-width: 780px;
    margin: 0 auto;
}
.cookie-content h2 {
    font-family: 'Segoe UI', sans-serif;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 2rem 0 0.65rem;
    letter-spacing: -0.015em;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}
.cookie-content h2:first-child { margin-top: 0; }
.cookie-content p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.85rem;
}
.cookie-content ul {
    padding-left: 0;
    list-style: none;
    margin: 0.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cookie-content ul li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.93rem;
    color: var(--text);
    line-height: 1.7;
}
.cookie-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}
.cookie-content a { color: var(--orange); font-weight: 600; text-decoration: none; }
.cookie-content a:hover { text-decoration: underline; }

/* ── Cookie consent state widget ── */
.cookie-consent-state {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.cookie-manage-btn {
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.cookie-manage-btn:hover { background: var(--navy-deep); }

/* ── History page images ── */
.hist-img-wrap,
.history-img-wrap {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    border-radius: 8px;
}
.hist-img-wrap:hover,
.history-img-wrap:hover {
    transform: translateY(-6px);
}


/* =======================================================
   PAGE-SPECIFIC STYLES (moved from inline <style> blocks)
   ======================================================= */

/* ── index.html ── */
/* ── Google Reviews Section ── */
        .google-reviews-section {
            padding: 5rem 24px;
            background: #f8f9fa;
        }
        .gr-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }
        .gr-header-left {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }
        .gr-g-logo { width: 52px; height: 52px; flex-shrink: 0; }
        .gr-header-text h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin: 0.15rem 0 0.5rem;
        }
        .gr-overall-row {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .gr-overall-score {
            font-size: 1.5rem;
            font-weight: 600;
            color: #202124;
            line-height: 1;
        }
        .gr-overall-stars {
            height: 22px;
            width: 110px;
            display: block;
            flex-shrink: 0;
        }
        .gr-overall-count { font-size: 0.88rem; color: #70757a; }
        .gr-write-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.6rem 1.25rem;
            border: 1px solid #dadce0;
            border-radius: 6px;
            background: #fff;
            color: #1a73e8;
            font-weight: 600;
            font-size: 0.88rem;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.18s, box-shadow 0.18s;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }
        .gr-write-btn svg { width: 15px; height: 15px; stroke: #1a73e8; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        .gr-write-btn:hover { background: #f0f6ff; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
        /* Cards */
        .gr-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }
        .gr-card {
            background: #fff;
            border-radius: 12px;
            padding: 1rem 1rem 0.9rem;
            box-shadow: 0 1px 4px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.32s ease;
        }
        .gr-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,60,0.15), 0 4px 16px rgba(0,0,60,0.08);
        }
        .gr-reviewer { display: flex; align-items: center; gap: 0.75rem; }
        .gr-avatar {
            width: 40px; height: 40px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; font-weight: 600; color: #fff;
            flex-shrink: 0;
        }
        .gr-name { font-size: 0.9rem; font-weight: 600; color: #202124; line-height: 1.3; }
        .gr-meta { font-size: 0.78rem; color: #70757a; line-height: 1.3; }
        .gr-rating-row { display: flex; align-items: center; gap: 0.6rem; }
        .gr-stars { color: #fbbc04; font-size: 0.95rem; letter-spacing: 1px; line-height: 1; }
        .gr-date { font-size: 0.78rem; color: #70757a; }
        .gr-text { font-size: 0.875rem; color: #3c4043; line-height: 1.6; margin: 0; }
        .gr-text-clamped { display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
        .gr-more-btn { background: none; border: none; color: #1a73e8; font-size: 0.875rem; font-weight: 600; padding: 0.25rem 0 0; cursor: pointer; }
        /* Footer */
        .gr-footer {
            display: flex; align-items: center; justify-content: center;
            gap: 0.75rem; margin-top: 2rem; padding-top: 1.5rem;
            border-top: 1px solid #e8eaed;
        }
        .gr-powered-logo { height: 18px; width: auto; }
        .gr-powered-text { font-size: 0.78rem; color: #70757a; }
        @media (max-width: 1100px) { .gr-cards { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 580px) { .gr-cards { grid-template-columns: 1fr; } }

        /* ── Qargo section redesign ── */
        .qargo-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem 4rem;
            align-items: end;
            margin-bottom: 3rem;
        }
        .qargo-intro-left h2 {
            margin-bottom: 0;
        }
        .qargo-intro-lead {
            font-size: 1rem;
            line-height: 1.75;
            color: rgba(255,255,255,0.62);
            margin: 0;
            padding-bottom: 0.25rem;
        }
        .qargo-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            align-items: stretch;
        }
        .qargo-card {
            background: #f5f4f1;
            border-radius: 1.25rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border-top: 3px solid var(--orange);
            transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.32s ease;
        }
        .qargo-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 60, 0.2), 0 4px 16px rgba(0, 0, 60, 0.1);
        }
        .qargo-card-body {
            padding: 2rem 2rem 1.5rem;
            position: relative;
        }
        .qargo-watermark {
            position: absolute;
            top: 1.25rem;
            right: 1.25rem;
            width: 80px;
            opacity: 0.35;
            pointer-events: none;
        }
        .qargo-label {
            display: inline-block;
            font-family: 'Jost', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 0.85rem;
        }
        .qargo-card h3 {
            font-family: 'Segoe UI', sans-serif;
            font-size: clamp(1.2rem, 2vw, 1.65rem);
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -0.025em;
            line-height: 1.2;
            margin-bottom: 0.75rem;
            text-align: left;
        }
        .qargo-card-body p {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.65;
            margin: 0;
        }
        .qargo-img-wrap {
            flex: 1;
            min-height: 240px;
            overflow: hidden;
        }
        .qargo-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top left;
            display: block;
        }
        @media (max-width: 860px) {
            .qargo-intro { grid-template-columns: 1fr; gap: 1rem; }
            .qargo-cards { grid-template-columns: 1fr; }
        }

        /* ── Customer Services feature grid ── */
        .support-inner .support-text { order: 1; }
        .support-inner .cs-features  { order: 2; }
        .cs-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem 1.5rem;
            background: #fff;
            border-radius: 1rem;
            padding: 2.5rem 2rem;
            box-shadow: 0 8px 32px rgba(0,0,60,0.08);
            align-self: center;
            transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.32s ease;
        }
        .cs-features:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 56px rgba(0,0,60,0.15), 0 4px 16px rgba(0,0,60,0.08);
        }
        .cs-feat {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0.6rem;
        }
        .cs-icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            margin-bottom: 0.25rem;
        }
        .cs-icon svg {
            width: 40px;
            height: 40px;
        }
        .cs-feat strong {
            font-family: 'Segoe UI', sans-serif;
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--orange);
        }
        .cs-feat p {
            font-size: 0.82rem;
            color: #777;
            line-height: 1.55;
            margin: 0;
        }

/* ── careers.html ── */
/* ── Hero ── */
        .careers-hero {
            background: var(--navy);
            color: #fff;
            text-align: center;
            padding: 5.5rem 1rem 3.5rem;
            position: relative;
            overflow: hidden;
        }
        .careers-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/alltrucks.png');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            pointer-events: none;
        }
        .careers-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--orange) 0%, var(--orange) 50%, transparent 100%);
        }
        .careers-hero-inner { position: relative; z-index: 1; }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.4);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 0.32rem 0.9rem;
            border-radius: 100px;
            margin-bottom: 1.2rem;
        }
        .careers-hero h1 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 3.25rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0.85rem;
        }
        .careers-hero p {
            font-size: 1.05rem;
            opacity: 0.78;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.75;
        }
        @media (max-width: 600px) { .careers-hero h1 { font-size: 2.25rem; } }

        /* ── Section headings ── */
        .section-eyebrow {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 0.6rem;
        }
        .section-heading {
            font-family: 'Segoe UI', sans-serif;
            color: var(--navy);
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }

        /* ── Vacancies ── */
        .careers-vacancies {
            background: var(--off-white);
            padding: 5.5rem 1rem;
        }
        .careers-vacancies .container { max-width: 1100px; margin: 0 auto; }
        .vacancies-intro {
            color: var(--text);
            font-size: 0.975rem;
            line-height: 1.8;
            max-width: 620px;
            margin-bottom: 2.5rem;
        }
        .vacancies-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        .vacancy-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-left: 4px solid var(--orange);
            border-radius: var(--r-lg);
            padding: 1.5rem 1.75rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            transition: box-shadow 0.2s, transform 0.2s;
        }
        .vacancy-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
        .vacancy-info { flex: 1; }
        .vacancy-title {
            font-family: 'Segoe UI', sans-serif;
            color: var(--navy);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }
        .vacancy-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .vacancy-tag {
            background: var(--off-white);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 0.2rem 0.7rem;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--text);
        }
        .vacancy-tag--type { background: var(--orange-pale); border-color: rgba(200,16,46,0.3); color: var(--orange); }
        .vacancy-apply {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: var(--navy);
            color: #fff;
            font-family: 'Jost', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 0.6rem 1.25rem;
            border-radius: 8px;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.2s;
            flex-shrink: 0;
        }
        .vacancy-apply:hover { background: var(--navy-deep); }
        .vacancy-apply svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
        .no-vacancies {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            padding: 2.5rem;
            text-align: center;
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.75;
            margin-bottom: 2.5rem;
        }
        .no-vacancies strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 0.5rem; }
        .indeed-strip {
            background: var(--navy);
            border-radius: var(--r-lg);
            padding: 2rem 2.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .indeed-strip-text h3 {
            font-family: 'Segoe UI', sans-serif;
            color: #fff;
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }
        .indeed-strip-text p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; }
        .indeed-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--orange);
            color: #fff;
            font-family: 'Jost', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            padding: 0.75rem 1.75rem;
            border-radius: 8px;
            text-decoration: none;
            white-space: nowrap;
            transition: background 0.2s, transform 0.15s;
            flex-shrink: 0;
        }
        .indeed-btn:hover { background: #c96a0b; transform: translateY(-1px); }
        .indeed-btn svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
        @media (max-width: 640px) {
            .vacancy-card { flex-direction: column; align-items: flex-start; }
            .indeed-strip { flex-direction: column; text-align: center; }
        }

        /* ── Culture strip ── */
        .careers-culture {
            background: var(--navy);
            padding: 4.5rem 1rem;
        }
        .culture-grid {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        .culture-item-val {
            font-family: 'Segoe UI', sans-serif;
            font-size: 2.75rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            margin-bottom: 0.35rem;
        }
        .culture-item-lbl {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.13em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.65);
        }

        /* ── CTA ── */
        .careers-cta {
            background: var(--navy-deep);
            padding: 5.5rem 1rem;
            text-align: center;
        }
        .careers-cta h2 {
            font-family: 'Segoe UI', sans-serif;
            color: #fff;
            font-size: 2.1rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }
        .careers-cta p {
            color: rgba(255,255,255,0.55);
            font-size: 1rem;
            max-width: 480px;
            margin: 0 auto 2rem;
            line-height: 1.75;
        }
        .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

        .back-wrap { text-align: center; padding: 0.75rem 0; background: var(--navy-deep); }
        .back-link { color: rgba(255,255,255,0.75); font-weight: 600; text-decoration: none; font-size: 0.925rem; }
        .back-link:hover { color: #fff; }

/* ── contact.html ── */
/* ── Hero ── */
        .contact-hero {
            background: var(--navy);
            color: #ffffff;
            text-align: center;
            padding: 5.5rem 1rem 3.5rem;
            position: relative;
            overflow: hidden;
        }
        .contact-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/hist5.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
        }
        .contact-hero-inner { position: relative; z-index: 1; }
        .contact-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--orange) 0%, var(--orange) 40%, transparent 100%);
        }
        .contact-hero h1 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.85rem;
            letter-spacing: -0.025em;
        }
        .contact-hero p { font-size: 1.1rem; opacity: 0.8; max-width: 580px; margin: 0 auto; line-height: 1.7; }

        /* ── Info strip ── */
        .contact-info-strip { background: var(--white); border-bottom: 1px solid var(--border); }
        .contact-info-strip .container {
            max-width: 1100px; margin: 0 auto; padding: 0 1rem;
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0;
        }
        .info-tile {
            padding: 2rem 1.5rem; text-align: center;
            border-right: 1px solid var(--border);
        }
        .info-tile:last-child { border-right: none; }
        .info-tile-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
        .info-tile h3 {
            font-family: 'Jost', sans-serif;
            color: var(--navy); font-size: 0.72rem;
            text-transform: uppercase; letter-spacing: 0.18em;
            margin-bottom: 0.5rem; font-weight: 700;
        }
        .info-tile p  { font-size: 0.875rem; color: var(--text); line-height: 1.55; margin: 0; }
        .info-tile a  { color: var(--navy); text-decoration: none; font-weight: 600; }
        .info-tile a:hover { color: var(--orange); }

        /* ── Hours ── */
        .hours-list { list-style: none; padding: 0; margin: 0; font-size: 0.82rem; color: var(--text); text-align: left; display: inline-block; }
        .hours-list li { display: flex; justify-content: space-between; gap: 1.5rem; padding: 0.18rem 0; }
        .hours-list .closed { color: #dc2626; }

        /* ── Main layout ── */
        .contact-main { background: var(--off-white); padding: 4.5rem 1rem; }
        .contact-main .container {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start;
        }

        /* ── Form ── */
        .contact-form-wrap h2 {
            font-family: 'Segoe UI', sans-serif;
            color: var(--navy); font-size: 1.75rem; font-weight: 800;
            margin-bottom: 0.4rem; letter-spacing: -0.02em;
        }
        .contact-form-wrap .subtext { color: var(--text); font-size: 0.9rem; margin-bottom: 1.75rem; }
        .contact-form { display: flex; flex-direction: column; gap: 1rem; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .form-group { display: flex; flex-direction: column; gap: 0.35rem; }
        .form-group label {
            font-family: 'Jost', sans-serif;
            font-size: 0.8rem; font-weight: 700;
            color: var(--text-dark); letter-spacing: 0.04em;
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.7rem 0.95rem;
            border: 1.5px solid var(--border);
            border-radius: var(--r);
            font-size: 0.9rem;
            font-family: 'Jost', inherit;
            color: var(--text-dark);
            background: var(--white);
            transition: border-color 0.2s, box-shadow 0.2s;
            width: 100%;
            box-sizing: border-box;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--navy);
            box-shadow: 0 0 0 3px rgba(0,0,102,0.08);
        }
        .form-group textarea { resize: vertical; min-height: 120px; }
        .form-checkbox { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
        .form-checkbox input { width: auto; margin-top: 3px; cursor: pointer; accent-color: var(--navy); }
        .form-checkbox label { font-size: 0.82rem; font-weight: 400; color: var(--text); cursor: pointer; }
        .captcha-wrap { display: flex; align-items: center; gap: 0.6rem; }
        .captcha-question { font-weight: 700; font-size: 1rem; color: var(--navy); white-space: nowrap; font-family: 'Segoe UI', sans-serif; }
        .captcha-wrap input { width: 90px !important; }
        .bubble-field .captcha-wrap input { width: 80px !important; }
        .form-submit {
            background: var(--orange);
            color: #fff;
            border: none;
            padding: 0.85rem 2rem;
            border-radius: var(--r);
            font-family: 'Jost', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: 0.03em;
            transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
            align-self: flex-start;
        }
        .form-submit:hover {
            background: var(--orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(200,16,46,0.35);
        }
        .privacy-note { font-size: 0.78rem; color: var(--text-light); margin-top: 0.25rem; }

        /* ── Sidebar ── */
        .contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
        .sidebar-card {
            background: var(--white);
            border-radius: var(--r-lg);
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border);
            padding: 1.5rem;
        }
        .sidebar-card h3 {
            font-family: 'Segoe UI', sans-serif;
            color: var(--navy); font-size: 0.975rem; font-weight: 700;
            margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.5rem;
        }
        .sidebar-card p { font-size: 0.875rem; color: var(--text); line-height: 1.65; margin: 0; }
        .sidebar-card a { color: var(--navy); font-weight: 600; text-decoration: none; }
        .sidebar-card a:hover { color: var(--orange); }
        .full-map-wrap { position: relative; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
        .full-map-wrap iframe { display: block; width: 100%; height: 420px; border: none; }
        .full-map-label {
            display: flex; align-items: center; justify-content: space-between;
            gap: 1rem; flex-wrap: wrap;
            background: var(--navy); color: #fff;
            padding: 0.75rem 1.5rem; font-size: 0.875rem;
        }
        .full-map-label span { opacity: 0.85; }
        .full-map-label a { color: var(--orange); font-weight: 600; text-decoration: none; white-space: nowrap; }
        .full-map-label a:hover { text-decoration: underline; }

        /* ── Downloads ── */
        .contact-downloads { background: var(--white); padding: 4.5rem 1rem; border-top: 1px solid var(--border); }
        .contact-downloads .container { max-width: 1100px; margin: 0 auto; }
        .contact-downloads h2 {
            font-family: 'Segoe UI', sans-serif;
            color: var(--navy); font-size: 1.75rem; font-weight: 800;
            margin-bottom: 0.4rem; letter-spacing: -0.02em;
        }
        .contact-downloads .subtext { color: var(--text); font-size: 0.9rem; margin-bottom: 2rem; }
        .downloads-group { margin-bottom: 2.5rem; }
        .downloads-group:last-child { margin-bottom: 0; }
        .downloads-group-label { font-family: 'Segoe UI', sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); }
        .downloads-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 1.25rem; }
        .download-card {
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            padding: 1.35rem 1.25rem 1.1rem;
            display: flex; flex-direction: column; gap: 0.5rem;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
        }
        .download-card:hover {
            border-color: var(--navy);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }
        .download-card-icon { font-size: 1.5rem; }
        .download-card h4 { font-family: 'Segoe UI', sans-serif; font-size: 0.93rem; font-weight: 700; color: var(--text-dark); margin: 0; }
        .download-card p  { font-size: 0.8rem; color: var(--text); line-height: 1.5; margin: 0; flex: 1; }
        .download-card a  {
            display: inline-block; margin-top: 0.5rem;
            font-size: 0.8rem; font-weight: 700;
            color: var(--navy); text-decoration: none;
            border: 1.5px solid var(--navy);
            padding: 0.3rem 0.75rem; border-radius: var(--r);
            transition: background 0.15s, color 0.15s;
        }
        .download-card a:hover { background: var(--navy); color: #fff; }

        /* ── Responsive ── */
        @media (max-width: 900px) {
            .contact-main .container { grid-template-columns: 1fr; }
            .contact-sidebar { order: -1; }
        }
        @media (max-width: 600px) {
            .contact-hero h1 { font-size: 2.2rem; }
            .form-row { grid-template-columns: 1fr; }
            .info-tile { border-right: none; border-bottom: 1px solid var(--border); }
            .info-tile:last-child { border-bottom: none; }
        }

        /* ── Back link ── */
        .back-wrap { text-align: center; padding: 0.75rem 0; background: var(--navy-deep); }
        .back-link { color: rgba(255,255,255,0.75); font-weight: 600; text-decoration: none; font-size: 0.925rem; }
        .back-link:hover { color: #fff; }

/* ── faq.html ── */
/* ── Hero ── */
        .faq-hero {
            background: var(--navy);
            color: #fff;
            text-align: center;
            padding: 5.5rem 1rem 3.5rem;
            position: relative;
            overflow: hidden;
        }
        .faq-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/lorry1.png');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        .faq-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--orange) 0%, var(--orange) 50%, transparent 100%);
        }
        .faq-hero-inner { position: relative; z-index: 1; }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.4);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 0.32rem 0.9rem;
            border-radius: 100px;
            margin-bottom: 1.2rem;
        }
        .faq-hero h1 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 3.25rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0.85rem;
        }
        .faq-hero p {
            font-size: 1.05rem;
            opacity: 0.78;
            max-width: 540px;
            margin: 0 auto;
            line-height: 1.75;
        }

        /* ── FAQ Section ── */
        .faq-section {
            padding: 5rem 1rem;
            background: var(--off-white);
        }
        .faq-section .container { max-width: 860px; margin: 0 auto; }
        .section-eyebrow {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 0.5rem;
        }
        .faq-section h2 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }
        .faq-section .section-lead {
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 2.5rem;
        }

        /* ── Accordion ── */
        .faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
        .faq-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--r-lg);
            box-shadow: var(--shadow-xs);
            overflow: hidden;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            gap: 1rem;
            user-select: none;
        }
        .faq-question h3 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--navy);
            margin: 0;
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--off-white);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.25s;
        }
        .faq-icon svg {
            width: 14px;
            height: 14px;
            stroke: var(--navy);
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: transform 0.25s;
        }
        .faq-item.is-open .faq-icon {
            background: var(--orange);
            border-color: var(--orange);
        }
        .faq-item.is-open .faq-icon svg {
            stroke: #fff;
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.25s ease;
        }
        .faq-item.is-open .faq-answer {
            max-height: 400px;
        }
        .faq-answer-inner {
            padding: 0 1.5rem 1.4rem;
            color: var(--text);
            font-size: 0.95rem;
            line-height: 1.7;
            border-top: 1px solid var(--border);
            padding-top: 1rem;
        }

        /* ── CTA ── */
        .faq-cta {
            background: var(--navy);
            color: #fff;
            text-align: center;
            padding: 4rem 1rem;
            position: relative;
        }
        .faq-cta h2 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
        }
        .faq-cta p { opacity: 0.78; max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }
        .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .faq-cta .btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
        .faq-cta .btn-primary:hover { background: var(--orange-dark); }
        .faq-cta .btn-secondary { border-color: rgba(255,255,255,0.35); color: #fff; }
        .faq-cta .btn-secondary:hover { background: rgba(255,255,255,0.1); }

        /* ── Back link ── */
        .back-wrap { text-align: center; padding: 0.75rem 0; background: var(--navy-deep); }
        .back-link { color: rgba(255,255,255,0.75); font-weight: 600; text-decoration: none; font-size: 0.925rem; }
        .back-link:hover { color: #fff; }

/* ── haulage.html ── */
/* ── Hero ── */
        .haulage-hero {
            background: var(--navy);
            color: #fff;
            text-align: center;
            padding: 5.5rem 1rem 3.5rem;
            position: relative;
            overflow: hidden;
        }
        .haulage-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/lorry1.png');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        .haulage-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--orange) 0%, var(--orange) 50%, transparent 100%);
        }
        .haulage-hero-inner { position: relative; z-index: 1; }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.4);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 0.32rem 0.9rem;
            border-radius: 100px;
            margin-bottom: 1.2rem;
        }
        .haulage-hero h1 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 3.25rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0.85rem;
        }
        .haulage-hero p {
            font-size: 1.05rem;
            opacity: 0.78;
            max-width: 540px;
            margin: 0 auto;
            line-height: 1.75;
        }

        /* ── Section Labels ── */
        .section-eyebrow {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 0.6rem;
        }
        .section-heading {
            font-family: 'Segoe UI', sans-serif;
            color: var(--navy);
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }
        .section-sub {
            color: var(--text);
            font-size: 0.975rem;
            max-width: 520px;
            line-height: 1.75;
            margin-bottom: 3rem;
        }

        /* ── Service Rows (photo + text) ── */
        .haul-row {
            padding: 5.5rem 1rem;
        }
        .haul-row--light { background: var(--off-white); }
        .haul-row--white { background: var(--white); }
        .haul-row-heading {
            font-family: 'Segoe UI', sans-serif;
            color: var(--navy);
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0;
        }
        .haul-row-heading::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background: var(--orange);
            border-radius: 2px;
            margin-top: 0.75rem;
        }

        /* ── Specialist Services ── */
        .specialist-services {
            background: var(--navy);
            padding: 5.5rem 1rem;
        }
        .specialist-services .section-heading { color: #fff; text-align: center; }
        .specialist-services .section-eyebrow { display: inline-block; text-align: center; color: #fff; border-bottom: 2px solid var(--orange); padding-bottom: 0.2rem; }
        .specialist-intro {
            text-align: center;
            color: rgba(255,255,255,0.6);
            max-width: 520px;
            margin: 0 auto 2.5rem;
            font-size: 0.975rem;
            line-height: 1.75;
        }
        .specialist-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .specialist-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-top: 3px solid var(--orange);
            border-radius: var(--r-lg);
            padding: 2rem;
        }
        .specialist-card .svc-icon {
            width: 44px; height: 44px;
            background: rgba(200,16,46,0.18);
            border-radius: var(--r);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.1rem;
        }
        .specialist-card .svc-icon svg {
            width: 22px; height: 22px;
            stroke: var(--orange); fill: none;
            stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
        }
        .specialist-card h3 {
            font-family: 'Segoe UI', sans-serif;
            color: #fff;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        .specialist-card > p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.75; }
        .specialist-card ul {
            list-style: none;
            padding: 0;
            margin: 1.1rem 0 0;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .specialist-card ul li {
            color: rgba(255,255,255,0.7);
            font-size: 0.875rem;
            padding-left: 1rem;
            position: relative;
        }
        .specialist-card ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5em;
            width: 5px; height: 5px;
            border-radius: 50%;
            background: var(--orange);
        }
        @media (max-width: 640px) {
            .specialist-grid { grid-template-columns: 1fr; }
        }

        /* ── Stats Strip ── */
        .haulage-stats {
            background: var(--navy);
            padding: 4rem 1rem;
        }
        .stats-grid {
            max-width: 960px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        .stat-val {
            font-family: 'Segoe UI', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            margin-bottom: 0.35rem;
        }
        .stat-lbl {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.13em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.65);
        }

        /* ── Network Section ── */
        .haulage-network {
            padding: 5rem 1rem;
            background: var(--white);
        }
        .haulage-network .container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .net-text h2 {
            font-family: 'Segoe UI', sans-serif;
            color: var(--navy);
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }
        .net-text p { color: var(--text); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
        .net-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            margin-top: 1.25rem;
        }
        .net-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.9rem;
            color: var(--text-dark);
            font-weight: 500;
        }
        .net-list li::before {
            content: '';
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--orange);
            flex-shrink: 0;
        }
        .net-panel {
            background: var(--navy);
            border-radius: var(--r-lg);
            padding: 2.25rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .net-panel-title {
            font-family: 'Segoe UI', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.85);
            margin-bottom: 0.25rem;
        }
        .net-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255,255,255,0.05);
            border-radius: var(--r);
            border-left: 2px solid var(--orange);
            padding: 0.8rem 1rem;
        }
        .net-item-icon {
            width: 32px; height: 32px;
            background: rgba(200,16,46,0.15);
            border-radius: var(--r);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .net-item-icon svg {
            width: 15px; height: 15px;
            stroke: var(--orange); fill: none;
            stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
        }
        .net-item strong { display: block; color: #fff; font-size: 0.875rem; font-weight: 600; }
        .net-item span { color: rgba(255,255,255,0.45); font-size: 0.77rem; }

        /* ── CTA ── */
        .haulage-cta {
            background: var(--navy-deep);
            padding: 5.5rem 1rem;
            text-align: center;
        }
        .haulage-cta h2 {
            font-family: 'Segoe UI', sans-serif;
            color: #fff;
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }
        .haulage-cta p {
            color: rgba(255,255,255,0.55);
            font-size: 1rem;
            max-width: 460px;
            margin: 0 auto 2rem;
            line-height: 1.75;
        }
        .cta-row {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        @media (max-width: 900px) {
            .haulage-network .container { grid-template-columns: 1fr; gap: 2.5rem; }
        }
        @media (max-width: 600px) {
            .haulage-hero h1 { font-size: 2.25rem; }
            .haulage-cta h2 { font-size: 1.75rem; }
        }
        .back-wrap { text-align: center; padding: 0.75rem 0; background: var(--navy-deep); }
        .back-link { color: rgba(255,255,255,0.75); font-weight: 600; text-decoration: none; font-size: 0.925rem; }
        .back-link:hover { color: #fff; }

/* ── history.html ── */
/* =====================================================
           HISTORY PAGE - ERA-PROGRESSIVE TIMELINE DESIGN
           Victorian (1897) --> Modern (Present)
           ===================================================== */

        /* ---------- HERO ---------- */
        .history-page-hero {
            background: var(--navy);
            color: #fff;
            text-align: center;
            padding: 5.5rem 1rem 3.5rem;
            position: relative;
            overflow: hidden;
        }
        .history-page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/alltrucks.png');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        .history-page-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--orange) 0%, var(--orange) 50%, transparent 100%);
        }
        .history-page-hero-inner { position: relative; z-index: 1; }
        .history-page-hero h1 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 3.25rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0.85rem;
            color: #fff;
        }
        .history-page-hero p {
            font-size: 1.05rem;
            opacity: 0.78;
            max-width: 540px;
            margin: 0 auto;
            line-height: 1.75;
            color: #fff;
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.4);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 0.32rem 0.9rem;
            border-radius: 100px;
            margin-bottom: 1.2rem;
        }

        /* ---------- SECTION ---------- */
        .history-page-section {
            padding: 3rem 1rem;
            background: linear-gradient(
                to bottom,
                #F0E2BC 0%,
                #EBDCC0 11%,
                #E5D8C8 22%,
                #DDD4C4 32%,
                #D6D0C4 42%,
                #D4D2D0 52%,
                #DCDCDC 62%,
                #E4E4E4 70%,
                var(--off-white) 80%,
                var(--off-white) 100%
            );
        }
        .history-page-section .container { max-width: 880px; margin: 0 auto; }
        .history-page-section h2 {
            font-family: 'Playfair Display', Georgia, serif;
            text-align: center;
            color: #2C1A0E;
            font-size: 2.1rem;
            font-weight: 700;
            margin-bottom: 2rem;
            letter-spacing: 0.02em;
        }
        .history-page-section h2::after {
            content: '';
            display: block;
            width: 44px;
            height: 2px;
            background: #C4903A;
            margin: 0.85rem auto 0;
            border-radius: 2px;
        }

        /* ---------- TIMELINE SPINE ---------- */
        .history-page-timeline { position: relative; max-width: 1000px; margin: 0 auto; }
        .history-page-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0; bottom: 0;
            width: 2px;
            background: linear-gradient(
                to bottom,
                transparent 0%,
                #C4903A 4%,
                #A87832 18%,
                #786848 32%,
                #3A4060 48%,
                #1A2A4A 62%,
                #1A2A4A 78%,
                var(--orange) 93%,
                transparent 100%
            );
            transform: translateX(-50%);
            opacity: 0.65;
        }

        /* ---------- TIMELINE ITEM BASE ---------- */
        .history-page-item {
            display: grid;
            grid-template-columns: 1fr 40px 1fr;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.72s ease, transform 0.72s ease;
        }
        .history-page-item.hist-visible {
            opacity: 1;
            transform: none;
        }

        /* ---------- DOT ---------- */
        .hist-dot {
            width: var(--era-dot-size, 14px);
            height: var(--era-dot-size, 14px);
            border-radius: 50%;
            background: var(--era-dot-color, var(--orange));
            border: 3px solid transparent;
            box-shadow: 0 0 0 3px var(--era-dot-color, var(--orange));
            justify-self: center;
            z-index: 1;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .history-page-item:hover .hist-dot {
            transform: scale(1.35);
            box-shadow: 0 0 0 5px var(--era-dot-color, var(--orange));
        }

        /* ---------- TEXT CARD ---------- */
        .hist-text {
            background: var(--era-card-bg, var(--white));
            border-radius: var(--r-lg);
            padding: 1.5rem 1.75rem;
            box-shadow: var(--era-shadow, var(--shadow-xs));
            border: var(--era-border-width, 1px) solid var(--era-border-color, var(--border));
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .history-page-item:hover .hist-text {
            transform: translateY(-3px);
        }

        /* Victorian / Edwardian double-border ornament */
        [data-era="victorian"] .hist-text::after,
        [data-era="edwardian"] .hist-text::after {
            content: '';
            position: absolute;
            inset: 5px;
            border: 1px solid rgba(168,120,64,0.25);
            border-radius: calc(var(--r-lg) - 4px);
            pointer-events: none;
        }

        /* Aged lined texture for early eras */
        [data-era="victorian"] .hist-text,
        [data-era="edwardian"] .hist-text {
            background-image:
                repeating-linear-gradient(
                    0deg,
                    transparent 0px,
                    transparent 23px,
                    rgba(120,80,20,0.045) 23px,
                    rgba(120,80,20,0.045) 24px
                );
        }

        /* ---------- YEAR BADGE ---------- */
        .history-page-year {
            display: inline-block;
            background: var(--era-year-bg, var(--navy));
            color: var(--era-year-text, #fff);
            font-family: var(--era-year-font, 'Jost', sans-serif);
            font-weight: 700;
            font-size: 0.76rem;
            padding: 0.25rem 0.85rem;
            border-radius: 999px;
            margin-bottom: 0.65rem;
            letter-spacing: 0.1em;
        }
        [data-era="victorian"] .history-page-year,
        [data-era="edwardian"] .history-page-year {
            letter-spacing: 0.16em;
            font-size: 0.7rem;
            padding: 0.3rem 1rem;
        }

        /* ---------- TEXT CONTENT ---------- */
        .hist-text h3 {
            font-family: var(--era-heading-font, 'Segoe UI', sans-serif);
            color: var(--era-heading-color, var(--text-dark));
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
            line-height: 1.3;
        }
        [data-era="victorian"] .hist-text h3,
        [data-era="edwardian"] .hist-text h3 {
            font-style: italic;
            font-size: 1.12rem;
            letter-spacing: 0;
        }
        [data-era="postwar"] .hist-text h3 {
            font-style: italic;
            font-size: 1.08rem;
        }
        .hist-text p {
            font-family: var(--era-body-font, 'Jost', sans-serif);
            color: var(--era-text-color, var(--text));
            font-size: 0.875rem;
            line-height: 1.75;
        }
        [data-era="victorian"] .hist-text p,
        [data-era="edwardian"] .hist-text p,
        [data-era="postwar"] .hist-text p {
            font-size: 0.96rem;
            line-height: 1.82;
        }

        /* ---------- PHOTO ---------- */
        .hist-photo img {
            width: 100%;
            max-width: 340px;
            height: auto;
            border-radius: var(--r-lg);
            box-shadow: var(--era-shadow, var(--shadow));
            border: 2px solid var(--era-photo-border, var(--border));
            filter: var(--era-photo-filter, none);
            transition: filter 0.4s ease, transform 0.4s ease;
        }
        .hist-photo:hover img {
            transform: scale(1.025);
        }

        /* ---------- LAYOUT (odd / even) ---------- */
        .history-page-item.odd .hist-text  { grid-column: 1; text-align: right; }
        .history-page-item.odd .hist-dot   { grid-column: 2; }
        .history-page-item.odd .hist-photo { grid-column: 3; }
        .history-page-item.even .hist-photo { grid-column: 1; display: flex; justify-content: flex-end; }
        .history-page-item.even .hist-dot   { grid-column: 2; }
        .history-page-item.even .hist-text  { grid-column: 3; text-align: left; }

        .hist-empty { grid-column: auto; }
        .hist-photo-double { display: flex; flex-direction: column; gap: 0.75rem; justify-content: flex-end; }

        /* ======================================================
           ERA VARIABLE DEFINITIONS
           Each data-era defines its own colour / font palette
           ====================================================== */

        [data-era="victorian"] {
            --era-card-bg: #F8EDD4;
            --era-border-color: #A87840;
            --era-border-width: 2px;
            --era-dot-color: #C4903A;
            --era-dot-size: 18px;
            --era-year-bg: #3A2410;
            --era-year-text: #E8C870;
            --era-year-font: 'Playfair Display', Georgia, serif;
            --era-heading-font: 'Playfair Display', Georgia, serif;
            --era-body-font: 'Crimson Pro', Georgia, serif;
            --era-heading-color: #2C1A0E;
            --era-text-color: #4A3020;
            --era-shadow: 5px 5px 20px rgba(80,50,20,0.22), 0 1px 4px rgba(80,50,20,0.10);
            --era-photo-filter: sepia(0.88) contrast(0.87) brightness(0.91);
            --era-photo-border: #A87840;
        }
        [data-era="edwardian"] {
            --era-card-bg: #F3E6CA;
            --era-border-color: #9A7235;
            --era-border-width: 2px;
            --era-dot-color: #B08030;
            --era-dot-size: 17px;
            --era-year-bg: #3A2C18;
            --era-year-text: #DDB860;
            --era-year-font: 'Playfair Display', Georgia, serif;
            --era-heading-font: 'Playfair Display', Georgia, serif;
            --era-body-font: 'Crimson Pro', Georgia, serif;
            --era-heading-color: #2E1E10;
            --era-text-color: #4E3828;
            --era-shadow: 4px 4px 18px rgba(70,45,15,0.18);
            --era-photo-filter: sepia(0.72) contrast(0.89) brightness(0.93);
            --era-photo-border: #9A7235;
        }
        [data-era="postwar"] {
            --era-card-bg: #EAE0CC;
            --era-border-color: #7A6845;
            --era-border-width: 2px;
            --era-dot-color: #8C7040;
            --era-dot-size: 16px;
            --era-year-bg: #3C3428;
            --era-year-text: #C8A858;
            --era-year-font: 'Crimson Pro', Georgia, serif;
            --era-heading-font: 'Playfair Display', Georgia, serif;
            --era-body-font: 'Crimson Pro', Georgia, serif;
            --era-heading-color: #2A2418;
            --era-text-color: #3C3428;
            --era-shadow: 3px 3px 14px rgba(60,52,40,0.15);
            --era-photo-filter: sepia(0.52) contrast(0.90) brightness(0.95);
            --era-photo-border: #7A6845;
        }
        [data-era="expansion"] {
            --era-card-bg: #E5DFCF;
            --era-border-color: #5C5848;
            --era-border-width: 1.5px;
            --era-dot-color: #5C5848;
            --era-dot-size: 15px;
            --era-year-bg: #2C3040;
            --era-year-text: #B4B8C8;
            --era-year-font: 'Barlow', sans-serif;
            --era-heading-font: 'Playfair Display', Georgia, serif;
            --era-body-font: 'Barlow', sans-serif;
            --era-heading-color: #1C2030;
            --era-text-color: #383848;
            --era-shadow: 3px 3px 14px rgba(40,44,60,0.14);
            --era-photo-filter: sepia(0.26) contrast(0.92) brightness(0.97);
            --era-photo-border: #888;
        }
        [data-era="network"] {
            --era-card-bg: #DDDAE8;
            --era-border-color: #4A4E68;
            --era-border-width: 1.5px;
            --era-dot-color: #4A4E68;
            --era-dot-size: 14px;
            --era-year-bg: #283050;
            --era-year-text: #A8B0C8;
            --era-year-font: 'Barlow', sans-serif;
            --era-heading-font: 'Barlow', sans-serif;
            --era-body-font: 'Barlow', sans-serif;
            --era-heading-color: #182030;
            --era-text-color: #303858;
            --era-shadow: 2px 2px 10px rgba(30,40,70,0.13);
            --era-photo-filter: sepia(0.13) contrast(0.95);
            --era-photo-border: #aaa;
        }
        [data-era="refocus"] {
            --era-card-bg: #D8D8E4;
            --era-border-color: #3C4260;
            --era-border-width: 1.5px;
            --era-dot-color: #3C4260;
            --era-dot-size: 14px;
            --era-year-bg: #1E2848;
            --era-year-text: #98A4C0;
            --era-year-font: 'Barlow', sans-serif;
            --era-heading-font: 'Barlow', sans-serif;
            --era-body-font: 'Barlow', sans-serif;
            --era-heading-color: #141E2C;
            --era-text-color: #283050;
            --era-shadow: 2px 2px 10px rgba(25,35,60,0.12);
            --era-photo-filter: sepia(0.07) contrast(0.97);
            --era-photo-border: #aaa;
        }
        [data-era="digital"] {
            --era-card-bg: #E0E0EC;
            --era-border-color: #2C3858;
            --era-border-width: 1.5px;
            --era-dot-color: #2C3858;
            --era-dot-size: 14px;
            --era-year-bg: #1C2440;
            --era-year-text: #90A0BC;
            --era-year-font: 'Barlow', sans-serif;
            --era-heading-font: 'Barlow', sans-serif;
            --era-body-font: 'Barlow', sans-serif;
            --era-heading-color: #101828;
            --era-text-color: #243050;
            --era-shadow: 2px 2px 10px rgba(20,30,55,0.12);
            --era-photo-filter: none;
            --era-photo-border: #bbb;
        }
        [data-era="modern"] {
            --era-card-bg: #F6F8FC;
            --era-border-color: #C0C8D4;
            --era-border-width: 1px;
            --era-dot-color: #1A2A4A;
            --era-dot-size: 14px;
            --era-year-bg: #1A2A4A;
            --era-year-text: #fff;
            --era-year-font: 'Barlow', sans-serif;
            --era-heading-font: 'Barlow', sans-serif;
            --era-body-font: 'Barlow', sans-serif;
            --era-heading-color: var(--text-dark);
            --era-text-color: var(--text);
            --era-shadow: var(--shadow-xs);
            --era-photo-filter: none;
            --era-photo-border: var(--border);
        }
        [data-era="anniversary"] {
            --era-card-bg: #fff;
            --era-border-color: rgba(200,16,46,0.38);
            --era-border-width: 1.5px;
            --era-dot-color: var(--orange);
            --era-dot-size: 16px;
            --era-year-bg: var(--orange);
            --era-year-text: #fff;
            --era-year-font: 'Barlow', sans-serif;
            --era-heading-font: 'Barlow', sans-serif;
            --era-body-font: 'Barlow', sans-serif;
            --era-heading-color: var(--text-dark);
            --era-text-color: var(--text);
            --era-shadow: 0 4px 24px rgba(200,16,46,0.15), 0 1px 6px rgba(0,0,0,0.06);
            --era-photo-filter: none;
            --era-photo-border: rgba(200,16,46,0.35);
        }
        [data-era="present"] {
            --era-card-bg: #fff;
            --era-border-color: var(--orange);
            --era-border-width: 2px;
            --era-dot-color: var(--orange);
            --era-dot-size: 18px;
            --era-year-bg: var(--orange);
            --era-year-text: #fff;
            --era-year-font: 'Barlow', sans-serif;
            --era-heading-font: 'Barlow', sans-serif;
            --era-body-font: 'Barlow', sans-serif;
            --era-heading-color: var(--navy);
            --era-text-color: var(--text);
            --era-shadow: 0 6px 32px rgba(200,16,46,0.20), 0 2px 8px rgba(0,0,0,0.08);
            --era-photo-filter: none;
            --era-photo-border: rgba(200,16,46,0.45);
        }

        /* ---------- PHOTO HOVER CAPTION ---------- */
        .hist-photo-wrap { position: relative; display: inline-block; }
        .hist-photo-wrap .photo-caption {
            display: none;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 290px;
            background: rgba(0,0,50,0.95);
            color: #fff;
            font-size: 0.78rem;
            line-height: 1.6;
            padding: 0.85rem 1rem;
            border-radius: var(--r-lg);
            text-align: left;
            z-index: 10;
            pointer-events: none;
            border: 1px solid rgba(200,16,46,0.3);
        }
        .history-page-item.odd .hist-photo-wrap .photo-caption { left: 100%; margin-left: 12px; }
        .history-page-item.odd .hist-photo-wrap .photo-caption::before {
            content: '';
            position: absolute;
            right: 100%; top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-right-color: rgba(0,0,50,0.95);
        }
        .history-page-item.even .hist-photo-wrap .photo-caption { right: 100%; margin-right: 12px; }
        .history-page-item.even .hist-photo-wrap .photo-caption::before {
            content: '';
            position: absolute;
            left: 100%; top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-left-color: rgba(0,0,50,0.95);
        }
        .hist-photo-wrap:hover .photo-caption { display: block; }

        /* ---------- BACK LINK ---------- */
        .back-wrap { text-align: center; padding: 0.75rem 0; background: var(--navy-deep); }
        .back-link { color: rgba(255,255,255,0.75); font-weight: 600; text-decoration: none; font-size: 0.925rem; }
        .back-link:hover { color: #fff; }

        /* ---------- MOBILE ---------- */
        @media (max-width: 700px) {
            .history-page-timeline::before { left: 8px; transform: none; }
            .history-page-item,
            .history-page-item.odd,
            .history-page-item.even {
                grid-template-columns: 20px 1fr;
                grid-template-rows: auto auto;
            }
            .history-page-item.odd .hist-dot,
            .history-page-item.even .hist-dot   { grid-column: 1; grid-row: 1; }
            .history-page-item.odd .hist-text,
            .history-page-item.even .hist-text  { grid-column: 2; grid-row: 1; text-align: left; }
            .history-page-item.odd .hist-img-wrap,
            .history-page-item.even .hist-img-wrap { grid-column: 2; grid-row: 2; display: block; justify-content: unset; }
            .history-page-item.odd .hist-photo img,
            .history-page-item.even .hist-photo img { max-width: 100%; width: 100%; height: auto; }
            .hist-empty { display: none; }

            /* Make images fill the full column width */
            .hist-img-wrap { width: 100%; }
            .hist-photo { width: 100%; }
            .hist-photo-wrap { width: 100%; display: block; }
            .hist-photo-wrap img { width: 100%; max-width: none; }
            .hist-photo img { max-width: none; width: 100%; }

            /* Show captions as static text below image — not a hover popup */
            .history-page-item.odd .hist-photo-wrap .photo-caption,
            .history-page-item.even .hist-photo-wrap .photo-caption {
                display: block;
                position: static;
                transform: none;
                width: 100%;
                margin: 0.6rem 0 0;
                padding: 0.75rem 0.875rem;
                font-size: 0.875rem;
                line-height: 1.6;
                color: #333;
                background: rgba(0, 0, 50, 0.04);
                border: 1px solid rgba(0, 0, 50, 0.1);
                border-radius: 6px;
                pointer-events: auto;
                text-align: left;
            }
            .history-page-item.odd .hist-photo-wrap .photo-caption::before,
            .history-page-item.even .hist-photo-wrap .photo-caption::before { display: none; }
        }

/* ── team.html ── */
.team-hero {
            background: var(--navy);
            color: #fff;
            text-align: center;
            padding: 5.5rem 1rem 3.5rem;
            position: relative;
            overflow: hidden;
        }
        .team-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/hist5.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.2;
        }
        .team-hero-inner { position: relative; z-index: 1; }
        .team-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--orange) 0%, var(--orange) 40%, transparent 100%);
        }
        .team-hero h1 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.85rem;
            letter-spacing: -0.025em;
        }
        .team-hero p { font-size: 1.1rem; opacity: 0.8; max-width: 560px; margin: 0 auto; line-height: 1.7; }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.4);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 0.32rem 0.9rem;
            border-radius: 100px;
            margin-bottom: 1.2rem;
        }

        .team-section { padding: 0 0 4rem; background: var(--off-white); }

        .dept-columns-wrap {
            max-width: 1500px;
            margin: 0 auto;
            padding: 2rem 2.5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 3rem;
            align-items: start;
        }

        .dept-sub-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0 2rem;
            align-items: start;
        }

        .dept-section {
            padding: 1.25rem 0 0.25rem;
        }
        .dept-heading {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
        }
        .dept-heading h2 {
            font-family: 'Segoe UI', sans-serif;
            color: var(--navy);
            font-size: 1.1rem;
            font-weight: 700;
            white-space: nowrap;
            letter-spacing: -0.01em;
        }
        .dept-heading::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .team-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .team-grid .team-card {
            flex: 0 1 207px;
        }
        .team-card {
            background: var(--white);
            border-radius: var(--r-lg);
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border);
            overflow: hidden;
            text-align: center;
            transition: transform 0.22s, box-shadow 0.22s;
        }
        .team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
        .team-section .team-card-photo {
            width: 100%;
            height: 56px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid var(--border);
        }
        .team-section .team-card-photo img { width: 34px; height: 34px; object-fit: contain; }
        .member-avatar {
            width: 44px; height: 44px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-family: 'Segoe UI', sans-serif;
            font-size: 1.3rem; font-weight: 700;
            color: #fff;
            letter-spacing: -0.02em;
            flex-shrink: 0;
        }
        .team-section .team-card-body { padding: 0.6rem 0.75rem 0.7rem; }
        .team-card-body h3 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }
        .team-card-body .role {
            font-size: 0.75rem;
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 0.6rem;
            letter-spacing: 0.01em;
        }
        .team-card-body p { font-size: 0.8rem; color: var(--text); line-height: 1.5; }
        .team-card-contact {
            display: flex;
            justify-content: center;
            gap: 0.45rem;
            margin-top: 0.6rem;
        }
        .team-card-contact a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px; height: 30px;
            border: 1px solid rgba(200,50,50,0.25);
            border-radius: 50%;
            background: rgba(220,50,50,0.06);
            text-decoration: none;
            transition: border-color 0.2s, background 0.2s, transform 0.15s;
            color: var(--navy);
        }
        .team-card-contact a svg { width: 13px; height: 13px; stroke: var(--navy); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
        .team-card-contact a:hover {
            border-color: var(--orange);
            background: rgba(220,50,50,0.12);
            transform: scale(1.1);
        }

        .back-wrap { text-align: center; padding: 0.75rem 0; background: var(--navy-deep); }
        .back-link { color: rgba(255,255,255,0.75); font-weight: 600; text-decoration: none; font-size: 0.925rem; }
        .back-link:hover { color: #fff; }

        @media (max-width: 800px) {
            .dept-columns-wrap { grid-template-columns: 1fr; gap: 0; }
        }
        @media (max-width: 600px) {
            .team-hero h1 { font-size: 2.25rem; }
        }

/* ── training.html ── */
/* ── Hero ── */
        .training-hero {
            position: relative;
            background: var(--navy);
            color: #fff;
            text-align: center;
            padding: 5.5rem 1rem 3.5rem;
            overflow: hidden;
        }
        .training-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/Photo39.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.14;
            pointer-events: none;
        }
        .training-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0,0,60,0.6) 0%, rgba(0,0,40,0.3) 100%);
            pointer-events: none;
        }
        .training-hero > * { position: relative; z-index: 1; }
        .training-hero h1 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 3.25rem;
            font-weight: 800;
            margin-bottom: 0.85rem;
            letter-spacing: -0.025em;
        }
        .training-hero p {
            font-size: 1.15rem;
            opacity: 0.85;
            max-width: 640px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }
        @media (max-width: 600px) { .training-hero h1 { font-size: 2.25rem; } }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.4);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 0.32rem 0.9rem;
            border-radius: 100px;
            margin-bottom: 1.2rem;
        }

        /* ── Intro ── */
        .training-intro { background: var(--white); padding: 4.5rem 1rem; text-align: center; }
        .training-intro h2 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
        .training-intro h2::after {
            content: '';
            display: block;
            width: 44px;
            height: 3px;
            background: var(--orange);
            margin: 0.75rem auto 0;
            border-radius: 2px;
        }
        .training-intro p {
            max-width: 780px;
            margin: 0 auto 1rem;
            font-size: 1rem;
            color: var(--text);
            line-height: 1.8;
        }
        .badge-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 2rem; }
        .badge {
            background: var(--off-white);
            border: 1.5px solid var(--border);
            border-radius: 999px;
            padding: 0.38rem 1rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--navy);
            transition: background 0.2s, border-color 0.2s;
        }
        .badge:hover { background: var(--orange-pale); border-color: var(--orange); }

        /* ── Other Training Heading ── */
        .other-training-heading {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin: 2rem 0 0;
        }

        /* ── Course Cards ── */
        .courses-section { background: var(--off-white); padding: 4.5rem 1rem; }
        .courses-section h2 {
            font-family: 'Segoe UI', sans-serif;
            text-align: center;
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }
        .courses-section h2::after {
            content: '';
            display: block;
            width: 44px;
            height: 3px;
            background: var(--orange);
            margin: 0.75rem auto 0;
            border-radius: 2px;
        }
        .courses-section > .container > p { text-align: center; margin-bottom: 2.5rem; color: var(--text); }
        .courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
        .course-card {
            background: var(--white);
            border-radius: var(--r-lg);
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.22s, box-shadow 0.22s;
        }
        .course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
        .course-card-header {
            background: var(--navy);
            color: #fff;
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.9rem;
            border-bottom: 2px solid var(--orange);
        }
        .course-card-header .course-icon {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(200,16,46,0.15);
            border-radius: 8px;
            flex-shrink: 0;
            color: var(--orange);
        }
        .course-card-header .course-icon svg { width: 22px; height: 22px; }
        .course-card-header h3 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: -0.01em;
        }
        .course-card-body { padding: 1.35rem 1.5rem; flex: 1; }
        .course-card-body p { font-size: 0.93rem; color: var(--text); line-height: 1.7; margin-bottom: 1rem; }
        .course-card-body ul { padding-left: 1.2rem; margin: 0; }
        .course-card-body ul li { font-size: 0.875rem; color: var(--text); margin-bottom: 0.4rem; line-height: 1.55; }

        /* ── Licence Categories ── */
        .categories-section { background: var(--white); padding: 4.5rem 1rem; }
        .categories-section h2 {
            font-family: 'Segoe UI', sans-serif;
            text-align: center;
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }
        .categories-section h2::after {
            content: '';
            display: block;
            width: 44px;
            height: 3px;
            background: var(--orange);
            margin: 0.75rem auto 0;
            border-radius: 2px;
        }
        .categories-section > .container > p { text-align: center; margin-bottom: 2.5rem; color: var(--text); }
        .categories-table { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
        .categories-table th {
            background: var(--navy);
            color: #fff;
            padding: 0.85rem 1rem;
            text-align: left;
            font-family: 'Jost', sans-serif;
            font-weight: 700;
            letter-spacing: 0.03em;
        }
        .categories-table td {
            padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--border);
            color: var(--text);
        }
        .categories-table tr:nth-child(even) td { background: var(--off-white); }
        .cat-badge {
            display: inline-block;
            background: var(--navy);
            color: #fff;
            border-radius: var(--r);
            padding: 0.2rem 0.65rem;
            font-family: 'Jost', sans-serif;
            font-weight: 700;
            font-size: 0.82rem;
            min-width: 2.5rem;
            text-align: center;
        }

        /* ── Why Choose Us ── */
        .why-section { background: var(--off-white); padding: 4.5rem 1rem; }
        .why-section h2 {
            font-family: 'Segoe UI', sans-serif;
            text-align: center;
            font-size: 2.1rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 2.5rem;
            letter-spacing: -0.02em;
        }
        .why-section h2::after {
            content: '';
            display: block;
            width: 44px;
            height: 3px;
            background: var(--orange);
            margin: 0.75rem auto 0;
            border-radius: 2px;
        }
        .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
        @media (max-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }
        .why-card {
            background: var(--white);
            border-radius: var(--r-lg);
            padding: 1.75rem 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-xs);
            border: 1px solid var(--border);
            border-top: 3px solid var(--green);
            transition: transform 0.22s, box-shadow 0.22s;
        }
        .why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
        .why-card .why-icon {
            width: 52px;
            height: 52px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--green-pale);
            border-radius: 10px;
            color: var(--green);
        }
        .why-card .why-icon svg { width: 26px; height: 26px; }
        .why-card h3 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }
        .why-card p { font-size: 0.875rem; color: var(--text); line-height: 1.65; }

        /* ── Facebook Feed ── */
        .training-fb-section { background: var(--white); padding: 4rem 1rem; text-align: center; }
        .training-fb-section .fb-section-header p { color: #fff; margin-bottom: 0; }
        .training-fb-wrap { display: flex; justify-content: center; }

        /* ── CTA ── */
        .training-cta {
            background: var(--navy-deep);
            color: #fff;
            text-align: center;
            padding: 5rem 1rem;
            position: relative;
            overflow: hidden;
        }
        .training-cta::before {
            content: '';
            position: absolute;
            top: -100px; right: -100px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200,16,46,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .training-cta h2 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            letter-spacing: -0.025em;
            position: relative;
            z-index: 1;
        }
        .training-cta p {
            font-size: 1.05rem;
            opacity: 0.82;
            margin: 0 auto 2.5rem;
            max-width: 560px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        .training-cta .btn { position: relative; z-index: 1; }
        .training-cta .btn-primary { background: var(--orange); color: #fff; }
        .training-cta .btn-primary:hover { background: var(--orange-dark); }

        /* ── Team Cards (Training Dept) ── */
        .team-card { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-xs); border: 1px solid var(--border); overflow: visible; text-align: center; transition: transform 0.22s, box-shadow 0.22s; flex: 0 1 200px; position: relative; z-index: 1; }
        .team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); z-index: 100; }
        .team-card-photo { width: 100%; height: 180px; background: var(--white); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); }
        .team-card-photo-circle { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin: 0 auto; }
        .team-card-photo-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .team-card-body { padding: 1.25rem 1rem 1.5rem; }
        .team-card-body h3 { font-family: 'Segoe UI', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
        .team-card-body .role { font-size: 0.8rem; color: var(--text-light); font-weight: 500; margin-bottom: 0.9rem; }
        .team-card-body p { font-size: 0.85rem; color: var(--text); line-height: 1.55; }
        .team-card-contact { display: flex; justify-content: center; gap: 0.6rem; }
        .team-card-contact a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--off-white); border: 1px solid var(--border); font-size: 1rem; text-decoration: none; transition: background 0.15s, border-color 0.15s; }
        .team-card-contact a:hover { background: var(--orange-pale); border-color: var(--orange); }
        .bio-btn-wrap { position: relative; display: inline-flex; }
        .bio-btn { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--off-white); border: 1px solid var(--border); font-size: 1rem; cursor: default; transition: background 0.15s, border-color 0.15s; }
        .bio-btn-wrap:hover .bio-btn { background: var(--orange-pale); border-color: var(--orange); }
        .bio-popup { display: none; position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); width: 220px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 1rem; text-align: left; z-index: 9999; font-size: 0.8rem; color: var(--text); line-height: 1.5; pointer-events: none; }
        .bio-popup::after { content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 7px solid transparent; border-bottom-color: var(--border); }
        .bio-popup::before { content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-bottom-color: var(--white); z-index: 1; margin-bottom: -1px; }
        .bio-btn-wrap:hover .bio-popup { display: block; }
        .back-wrap { text-align: center; padding: 0.75rem 0; background: var(--navy-deep); }
        .back-link { color: rgba(255,255,255,0.75); font-weight: 600; text-decoration: none; font-size: 0.925rem; }
        .back-link:hover { color: #fff; }

/* ── warehousing.html ── */
/* ── Hero ── */
        .wh-hero {
            background: var(--navy);
            color: #fff;
            text-align: center;
            padding: 5.5rem 1rem 3.5rem;
            position: relative;
            overflow: hidden;
        }
        .wh-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('assets/images/Warehousing.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
        }
        .wh-hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(to right, var(--orange) 0%, var(--orange) 50%, transparent 100%);
        }
        .wh-hero-inner { position: relative; z-index: 1; }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.4);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            padding: 0.32rem 0.9rem;
            border-radius: 100px;
            margin-bottom: 1.2rem;
        }
        .wh-hero h1 {
            font-family: 'Segoe UI', sans-serif;
            font-size: 3.25rem;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0.85rem;
        }
        .wh-hero p {
            font-size: 1.05rem;
            opacity: 0.78;
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.75;
        }

        /* ── Section Labels ── */
        .section-eyebrow {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 0.6rem;
        }
        .section-heading {
            font-family: 'Segoe UI', sans-serif;
            color: var(--navy);
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }

        /* ── Service Rows ── */
        .wh-row {
            padding: 5.5rem 1rem;
        }
        .wh-row--light { background: var(--off-white); }
        .wh-row--white { background: var(--white); }
        .wh-row-heading {
            font-family: 'Segoe UI', sans-serif;
            color: var(--navy);
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0;
        }
        .wh-row-heading::after {
            content: '';
            display: block;
            width: 48px;
            height: 3px;
            background: var(--orange);
            border-radius: 2px;
            margin-top: 0.75rem;
        }

        /* ── Accreditation Cards ── */
        .accred-section {
            background: var(--navy);
            padding: 5.5rem 1rem;
        }
        .accred-section .section-heading { color: #fff; text-align: center; }
        .accred-section .section-eyebrow { display: inline-block; text-align: center; color: #fff; border-bottom: 2px solid var(--orange); padding-bottom: 0.2rem; }
        .accred-intro {
            text-align: center;
            color: rgba(255,255,255,0.6);
            max-width: 520px;
            margin: 0 auto 2.5rem;
            font-size: 0.975rem;
            line-height: 1.75;
        }
        .accred-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .accred-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.1);
            border-top: 3px solid var(--orange);
            border-radius: var(--r-lg);
            padding: 2rem;
        }
        .accred-card .svc-icon {
            width: 44px; height: 44px;
            background: rgba(200,16,46,0.18);
            border-radius: var(--r);
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.1rem;
        }
        .accred-card .svc-icon svg {
            width: 22px; height: 22px;
            stroke: var(--orange); fill: none;
            stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
        }
        .accred-card h3 {
            font-family: 'Segoe UI', sans-serif;
            color: #fff;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        .accred-card > p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.75; }
        .accred-card ul {
            list-style: none;
            padding: 0;
            margin: 1.1rem 0 0;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .accred-card ul li {
            color: rgba(255,255,255,0.7);
            font-size: 0.875rem;
            padding-left: 1rem;
            position: relative;
        }
        .accred-card ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5em;
            width: 5px; height: 5px;
            border-radius: 50%;
            background: var(--orange);
        }

        /* ── Stats Strip ── */
        .wh-stats {
            background: var(--navy);
            padding: 4rem 1rem;
        }
        .stats-grid {
            max-width: 960px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2rem;
            text-align: center;
        }
        .stat-val {
            font-family: 'Segoe UI', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            line-height: 1;
            margin-bottom: 0.35rem;
        }
        .stat-lbl {
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.13em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.65);
        }

        /* ── CTA ── */
        .wh-cta {
            background: var(--navy-deep);
            padding: 5.5rem 1rem;
            text-align: center;
        }
        .wh-cta h2 {
            font-family: 'Segoe UI', sans-serif;
            color: #fff;
            font-size: 2.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
        }
        .wh-cta p {
            color: rgba(255,255,255,0.55);
            font-size: 1rem;
            max-width: 460px;
            margin: 0 auto 2rem;
            line-height: 1.75;
        }
        .cta-row {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        @media (max-width: 640px) {
            .accred-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 600px) {
            .wh-hero h1 { font-size: 2.25rem; }
            .wh-cta h2 { font-size: 1.75rem; }
        }
        .back-wrap { text-align: center; padding: 0.75rem 0; background: var(--navy-deep); }
        .back-link { color: rgba(255,255,255,0.75); font-weight: 600; text-decoration: none; font-size: 0.925rem; }
        .back-link:hover { color: #fff; }
