:root {
    --clr-primary: #0F4C2A;       /* Brand Primary Emerald Forest Green */
    --clr-accent: #BA1C23;        /* Brand High-Performance Crimson Red */
    --clr-gold: #F2A900;          /* Brand Gold */
    --clr-dark: #111827;          /* Deep Neutral */
    --clr-gray-bg: #F8FAFC;      /* Soft Light Gray Background */
    --clr-text: #374151;          /* Readable Body Text */
    --clr-white: #FFFFFF;
    --clr-border: #E5E7EB;
}

/* Global Reset Tweaks */
html {
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--clr-text);
    line-height: 1.6;
}

body {
    background-color: var(--clr-white);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Wide Container with minimal side gaps */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Common Typography & Helper Classes */
.text-center { text-align: center; }

.section-subtitle {
    display: inline-block;
    color: var(--clr-accent);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.section-title {
    color: var(--clr-primary);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-dark);
    margin-bottom: 1rem;
}

/* Grids */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr 1fr;
    }
}
.align-center { align-items: center; }

/* --------------------------------------------------
   SECTION 1: HERO BANNER (60px Padding)
-------------------------------------------------- */
.about-hero {
    position: relative;
    min-height: 480px;
    background: linear-gradient(rgba(15, 76, 42, 0.88), rgba(15, 76, 42, 0.75)), 
                url('../images/hero-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--clr-white);
    padding: 60px 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    background-color: var(--clr-gold);
    color: var(--clr-dark);
    padding: 0.4rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--clr-white);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.breadcrumb {
    font-size: 0.95rem;
    color: var(--clr-gold);
}
.breadcrumb a {
    color: var(--clr-white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}
.breadcrumb a:hover {
    opacity: 0.8;
}

/* --------------------------------------------------
   SECTION 2: HERITAGE (60px Padding)
-------------------------------------------------- */
.section-heritage {
    padding: 60px 0;
}

.heritage-image-wrapper {
    position: relative;
}

.heritage-img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background-color: var(--clr-accent);
    color: var(--clr-white);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(186, 28, 35, 0.4);
}

.badge-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.heritage-highlights {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.heritage-highlights li {
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-check {
    color: var(--clr-primary);
    font-weight: 800;
}

/* --------------------------------------------------
   SECTION 3: STATS COUNTER (60px Padding)
-------------------------------------------------- */
.section-stats {
    background-color: var(--clr-primary);
    padding: 60px 0;
    color: var(--clr-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem;
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--clr-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* --------------------------------------------------
   SECTION 4: PRINCIPLES & VALUES (60px Padding)
-------------------------------------------------- */
.section-principles {
    padding: 60px 0;
    background-color: var(--clr-gray-bg);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.principle-card {
    background-color: var(--clr-white);
    padding: 2.5rem 1.75rem;
    border-radius: 12px;
    border: 1px solid var(--clr-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.principle-card h3 {
    color: var(--clr-primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* --------------------------------------------------
   SECTION 5: FLEET STANDARDS (60px Padding)
-------------------------------------------------- */
.section-fleet-standards {
    padding: 60px 0;
}

.feature-box-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-box {
    padding: 1.25rem;
    border-left: 4px solid var(--clr-accent);
    background-color: var(--clr-gray-bg);
    border-radius: 0 8px 8px 0;
}

.feature-box strong {
    color: var(--clr-dark);
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.rounded-img {
    width: 100%;
    border-radius: 12px;
}

.shadow-lg {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

/* --------------------------------------------------
   SECTION 6: REGIONAL COVERAGE (60px Padding)
-------------------------------------------------- */
.section-coverage {
    padding: 60px 0;
    background-color: var(--clr-gray-bg);
    border-top: 1px solid var(--clr-border);
}

.coverage-text {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.locations-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tag {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* --------------------------------------------------
   SECTION 7: CTA BANNER (60px Padding)
-------------------------------------------------- */
.section-cta {
    padding: 60px 0;
}

.cta-box {
    background-color: var(--clr-primary);
    border-radius: 16px;
    padding: 3.5rem 2.5rem;
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 992px) {
    .cta-box {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cta-title {
    font-size: 2rem;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 0.9rem 1.75rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-gold {
    background-color: var(--clr-gold);
    color: var(--clr-dark);
}
.btn-gold:hover {
    background-color: #d99700;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--clr-white);
    color: var(--clr-white);
}
.btn-outline:hover {
    background-color: var(--clr-white);
    color: var(--clr-primary);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .about-hero {
        min-height: 380px;
        padding: 60px 0;
    }
    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 1.5rem;
    }
    .stat-card:last-child {
        border-bottom: none;
    }
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
    }
}