/* =========================================
   VARIABLES & RESET
   ========================================= */
:root {
    --brand-purple: #32154f;
    --brand-purple-light: #441d6b;
    --brand-magenta: #e6007e;
    --brand-magenta-hover: #cc006f;
    --brand-teal: #00a79d;
    --brand-teal-dark: #007c75;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

a { text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.btn-magenta {
    background-color: var(--brand-magenta);
    color: white;
}
.btn-magenta:hover { background-color: var(--brand-magenta-hover); }

.btn-magenta-outline {
    background-color: transparent;
    color: var(--brand-magenta);
    border-color: var(--brand-magenta);
}
.btn-magenta-outline:hover {
    background-color: var(--brand-magenta);
    color: white;
}

.btn-teal-solid {
    background-color: white;
    color: var(--brand-teal);
    border-color: var(--brand-teal);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* NEW EXACT MATCH DROP-SHADOW BUTTON */
.btn-shadow {
    background-color: #ffffff;
    color: var(--brand-magenta);
    border: 2px solid var(--brand-magenta);
    box-shadow: 4px 4px 0px 0px var(--brand-magenta);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 10px 35px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-shadow:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px var(--brand-magenta);
}

.btn-shadow:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px 0px var(--brand-magenta);
}

/* =========================================
   HEADER
   ========================================= */
header {
    background-color: var(--brand-purple);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    background: var(--brand-magenta);
    color: white;
    width: 32px; height: 32px;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 6px;
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}
.nav-links a:hover { color: var(--brand-magenta); }

/* HEADER ACTIONS & HAMBURGER FOR MOBILE */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-signin {
    background-color: var(--brand-magenta);
    color: white;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}
.btn-signin:hover { background-color: var(--brand-magenta-hover); }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   HERO SECTION (IMAGE BANNER)
   ========================================= */
.hero {
    width: 100%;
    background-color: var(--brand-teal);
    display: block;
}

.hero-banner-link {
    display: block;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-banner-link:hover {
    opacity: 0.95;
}

.hero-banner-link img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

/* =========================================
   COURIER SERVICES
   ========================================= */
.services-intro {
    text-align: center;
    padding: 80px 20px;
    background: white;
}

.services-intro h2 {
    color: var(--brand-purple);
    font-size: 2rem;
    margin-bottom: 20px;
}

.services-intro p {
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
}

.quote-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.main-van-img {
    width: 100%;
    max-width: 800px;
    height: auto; /* Updated from fixed height */
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

/* =========================================
   SERVICE CARDS
   ========================================= */
.service-cards-section {
    background: var(--brand-purple);
    padding: 60px 20px;
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--brand-magenta);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.card-img-wrapper {
    width: 100%;
    height: 160px;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-gray);
    flex-grow: 1;
    margin-bottom: 20px;
}

/* =========================================
   WHAT WE DO
   ========================================= */
.what-we-do {
    padding: 80px 20px;
    background: white;
}

.wwd-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.wwd-text h2 {
    color: var(--brand-purple);
    font-size: 2rem;
    margin-bottom: 15px;
}

.wwd-text p {
    color: var(--text-gray);
    max-width: 700px;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    width: 50px; height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    color: var(--brand-purple);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.feature-text p {
    color: var(--text-gray);
    font-size: 0.85rem;
}

/* =========================================
   MEDICAL COURIER (UPDATED TO MATCH SCREENSHOT EXACTLY)
   ========================================= */
.medical-section {
    background-color: #f2f5f8; /* Light gray background matching screenshot */
    padding: 80px 0 0 0; /* No bottom padding so van overlaps line */
    text-align: center;
}

.medical-content {
    padding: 0 20px;
}

.medical-content h2 {
    color: var(--brand-teal);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.medical-content h3 {
    color: var(--brand-magenta);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.medical-img {
    width: 100%;
    max-width: 800px;
    margin: 40px auto -40px; /* Pulls the image down over the teal section */
    position: relative;
    z-index: 2;
    /* Removed old borders, shadows, and fixed heights for cleaner overlay */
}

.medical-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* NEW FULL-WIDTH SECURITY BANNER */
.security-banner {
    background-color: #48c7b6; /* Exact bright mint/teal from screenshot */
    width: 100%;
    padding: 80px 20px 60px; /* Extra top padding to clear overlapping van */
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.padlock-icon {
    fill: var(--brand-magenta);
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    display: inline-block;
}

.security-banner h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.security-banner p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
    padding: 80px 20px;
    background: white;
}

.testimonials-header h2 {
    color: var(--brand-purple);
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
}

.testimonials-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--brand-magenta);
}

.test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.test-card {
    background: var(--bg-light);
    padding: 40px;
    border-top: 3px solid var(--brand-magenta);
    border-radius: 0 0 8px 8px;
}

.quote-mark {
    color: var(--brand-magenta);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 10px;
    font-family: serif;
}

.test-card p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

/* =========================================
   WHY CHOOSE US & QUOTE BOX
   ========================================= */
.why-choose {
    background: linear-gradient(rgba(50, 21, 79, 0.85), rgba(50, 21, 79, 0.85)), url('img/Bike-Courier-Background.webp') center/cover fixed;
    padding: 100px 20px;
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-list { margin-top: 30px; }
.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.why-list-icon {
    color: var(--brand-magenta);
    background: white;
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
}

.quote-box {
    background: white;
    padding: 40px 30px;
    text-align: center;
    color: var(--text-dark);
    border: 2px solid var(--brand-purple);
    box-shadow: 0px 10px 0px 0px var(--brand-magenta);
    border-radius: 0;
}

.quote-box h3 {
    color: var(--brand-purple);
    margin-bottom: 30px;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
}

.quote-box-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.quote-footer-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--brand-magenta);
    margin: 0;
}

.quote-footer-text a {
    color: var(--brand-purple);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.quote-footer-text a:hover {
    color: var(--brand-magenta);
}

/* =========================================
   STATS & SKYLINE
   ========================================= */
.stats-section {
    padding: 80px 20px 0;
    text-align: center;
    background: white;
}

.stats-section h2 {
    color: var(--brand-purple);
    font-size: 2rem;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    margin-bottom: 40px;
}

.stat-item h3 {
    color: var(--brand-magenta);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--brand-purple);
    font-weight: 600;
    text-transform: uppercase;
}

.skyline {
    width: 100%;
    height: 150px;
    background: repeating-linear-gradient(90deg, #e0e0e0 0px, #e0e0e0 20px, transparent 20px, transparent 40px);
    border-bottom: 5px solid var(--brand-purple);
    opacity: 0.5;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: var(--brand-purple);
    padding: 80px 20px 20px;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo span {
    background: var(--brand-magenta);
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.5rem;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--brand-magenta);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #bbb;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-col ul li a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
    flex-wrap: wrap;
    gap: 20px;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .header-inner { flex-direction: row; gap: 0; flex-wrap: nowrap; }

    /* Mobile Nav Dropdown Styles */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--brand-purple);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .hamburger { display: flex; }
    .btn-signin { padding: 6px 14px; font-size: 0.9rem; }
    .header-actions { gap: 15px; }

    .wwd-header { flex-direction: column; align-items: center; text-align: center; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-item { flex-direction: column; align-items: center; text-align: center; }

    .test-grid { grid-template-columns: 1fr; }

    .why-grid { grid-template-columns: 1fr; }
    .why-text { text-align: center; }
    .why-list li { justify-content: center; }

    .stats-grid { flex-direction: column; gap: 40px; }
}

@media (max-width: 480px) {
    .cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .quote-buttons { flex-direction: column; }
    .quote-buttons .btn { width: 100%; }
    .quote-box-btns { flex-direction: column; }
}
/* =========================================
   ABOUT US: HERO IMAGE
   ========================================= */
.about-hero-image {
    width: 100%;
    display: block;
    background-color: var(--brand-purple); /* Fallback */
}
.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================================
   ABOUT US: INTRO TEXT
   ========================================= */
.about-intro {
    padding: 70px 20px;
    text-align: center;
    background-color: var(--white);
}
.about-intro-inner {
    max-width: 900px;
    margin: 0 auto;
}
.about-intro h3 {
    color: var(--brand-magenta);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-intro h2 {
    color: var(--brand-purple);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.about-intro p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* =========================================
   ABOUT US: ROYAL MAIL BANNER
   ========================================= */
.rm-banner {
    background-color: var(--brand-purple);
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.rm-banner-inner {
    max-width: 900px;
    margin: 0 auto;
}
.rm-logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.rm-logo-wrapper img {
    max-width: 150px;
    height: auto;
}
.rm-banner h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}
.rm-banner p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d1c4e9; /* Slight off-white for body text */
}

/* =========================================
   ABOUT US: WHY CHOOSE US
   ========================================= */
.about-why {
    padding: 80px 20px 60px;
    background-color: var(--white);
}
.about-why-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.why-header {
    margin-bottom: 40px;
}
.why-header h2 {
    color: var(--brand-purple);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* The thin grey line with a pink left edge */
.why-divider {
    width: 100%;
    height: 1px;
    background-color: #eaeaea;
    position: relative;
    margin-bottom: 30px;
}
.why-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 80px;
    height: 3px;
    background-color: var(--brand-magenta);
}

.why-header h3 {
    color: var(--brand-purple);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.why-header h4 {
    color: var(--brand-magenta);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.why-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}
.wcu-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.wcu-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}
.wcu-item h4 {
    color: var(--brand-purple);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.wcu-item p {
    color: var(--brand-magenta);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.5;
}

/* =========================================
   ABOUT US: CALL TO ACTION
   ========================================= */
.about-cta {
    background-color: #f4f6f9;
    text-align: center;
    padding: 100px 20px 80px;
    /* Creates the angled slant top edge seen in the screenshot */
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    margin-top: 40px;
}
.about-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}
.cta-subtitle {
    color: var(--brand-purple);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.cta-phone {
    color: var(--brand-purple);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.cta-title {
    color: var(--brand-purple);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Specific Pink Button for CTA */
.btn-pink-cta {
    background-color: var(--brand-magenta);
    color: white;
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-pink-cta:hover {
    background-color: var(--brand-magenta-hover);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS (ABOUT PAGE ONLY)
   ========================================= */
@media (max-width: 992px) {
    .about-wcu-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cta { clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%); }
}
@media (max-width: 768px) {
    .about-wcu-grid { grid-template-columns: 1fr; }
    .about-intro h2 { font-size: 1.5rem; }
}













/* =========================================
   HERO / BREADCRUMB BANNER
   ========================================= */
.csr-hero-banner {
    width: 100%;
    display: block;
}
.csr-hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================================
   TYPOGRAPHY & GLOBAL PAGE STYLES
   ========================================= */
.page-wrapper {
    background-color: var(--white);
    padding-bottom: 60px;
}
.text-teal { color: var(--brand-teal); }
.text-magenta { color: var(--brand-magenta); text-decoration: none; font-weight: 500; }
.text-magenta:hover { text-decoration: underline; }
.text-purple { color: var(--brand-purple); }
.text-gray { color: var(--text-gray); }

h2.section-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brand-teal);
    margin-bottom: 15px;
}
h3.sub-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}
p.body-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 15px;
}
ul.standard-list {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}
ul.standard-list li { margin-bottom: 5px; }

/* PAGE DIVIDER */
.csr-divider {
    border: 0;
    height: 1px;
    background-color: #e0e0e0;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
}

/* =========================================
   INTRO SECTION
   ========================================= */
.csr-intro {
    padding: 60px 20px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.csr-intro-links {
    margin-top: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-purple);
    line-height: 2.2;
}

/* =========================================
   CONTENT ROWS (Text/Image)
   ========================================= */
.content-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.content-row {
    display: flex;
    align-items: center;
    gap: 40px;
}
.content-row.reverse {
    flex-direction: row-reverse;
}
.col-text {
    flex: 1;
    min-width: 300px;
}
.col-image {
    flex: 1;
    min-width: 300px;
}
.col-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* =========================================
   GOVERNANCE (Checkmark List)
   ========================================= */
.governance-section {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.gov-list {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin: 20px 0 30px;
}
.gov-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-purple);
}
.gov-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background-color: var(--brand-magenta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* =========================================
   FULL WIDTH BANNERS
   ========================================= */
.full-banner {
    width: 100%;
    margin: 40px 0;
}
.full-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   ENVIRONMENTAL & NET ZERO SECTIONS
   ========================================= */
.env-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}
.env-targets {
    text-align: left;
    display: inline-block;
    margin-bottom: 20px;
}
.bold-note {
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0;
}

.net-zero-ad {
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.net-zero-ad img {
    width: 100%;
    display: block;
}

/* =========================================
   BOTTOM ROWS (Consistent Text L, Img R)
   ========================================= */
.bottom-rows .content-row {
    margin-bottom: 60px;
    align-items: flex-start;
}

/* =========================================
   GET IN TOUCH
   ========================================= */
.get-in-touch {
    text-align: center;
    padding: 40px 20px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.get-in-touch p {
    color: var(--brand-magenta);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
    .content-row, .content-row.reverse, .bottom-rows .content-row {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .bottom-rows .content-row { flex-direction: column-reverse; } /* Ensure mobile stacks consistently */
    .col-text, .col-image { width: 100%; }
    h2.section-heading { font-size: 1.4rem; }
}













/* =========================================
   SOLID PINK DROP-SHADOW BUTTON
   ========================================= */
.btn-solid-shadow {
    background-color: var(--brand-magenta);
    color: #ffffff;
    border: 2px solid var(--brand-magenta);
    box-shadow: 4px 4px 0px 0px #cc005c; /* Darker pink shadow */
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 10px 30px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
}
.btn-solid-shadow:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px 0px #cc005c;
}
.btn-solid-shadow:active {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px 0px #cc005c;
}

/* =========================================
   HERO SECTION
   ========================================= */
.work-hero {
    background-color: #ffffff;
    padding: 60px 20px;
}
.work-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-left {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.hero-logo {
    width: 60px;
    height: 60px;
    background-color: var(--brand-magenta);
    color: white;
    font-family: var(--brand-purple);
    font-size: 2.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 auto 20px;
}
.hero-left h1 {
    color: var(--brand-purple);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.hero-left h3 {
    color: var(--text-gray);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.hero-left p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.hero-right {
    flex: 1;
}
.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* =========================================
   JOB PICKER SECTION (PURPLE)
   ========================================= */
.job-picker {
    background-color: var(--brand-purple);
    padding: 60px 20px;
    text-align: center;
}
.job-picker h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
}
.picker-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.picker-card {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.picker-card h4 {
    color: var(--brand-purple);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    min-height: 45px; /* Aligns images uniformly */
}
.picker-img-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}
.picker-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.picker-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* =========================================
   REASONS TO JOIN
   ========================================= */
.reasons-section {
    background-color: #f7f9fa;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Subtle angled background elements to match the screenshot vibe */
.reasons-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: white;
    transform: rotate(15deg);
    z-index: 0;
}
.reasons-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: white;
    transform: rotate(-15deg);
    z-index: 0;
}
.reasons-inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}
.reasons-inner h2 {
    color: var(--brand-magenta);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 50px;
}
.reasons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
}
.reason-item {
    width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Override for bottom row to be 2 items centered */
.reasons-grid .reason-item:nth-child(4),
.reasons-grid .reason-item:nth-child(5) {
    width: calc(50% - 20px);
    max-width: 350px;
}
.reason-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}
.reason-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.reason-item p {
    color: var(--brand-purple);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 250px;
}

/* =========================================
   DETAILED JOB SECTIONS
   ========================================= */
.job-details-wrapper {
    background-color: #ffffff;
    padding: 20px 20px 80px;
}
.job-section {
    max-width: 1000px;
    margin: 0 auto 60px;
}

/* Pink Section Divider Title */
.pink-divider-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.pink-divider-title::before,
.pink-divider-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #f0cce0; /* light pink line */
    margin: 0 20px;
}
.pink-divider-title h2 {
    color: var(--brand-magenta);
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Standard 2 Col Layout */
.job-row {
    display: flex;
    align-items: center;
    gap: 40px;
}
.job-text {
    flex: 1;
    text-align: center;
}
.job-text h3 {
    color: var(--brand-purple);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.job-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}
.job-text .btn-wrapper {
    margin-top: 25px;
}
.job-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.job-image img {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
}

/* Special 2 Col Layout for Van Courier */
.van-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.van-card {
    text-align: center;
}
.van-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.van-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 992px) {
    .picker-grid { grid-template-columns: repeat(2, 1fr); }
    .reason-item,
    .reasons-grid .reason-item:nth-child(4),
    .reasons-grid .reason-item:nth-child(5) {
        width: calc(50% - 20px);
    }
}
@media (max-width: 768px) {
    .work-hero-inner { flex-direction: column; text-align: center; }
    .job-row { flex-direction: column; text-align: center; }
    .van-grid { grid-template-columns: 1fr; }
    .reason-item,
    .reasons-grid .reason-item:nth-child(4),
    .reasons-grid .reason-item:nth-child(5) {
        width: 100%;
    }
    .pink-divider-title::before, .pink-divider-title::after { display: none; }
    .pink-divider-title { border-bottom: 1px solid #f0cce0; padding-bottom: 10px; }
}










/* =========================================
   HERO / BREADCRUMB BANNER
   ========================================= */
.contact-hero-banner {
    width: 100%;
    display: block;
}
.contact-hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================================
   INTRO TEXT
   ========================================= */
.contact-intro {
    text-align: center;
    padding: 50px 20px 30px;
    max-width: 800px;
    margin: 0 auto;
}
.contact-intro h2 {
    color: var(--brand-purple);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.contact-intro p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* =========================================
   CONTACT FORM SECTION
   ========================================= */
.contact-form-wrapper {
    background-color: #f9e4eb; /* Light pink background from screenshot */
    padding: 50px 20px;
    margin-bottom: 60px;
}
.contact-form-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}
.contact-form-inner h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.contact-form-inner p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    background-color: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* reCAPTCHA Mock */
.recaptcha-box {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fafafa;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 10px 15px;
    width: 300px;
    margin-bottom: 25px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.05);
}
.recaptcha-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.recaptcha-checkbox {
    width: 26px;
    height: 26px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    background: white;
    cursor: pointer;
}
.recaptcha-text {
    font-size: 0.85rem;
    color: #444;
    font-weight: 500;
}
.recaptcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.recaptcha-logo svg {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
}
.recaptcha-logo span {
    font-size: 0.55rem;
    color: #888;
}

.btn-submit-form {
    background-color: var(--brand-magenta);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    display: block;
    transition: background-color 0.3s ease;
}
.btn-submit-form:hover {
    background-color: var(--brand-magenta-hover);
}

/* =========================================
   LOCATIONS GRID
   ========================================= */
.locations-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}
.locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}
.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.location-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 15px;
}
.location-card h4 {
    color: var(--brand-purple);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.location-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
    word-break: break-word; /* Helps with long emails like Peterborough */
}

/* Location Icon Colors */
.icon-london { fill: #32154f; }       /* Dark Purple */
.icon-slough { fill: #5ca1e6; }       /* Light Blue */
.icon-birmingham { fill: #ec407a; }   /* Pink */
.icon-manchester { fill: #26a69a; }   /* Teal */
.icon-peterborough { fill: #d32f2f; } /* Red */

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }
}
@media (max-width: 768px) {
    .contact-intro h2 { font-size: 1.8rem; }
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .recaptcha-box {
        width: 100%;
    }
}










/* =========================================
   HERO / BREADCRUMB BANNER
   ========================================= */
.tracking-hero-banner {
    width: 100%;
    display: block;
}
.tracking-hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* =========================================
   TRACKING INTERFACE
   ========================================= */
.tracking-section {
    padding: 80px 20px 100px;
    background-color: #f7f9fa; /* Very light grey for a clean, clinical feel */
    min-height: 60vh;
}

.tracking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 50px 40px;
    text-align: center;
}

.tracking-header {
    margin-bottom: 40px;
}

.tracking-header h1 {
    color: var(--brand-purple);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.tracking-header p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* The Input Form */
.tracking-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

.tracking-input {
    flex: 1;
    padding: 18px 25px;
    font-size: 1.1rem;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tracking-input::placeholder {
    color: #bbb;
    text-transform: none;
    letter-spacing: normal;
}

.tracking-input:focus {
    border-color: var(--brand-magenta);
}

.btn-track {
    background-color: var(--brand-magenta);
    color: var(--white);
    border: none;
    padding: 0 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-track:hover {
    background-color: var(--brand-magenta-hover);
}

/* Help Text */
.tracking-help {
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
}

.tracking-help a {
    color: var(--brand-purple);
    font-weight: 500;
    text-decoration: underline;
}

.tracking-help a:hover {
    color: var(--brand-magenta);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
    .tracking-form {
        flex-direction: column;
    }
    .tracking-input {
        border-right: 2px solid #e0e0e0;
        border-radius: 4px;
        margin-bottom: 15px;
        text-align: center;
    }
    .tracking-input:focus {
        border-color: var(--brand-magenta);
    }
    .btn-track {
        border-radius: 4px;
        padding: 18px 0;
        width: 100%;
    }
    .tracking-header h1 {
        font-size: 1.8rem;
    }
    .tracking-container {
        padding: 40px 20px;
    }
}
