/*
Theme Name: M&J Hauling
Theme URI: https://mjhauling.com
Author: Your Agency Name
Author URI: https://youragency.com
Description: Elite logistics and transport theme for M&J Hauling, Inc.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mj-hauling
*/

/* --- RESET & VARIABLES --- */
:root {
    --primary-blue: #0033A0;
    --deep-navy: #001233;
    --slate-gray: #F4F5F7;
    --pure-white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #555555;
    --border-light: #E1E4E8;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--pure-white);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    color: var(--deep-navy);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.bg-slate {
    background-color: var(--slate-gray);
}

/* Modern Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-blue);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn:hover {
    background-color: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 51, 160, 0.25);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--deep-navy);
}

/* --- HEADER --- */

/* Top Bar */
.top-bar {
    background: var(--deep-navy);
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 25px;
}

.top-bar-contact a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.top-bar-contact a:hover {
    color: white;
}

.top-bar-contact i {
    color: var(--primary-blue);
}

.top-bar-credentials {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.top-bar-credentials span {
    margin: 0 8px;
}

/* Main Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    transition: var(--transition);
}

.header-main {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    z-index: 10002;
    background: white;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 1.2rem;
}

.logo span {
    font-weight: 400;
    color: var(--text-dark);
}

/* Custom Logo Styling */
.custom-logo-link {
    display: flex;
    align-items: center;
}

.custom-logo {
    max-height: 55px;
    width: auto;
    height: auto;
}

.site-header .custom-logo-link img {
    max-height: 55px;
    width: auto;
    transition: var(--transition);
}

.site-header.scrolled .custom-logo {
    max-height: 45px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--deep-navy);
    padding: 12px 22px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:not(.btn)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-blue);
}

.nav-links a:not(.btn):hover::before {
    width: calc(100% - 44px);
}

/* CTA Button in Nav */
.nav-links a.btn.nav-cta {
    margin-left: 15px;
    padding: 12px 28px;
    font-size: 0.8rem;
    background: var(--primary-blue);
    color: white;
}

.nav-links a.btn.nav-cta:hover {
    background: var(--deep-navy);
}

.nav-links a.btn.nav-cta::before {
    display: none;
}

/* WordPress Menu Reset */
.nav-links ul {
    display: flex;
    gap: 0;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links ul li {
    margin: 0;
}

.nav-links ul li a {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--deep-navy);
    padding: 12px 22px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links ul li a:hover {
    color: var(--primary-blue);
}

.nav-links ul li a:hover::before {
    width: calc(100% - 44px);
}

/* Header Accent Line */
.header-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--deep-navy) 100%);
}

/* Mobile Menu Toggle */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    z-index: 10002;
    position: relative;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--deep-navy);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-toggle i {
    pointer-events: none;
}

.mobile-menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--slate-gray);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--deep-navy);
    z-index: 100000;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-close i {
    pointer-events: none;
}

.mobile-menu-close:hover {
    background: var(--primary-blue);
    color: white;
}

/* Override any legacy X pseudo-elements */
.menu-open #menu-main::before,
.menu-open #primary-menu::before,
.nav-links::before,
#primary-menu::before {
    display: none !important;
    content: none !important;
}
/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mobile-menu-close {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        right: auto !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #ffffff !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        z-index: 99999 !important;
        padding: 80px 20px 40px !important;
        overflow-y: auto !important;
        transition: left 0.3s ease !important;
    }
    
    /* Menu open state - triggered by JS adding .is-open class */
    .nav-links.is-open {
        left: 0 !important;
    }
    
    .nav-links a {
        font-size: 1.3rem;
        padding: 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-light);
        color: var(--deep-navy);
    }
    
    .nav-links a:last-of-type {
        border-bottom: none;
    }
    
    .nav-links a::before {
        display: none !important;
    }
    
    .nav-links a.btn.nav-cta {
        margin: 30px 0 0 0;
        width: auto;
        padding: 15px 40px;
        border-bottom: none;
    }
    
    /* WordPress menu list items */
    .nav-links ul {
        flex-direction: column;
        width: 100%;
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-links ul li {
        width: 100%;
    }
    
    .nav-links ul li a {
        font-size: 1.3rem;
        padding: 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-light);
        display: block;
        color: var(--deep-navy);
    }
    
    .nav-links ul li:last-child a {
        border-bottom: none;
    }
    
    .nav-links ul li a::before {
        display: none !important;
    }
}

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    min-height: 600px;
    background: linear-gradient(to right, rgba(0, 18, 51, 0.9), rgba(0, 18, 51, 0.6)), url('') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 125px; /* Account for fixed header */
}

.hero-content {
    max-width: 800px;
    padding-left: 20px;
}

.hero-label {
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* --- INTRO / ABOUT SECTION --- */
.intro-text-section {
    max-width: 800px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.intro-text-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.img-wrapper {
    position: relative;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.img-wrapper:hover img {
    transform: scale(1.03);
}

.feature-list {
    margin-top: 30px;
}

.feature-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-row-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 51, 160, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-row h4 {
    margin-bottom: 8px;
}

.feature-row p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* --- METRICS / STATS --- */
.metrics-section {
    background-color: var(--deep-navy);
    color: white;
    padding: 80px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
}

.metric-item {
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.metric-item:last-child {
    border-right: none;
}

.metric-val {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* --- REPOWER / SERVICES SECTION --- */
.repower-section {
    background-color: var(--slate-gray);
}

.repower-banner {
    background-color: white;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.repower-content {
    flex: 1;
    padding-right: 40px;
}

.repower-content h3 {
    margin-bottom: 15px;
}

.repower-content p {
    margin-bottom: 0;
}

.repower-icon-large {
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.2;
}

/* --- QUOTE FORM --- */
.quote-section {
    background-color: white;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
}

.form-section-title {
    margin-bottom: 25px;
    font-size: 1rem;
    color: var(--primary-blue);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.input-field {
    padding: 16px;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 51, 160, 0.05);
}

textarea.input-field {
    resize: vertical;
    min-height: 120px;
}

.input-group.full-width {
    margin-bottom: 30px;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    width: 100%;
    max-width: 300px;
}

.success-message {
    display: none;
    padding: 20px;
    background-color: #F0F9F4;
    color: #1B5E20;
    border-left: 4px solid #4CAF50;
    margin-bottom: 30px;
}

/* Contact Form 7 Overrides */
.wpcf7 .wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #E0E0E0;
    background: #FAFAFA;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.2s;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 51, 160, 0.05);
}

.wpcf7-response-output {
    margin: 20px 0 !important;
    padding: 15px 20px !important;
    border-radius: 0 !important;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--deep-navy);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
    font-size: 0.95rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer Brand */
.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: 20px;
}

/* Apply filter only if using the main logo (not a custom footer logo) */
.footer-brand .footer-logo.inverted {
    filter: brightness(0) invert(1);
}

.footer-site-name {
    color: white;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.6);
}

.footer-credentials-badge {
    display: flex;
    gap: 20px;
}

.footer-credentials-badge span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    padding: 8px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-credentials-badge i {
    color: var(--primary-blue);
}

/* Footer Navigation */
.footer-nav h5,
.footer-contact h5 {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-nav h5::after,
.footer-contact h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: white;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact ul li {
    margin-bottom: 15px;
}

.footer-contact ul li a,
.footer-contact ul li span {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: white;
}

.footer-contact ul li i {
    color: var(--primary-blue);
    width: 18px;
    font-size: 0.9rem;
}

/* Footer Bottom */
.footer-btm {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

/* --- COMPANY OVERVIEW PAGE --- */

/* Overview Hero */
.overview-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--primary-blue) 100%);
    padding: 180px 0 120px;
    margin-top: 125px; /* Account for fixed header */
    position: relative;
    overflow: hidden;
}

.overview-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.overview-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.overview-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
}

.overview-hero-graphic {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-stat-float {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 50px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-stat-float .stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-stat-float .stat-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Mission Section */
.overview-mission {
    background: white;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--slate-gray);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 30px;
}

.mission-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.mission-statement {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
}

/* Green Initiative Section */
.green-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.green-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.green-content .lead-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.green-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.green-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 25px;
    background: white;
    border-left: 3px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

.green-feature:hover {
    transform: translateX(5px);
}

.green-feature i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-top: 3px;
}

.green-feature strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--deep-navy);
    margin-bottom: 5px;
}

.green-feature span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.green-visual {
    position: relative;
}

.green-image-stack {
    position: relative;
}

.green-image-main img {
    width: 100%;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.green-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary-blue);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 51, 160, 0.3);
}

.green-badge i {
    font-size: 2rem;
}

.green-badge span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Track Record Section */
.record-showcase {
    margin-top: 60px;
}

.record-main {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--primary-blue) 100%);
    margin-bottom: 40px;
}

.record-circle {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.3);
}

.record-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.record-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.record-details h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.record-details p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.record-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.record-stat {
    display: flex;
    gap: 25px;
    padding: 40px;
    background: var(--slate-gray);
    transition: all 0.4s ease;
}

.record-stat:hover {
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.record-stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(220, 53, 69, 0.1);
    color: #DC3545;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.record-stat-icon.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28A745;
}

.record-stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1;
}

.record-stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin: 8px 0 12px;
}

.record-stat-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Timeline Section */
.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.timeline-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.timeline-clock {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.timeline-pulse {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.timeline-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.timeline-content .lead-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.timeline-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.timeline-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    transition: all 0.3s ease;
}

.timeline-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.timeline-list li i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    width: 25px;
}

.timeline-list li span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Re-Power Section */
.repower-showcase {
    background: var(--slate-gray);
    padding: 60px;
}

.repower-header {
    text-align: center;
    margin-bottom: 50px;
}

.repower-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.repower-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.repower-explanation .lead-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
}

.repower-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.repower-benefit {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    transition: all 0.3s ease;
}

.repower-benefit:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.repower-benefit h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.repower-benefit p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.repower-promise {
    text-align: center;
    padding: 40px;
    background: white;
    position: relative;
}

.repower-promise i {
    font-size: 2rem;
    color: var(--primary-blue);
    opacity: 0.3;
    margin-bottom: 15px;
}

.repower-promise blockquote {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-navy);
    font-style: italic;
    margin: 0;
}

/* Why Choose Us / Advantage Section */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-bottom-color: var(--primary-blue);
}

.advantage-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.15;
    display: block;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Overview CTA */
.overview-cta {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0A1F44 100%);
    padding: 100px 0;
    text-align: center;
}

.overview-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.overview-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.overview-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
}

.btn-outline-dark:hover {
    background: white;
    color: var(--deep-navy);
    border-color: white;
}

.cta-credentials {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.cta-credentials .separator {
    opacity: 0.3;
}

/* --- CONTACT US PAGE --- */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--primary-blue) 100%);
    padding: 180px 0 100px;
    margin-top: 125px; /* Account for fixed header */
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Method Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--slate-gray);
    padding: 50px 40px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: all 0.4s ease;
}

.contact-card:hover {
    background: white;
    border-bottom-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: white;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: var(--primary-blue);
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.contact-card-link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a.contact-card-link:hover {
    color: var(--deep-navy);
}

/* Direct Contacts Section */
.direct-contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.direct-contact-card {
    background: white;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.direct-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.direct-contact-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--primary-blue) 100%);
}

.direct-contact-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.direct-contact-avatar span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.direct-contact-header h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.direct-contact-title {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.direct-contact-body {
    padding: 30px;
}

.direct-contact-body p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.direct-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.direct-contact-info a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 12px 15px;
    background: var(--slate-gray);
    transition: all 0.3s ease;
}

.direct-contact-info a:hover {
    background: var(--primary-blue);
    color: white;
}

.direct-contact-info a i {
    width: 20px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.direct-contact-info a:hover i {
    color: white;
}

/* Contact Form Section */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-form-info > p {
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-form-extras {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-extra-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--slate-gray);
    border-left: 3px solid var(--primary-blue);
}

.contact-extra-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.contact-extra-item strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--deep-navy);
    margin-bottom: 3px;
}

.contact-extra-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-credentials {
    display: flex;
    gap: 25px;
}

.contact-credentials span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-credentials i {
    color: var(--primary-blue);
}

.contact-form-container {
    background: white;
    padding: 50px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.08);
    border: 1px solid var(--border-light);
}

.contact-form .input-group {
    margin-bottom: 20px;
}

.btn-full {
    width: 100%;
}

/* Map Section */
.contact-map {
    height: 400px;
    background: var(--deep-navy);
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0A1F44 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    color: white;
}

.map-overlay i {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.map-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.map-overlay span {
    font-size: 1rem;
    opacity: 0.7;
}

/* --- ABOUT US PAGE --- */

/* About Hero */
.about-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--primary-blue) 100%);
    padding: 180px 0 100px;
    margin-top: 125px; /* Account for fixed header */
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.about-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.about-story {
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.story-content .lead-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--slate-gray);
    border-left: 4px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

.story-stat-item:hover {
    transform: translateX(5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.story-stat-item strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--deep-navy);
    font-weight: 700;
}

.story-stat-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: white;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.value-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    position: relative;
}

.value-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Leadership Section */
.about-leadership {
    background: white;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    background: var(--slate-gray);
    overflow: hidden;
    transition: all 0.4s ease;
}

.leader-card:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.leader-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,18,51,0.9));
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
    transform: translateY(0);
}

.leader-social {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.leader-social:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
}

.leader-info {
    padding: 35px;
}

.leader-title {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    margin-bottom: 15px;
}

.leader-info h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.leader-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.leader-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.leader-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.leader-contact a:hover {
    color: var(--primary-blue);
}

.leader-contact i {
    width: 20px;
    color: var(--primary-blue);
}

/* Driving Team Section */
.about-team {
    overflow: hidden;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.team-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    padding: 20px 25px;
    background: white;
    border-left: 4px solid var(--primary-blue);
}

.team-highlight i {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-top: 3px;
}

.team-highlight span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.drivers-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.driver-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.driver-card:hover {
    border-bottom-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.driver-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--slate-gray) 0%, #E8EAF0 100%);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.driver-card:hover .driver-icon {
    background: var(--primary-blue);
    color: white;
}

.driver-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--deep-navy);
}

.driver-role {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.driver-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 51, 160, 0.08);
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.driver-badge i {
    font-size: 0.7rem;
}

/* About CTA */
.about-cta {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #0A1F44 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.about-cta .btn {
    background: white;
    color: var(--deep-navy);
}

.about-cta .btn:hover {
    background: var(--primary-blue);
    color: white;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .repower-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .repower-content {
        padding-right: 0;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        border: none;
    }
    
    .metric-item {
        border: none;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-credentials-badge {
        justify-content: center;
    }
    
    .footer-nav h5::after,
    .footer-contact h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact ul li a,
    .footer-contact ul li span {
        justify-content: center;
    }
    
    /* About Page Responsive */
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 40px 30px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .drivers-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Contact Page Responsive */
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 40px 30px;
    }
    
    .direct-contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-credentials {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Company Overview Responsive */
    .overview-hero h1 {
        font-size: 2.5rem;
    }
    
    .overview-hero-graphic {
        display: none;
    }
    
    .green-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .green-visual {
        order: -1;
    }
    
    .green-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
    }
    
    .record-main {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .record-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .timeline-visual {
        order: -1;
        padding: 30px;
    }
    
    .repower-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Mobile Header */
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar-inner {
        flex-direction: column;
        gap: 5px;
    }
    
    .top-bar-contact {
        gap: 15px;
        font-size: 0.8rem;
    }
    
    .top-bar-credentials {
        display: none;
    }
    
    /* Mobile Logo Sizing */
    .custom-logo {
        max-height: 45px;
    }
    
    .site-header .custom-logo-link img {
        max-height: 45px;
    }
    
    .hero {
        height: auto;
        padding: 100px 0 80px;
        margin-top: 100px; /* Smaller header on mobile */
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .form-wrapper {
        padding: 30px;
    }
    
    .footer-btm {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-credentials-badge {
        flex-direction: column;
        gap: 10px;
    }
    
    /* About Page Mobile */
    .about-hero {
        padding: 100px 0 80px;
        margin-top: 100px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .story-content h2,
    .team-intro h2,
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .leader-info {
        padding: 25px;
    }
    
    .leader-info h3 {
        font-size: 1.5rem;
    }
    
    .about-cta {
        padding: 70px 0;
    }
    
    .value-number {
        font-size: 3rem;
    }
    
    /* Contact Page Mobile */
    .contact-hero {
        padding: 100px 0 80px;
        margin-top: 100px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-form-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .map-overlay p {
        font-size: 1.2rem;
    }
    
    /* Company Overview Mobile */
    .overview-hero {
        padding: 100px 0 80px;
        margin-top: 100px;
    }
    
    .overview-hero h1 {
        font-size: 2rem;
    }
    
    .overview-hero p {
        font-size: 1.1rem;
    }
    
    .mission-statement {
        font-size: 1.15rem;
    }
    
    .green-content h2,
    .timeline-content h2,
    .repower-header h2,
    .overview-cta h2 {
        font-size: 2rem;
    }
    
    .record-circle {
        width: 150px;
        height: 150px;
    }
    
    .record-number {
        font-size: 2.5rem;
    }
    
    .record-details h3 {
        font-size: 1.5rem;
    }
    
    .repower-showcase {
        padding: 40px 25px;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .overview-cta {
        padding: 70px 0;
    }
}