/* --- 1. CORE VARIABLES & RESET --- */
:root {
    --primary-color: #0F213A;    /* Deep Navy */
    --secondary-color: #26C6DA;  /* Cyan/Turquoise */
    --accent-color: #FF5E35;     /* Orange/Red */
    --light-gray: #f4f7f6;
    --text-color: #333333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- 2. UTILITY CLASSES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 35px; /* Larger buttons */
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.section-padding { padding: 100px 0; } /* Increased breathing room */
.text-center { text-align: center; }

.section-title {
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    font-size: 2.2rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

/* --- 3. HEADER & NAV --- */
header {
    background-color: var(--primary-color);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.top-bar {
    background-color: #081424;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}



.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.logo span { color: var(--white); }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--secondary-color); }

/* --- 4. HERO SECTION (Updated) --- */
.hero {
    /* Added a dark overlay gradient to make text pop */
    background: linear-gradient(rgba(15, 33, 58, 0.9), rgba(15, 33, 58, 0.7)), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 85vh; /* Taller hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-bottom: 50px; /* Space for the stats overlap */
}

.legacy-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem; /* Massive Headline */
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-btns { display: flex; justify-content: center; gap: 15px; }

/* =========================================
   ANIMATED NETWORK HERO (2026 STYLE)
   ========================================= */

.hero-animated {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    background-color: #000814; /* Deep corporate dark blue */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#networkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000814 90%);
    z-index: 2;
    pointer-events: none;
}

.hero-content-animated {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Glass Panel Design */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 24px;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Badge */
.badge-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 74, 173, 0.2);
    border: 1px solid rgba(0, 74, 173, 0.5);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ffcc00;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffcc00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.badge-text {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Typography */
.hero-animated h1 {
    font-size: 4.5rem;
    color: #fff;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.text-highlight {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-animated p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

/* Buttons */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary-glow {
    background: #004aad;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(0, 74, 173, 0.4);
    transition: 0.3s;
    border: none;
}

.btn-primary-glow:hover {
    background: #003380;
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 74, 173, 0.6);
}

.btn-secondary-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Stats Strip */
.stats-strip {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-box h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-animated h1 { font-size: 2.5rem; }
    .glass-panel { padding: 30px 20px; margin: 0 15px; }
    .btn-group { flex-direction: column; }
    .stats-strip { gap: 20px; }
}

/* --- 5. PREMIUM STATS OVERLAY (NEW) --- */
.stats-overlay {
    position: relative;
    z-index: 10;
}

.stats-box {
    background: var(--white);
    margin-top: -80px; /* The Magic Float Effect */
    padding: 40px 0;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); /* Deep premium shadow */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-item p {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Vertical line between stats */
.stat-separator {
    width: 1px;
    height: 60px;
    background-color: #e0e0e0;
}

/* --- 6. INTRO / ABOUT --- */
.intro { background-color: var(--white); padding-top: 120px; /* Extra padding because of overlap */ }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.intro-text h4 { color: var(--secondary-color); letter-spacing: 1px; margin-bottom: 10px; font-size: 0.9rem; }
.intro-text h2 { margin-bottom: 25px; font-size: 2.5rem; line-height: 1.3; }
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 20px;
    transition: transform 0.3s;
}
.read-more-link:hover { transform: translateX(5px); }

.intro-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0px var(--light-gray); /* Offset shadow style */
}

/* --- 7. SERVICES SECTION (2-Card Layout) --- */
.services { background-color: var(--light-gray); }

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 50px;
}

.service-card {
    background: var(--white);
    padding: 60px 50px; /* Large padding */
    border-radius: 8px;
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    top: 0;
}

.service-card:hover {
    top: -10px; /* Smooth lift effect */
    border-bottom: 4px solid var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 60px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-card h3 { margin-bottom: 20px; font-size: 1.6rem; }
.service-card p { font-size: 1.1rem; color: #555; }

/* --- 8. WHY CHOOSE US (Features) --- */
.why-us {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    background: rgba(255,255,255,0.05); /* Glass effect */
    padding: 30px 20px;
    border-radius: 8px;
    transition: background 0.3s;
}

.feature-item:hover { background: rgba(255,255,255,0.1); }

.feature-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-item h4 { color: var(--secondary-color); margin-bottom: 15px; font-size: 1.1rem; }
.feature-item p { font-size: 0.9rem; opacity: 0.8; }

/* --- 9. CTA & FOOTER --- */
.cta-section {
    background: linear-gradient(to right, var(--primary-color), #091629);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-section h2 { color: var(--white); margin-bottom: 20px; }

footer {
    background-color: #050d18; /* Darker than primary */
    color: #aaa;
    padding: 80px 0 30px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 { color: var(--white); margin-bottom: 25px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { transition: 0.3s; }
.footer-col ul li a:hover { color: var(--secondary-color); padding-left: 5px; }

.contact-info li { display: flex; align-items: flex-start; gap: 15px; }
.contact-info i { color: var(--accent-color); margin-top: 5px; }

.copyright {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    color: #666;
}

/* --- 10. FLEET SECTION STYLES --- */
.fleet-section { background-color: var(--white); }

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.fleet-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.fleet-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fleet-card:hover .fleet-img img { transform: scale(1.1); }

.capacity-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}

.fleet-info { padding: 25px; }

.fleet-info h3 { margin-bottom: 10px; font-size: 1.3rem; }
.fleet-info p { font-size: 0.95rem; color: #666; margin-bottom: 15px; }

.fleet-features {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* --- 11. CLIENTS SECTION STYLES --- */
.clients-section { background-color: #fafafa; }

.client-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
    align-items: center;
}

.client-logo {
    background: #fff;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #eee;
    color: #ccc;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
}

.client-logo i { font-size: 24px; margin-bottom: 5px; }

.client-logo:hover {
    border-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- 12. CONTACT FORM SECTION STYLES --- */
.contact-section { background-color: var(--primary-color); color: var(--white); }

/* Make the title white for this section specifically */
.contact-section .section-title { color: var(--white); }

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Form is slightly wider */
    gap: 60px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Left Side (Dark Blue) */
.contact-info-box {
    background-color: #081424;
    padding: 50px;
    color: #fff;
}

.contact-info-box h3 { color: var(--white); font-size: 1.8rem; margin-bottom: 20px; }
.contact-info-box p { opacity: 0.8; margin-bottom: 40px; }

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--accent-color);
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h5 { font-size: 1.1rem; margin-bottom: 5px; color: var(--secondary-color); }

/* Right Side (White Form) */
.contact-form-box {
    padding: 50px;
    background-color: var(--white);
    color: var(--text-color);
}

.contact-form-box h3 { margin-bottom: 30px; }

.form-group { margin-bottom: 20px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border 0.3s;
    background-color: #f9f9f9;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: #fff;
}

/* --- 13. FOOTER ANIMATION STYLES --- */

/* Wrapper for the animation area */
.footer-animation {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden; /* Prevents scrollbar when cars move off screen */
    margin-top: 0px;
    /* border-top: 1px solid rgba(255,255,255,0.05); */
}

/* Moving City Background */
.city-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* You can replace this URL with your own city skyline image */
    background: url('IMG/cityback.png') repeat-x bottom;
    background-size: 1000px 100%; /* Adjust based on your image size */
    opacity: 0.3; /* Makes it blend with the dark footer */
    animation: moveCity 60s linear infinite;
    z-index: 1;
}

/* Track for vehicles to stay on the "road" */
.vehicle-track {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100px;
    z-index: 2;
}

/* General Vehicle Styling */
.vehicle {
    position: absolute;
    bottom: 0;
    /* Starts off-screen to the right */
    right: -200px; 
}

/* Specific Vehicle Settings */

/* 1. BUS (Slowest, Biggest) */
.bus {
    width: 220px;
    animation: driveVehicle 21s linear infinite;
}

/* 2. TAXI (Medium Speed) */
.taxi {
    width: 140px;
    bottom: 0px;
    animation: driveVehicle 15s linear infinite;
    animation-delay: 19s; /* Waits 5 seconds before starting */
}

/* 3. CAR (Fastest) */
.car {
    width: 120px;
    bottom: 0px;
    animation: driveVehicle 10s linear infinite;
    animation-delay: 2s; /* Waits 2 seconds before starting */
}

/* --- KEYFRAME ANIMATIONS --- */

/* Move vehicles from Right to Left */
@keyframes driveVehicle {
    from {
        right: -200px; /* Start outside right screen */
    }
    to {
        right: 110%; /* End outside left screen */
    }
}

/* Move background slowly to create parallax effect */
@keyframes moveCity {
    from {
        background-position: 0 bottom;
    }
    to {
        background-position: -1000px bottom;
    }
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

/* --- Page Banner --- */
.page-banner {
    /* Uses the same blue overlay style as your hero */
    background: linear-gradient(rgba(0, 74, 173, 0.8), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1494515855673-102c2498b2f3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-banner h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 1.1rem;
    color: #ffcc00; /* Matching your accent color */
    font-weight: 600;
}

/* --- About Main Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .sub-heading {
    color: #004aad; /* Primary Blue */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content .lead-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
    border-left: 4px solid #ffcc00;
    padding-left: 15px;
}

.about-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.signature-block {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.signature-img {
    height: 60px;
    opacity: 0.7;
}

.signature-block h5 {
    font-size: 1.1rem;
    color: #004aad;
    margin-bottom: 2px;
}

.signature-block .designation {
    font-size: 0.85rem;
    color: #777;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #004aad;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border: 4px solid #fff;
}

.exp-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #ffcc00;
}

.exp-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- Vision & Mission --- */
.vision-mission-section {
    background-color: #f4f6f9;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-card .icon-box {
    width: 60px;
    height: 60px;
    background: #e6eff9;
    color: #004aad;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.vm-card p {
    color: #666;
}

/* Accent Card Style */
.vm-card.accent-card {
    background: #004aad;
    color: #fff;
}

.vm-card.accent-card .icon-box {
    background: rgba(255,255,255,0.1);
    color: #ffcc00;
}

.vm-card.accent-card h3 {
    color: #fff;
}

.vm-card.accent-card p {
    color: #e0e0e0;
}

/* --- Core Values --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

.value-item:hover {
    border-color: #004aad;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-item i {
    font-size: 2.5rem;
    color: #004aad;
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.value-item p {
    font-size: 0.9rem;
    color: #666;
}

/* --- Responsive for About Page --- */
@media (max-width: 992px) {
    .about-grid, .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 40px;
        order: -1; /* Image on top on mobile */
    }
    
    .exp-badge {
        right: 20px;
        left: auto;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    .page-banner h1 {
        font-size: 2rem;
    }
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */

.why-choose-us {
    background-color: #fff; /* White background */
}

.why-choose-us .section-desc {
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #666;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns by default */
    gap: 40px;
}

.wcu-card {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 5px solid transparent;
    transition: all 0.3s ease;
}

.wcu-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid #ffcc00; /* Accent yellow border on hover */
    transform: translateY(-5px);
}

.wcu-icon {
    min-width: 60px;
    height: 60px;
    background-color: #004aad; /* Corporate Blue */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 25px;
    flex-shrink: 0;
}

.wcu-text h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.wcu-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Make the 5th item span full width or center it */
.wcu-card.wcu-center {
    grid-column: 1 / -1; /* Spans across both columns */
    width: 70%; /* Limit width so it doesn't look too stretched */
    margin: 0 auto; /* Center it */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wcu-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
    }
    
    .wcu-card.wcu-center {
        width: 100%; /* Full width on mobile */
        grid-column: auto;
    }
    
    .wcu-card {
        flex-direction: column; /* Icon on top on mobile */
        text-align: center;
        align-items: center;
    }
    
    .wcu-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* =========================================
   OUR VALUES SECTION
   ========================================= */

.values-section {
    background-color: #f4f6f9; /* Light Grey Background */
    position: relative;
}

.title-separator {
    width: 60px;
    height: 4px;
    background-color: #ffcc00; /* Accent Yellow */
    margin: 10px auto 50px auto;
    border-radius: 2px;
}

.values-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-box {
    background: #fff;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid #004aad; /* Blue bottom border on hover */
}

/* Big Faded Number in Background */
.value-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 6rem;
    font-weight: 800;
    color: #f0f0f0;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
}

.value-box:hover .value-number {
    color: #eef2f6; /* Slightly darker on hover */
}

.value-content {
    position: relative;
    z-index: 2; /* Ensures text is above the number */
}

.icon-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-header i {
    font-size: 2rem;
    color: #004aad;
    margin-right: 15px;
}

.icon-header h3 {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: #333;
}

.value-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .values-wrapper {
        grid-template-columns: 1fr; /* Stack 1 column on mobile */
    }
    
    .value-box {
        padding: 30px;
    }
    
    .value-number {
        font-size: 4rem;
    }
}

/* =========================================
   STYLISH CLIENTS SECTION
   ========================================= */

.clients-section {
    padding: 100px 0;
    /* Subtle gradient background for premium feel */
    background: linear-gradient(to bottom, #ffffff, #f4f6f9);
    position: relative;
    overflow: hidden;
}

.clients-section .section-title {
    margin-bottom: 20px;
}

.clients-grid {
    display: grid;
    /* Auto-fit creates a responsive grid that fills the space */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px;
    margin-top: 50px;
}

.client-logo {
    height: 120px; /* Fixed height for consistency */
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Soft shadow for depth */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    padding: 20px;
    cursor: pointer;
    position: relative;
}

.client-logo img {
    max-width: 85%;
    max-height: 85%;
    /* Grayscale by default for professional look */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    /* Start slightly smaller */
    transform: scale(0.95); 
}

/* --- Hover Effects --- */
.client-logo:hover {
    /* Lift the card up */
    transform: translateY(-10px);
    /* Stronger shadow with blue tint on hover */
    box-shadow: 0 15px 30px rgba(0, 74, 173, 0.15);
    border-color: #004aad; /* Blue border reveal */
}

.client-logo:hover img {
    /* Bring back color */
    filter: grayscale(0%);
    opacity: 1;
    /* Zoom in slightly */
    transform: scale(1.1); 
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on mobile */
        gap: 15px;
    }
    
    .client-logo {
        height: 100px;
    }
}

/* =========================================
   MODERN STATS SECTION (PARALLAX + ANIMATION)
   ========================================= */

.stats-modern-parallax {
    position: relative;
    /* Large background image */
    background: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* Creates the Parallax Effect */
    padding: 120px 0; /* Huge padding for a larger section */
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.stats-modern-parallax .overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 8, 20, 0.85); /* Deep dark blue tint */
    z-index: 1;
}

.stats-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Header Styling */
.stats-header {
    margin-bottom: 70px;
}

.stats-header .sub-title {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffcc00;
    margin-bottom: 10px;
    font-weight: 700;
}

.stats-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.separator-line {
    width: 80px;
    height: 5px;
    background: #ffcc00;
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid Styling */
.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.05); /* Glass effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffcc00;
}

.stat-card-modern i {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 20px;
    display: block;
}

/* Number and Plus Sign Styling */
.stat-number, .plus {
    display: inline-block;
    font-size: 3.5rem; /* Massive numbers */
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .stats-header h2 { font-size: 2.8rem; }
    .stats-grid-large { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 576px) {
    /* .top-bar-middle {    display: none;} */
    .stats-header h2 { font-size: 2.2rem; }
    .stats-grid-large { grid-template-columns: 1fr; }
    .stat-number, .plus { font-size: 3rem; }
}


/* --- MOBILE ADJUSTMENT --- */
@media (max-width: 768px) {
    .footer-animation {
        height: 150px; /* Smaller height on phone */
    }
    .city-bg { background-size: 800px 100%; }
    .vehicle { width: 60px; } /* Smaller vehicles */
    .bus { width: 130px; }
}

/* --- MOBILE RESPONSIVE UPDATES --- */
@media (max-width: 768px) {
    .client-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-wrapper { grid-template-columns: 1fr; } /* Stack form */
    
    .contact-info-box, .contact-form-box { padding: 30px; }
    
    .form-row { grid-template-columns: 1fr; }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    .nav-links { display: none; }
    
    /* Mobile Stats */
    .stats-box { 
        flex-direction: column; 
        gap: 30px; 
        margin-top: -50px;
        padding: 30px 10px;
    }
    .stat-separator { 
        width: 50px; 
        height: 1px; /* Horizontal line on mobile */
    }
    
    .intro-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; } /* 1 column mobile */
    .features-grid { grid-template-columns: 1fr 1fr; }
}

  /* =========================================
           1. CORE STYLES & VARIABLES
           ========================================= */
        :root {
            --primary: #0F213A;   /* Deep Navy */
            --secondary: #26C6DA; /* Cyan/Turquoise */
            --accent: #FF5E35;    /* Orange */
            --text-dark: #333;
            --text-light: #555;
            --white: #fff;
            --google-yellow: #FBBC05; /* For Star Ratings */
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
        h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; }
        a { text-decoration: none; transition: 0.3s; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; }
        .container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .section-padding { padding: 80px 0; }

        /* --- BUTTONS --- */
        .btn-accent { background-color: var(--accent); color: var(--white); padding: 12px 30px; border-radius: 5px; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; display: inline-block; border: none; }
        .btn-accent:hover { background-color: var(--primary); color: var(--white); }
        .btn-outline { border: 2px solid var(--accent); color: var(--accent); padding: 12px 30px; border-radius: 5px; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; display: inline-block; }
        .btn-outline:hover { background-color: var(--accent); color: var(--white); }
        .btn-book { background-color: var(--accent); color: var(--white); padding: 8px 20px; border-radius: 4px; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; }
        .btn-book:hover { background-color: var(--white); color: var(--primary); }

        /* --- HEADER & NAVIGATION --- */
        .top-bar { background-color: var(--primary); color: var(--white); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .top-bar-flex { display: flex; justify-content: space-between; align-items: center; }
        .top-logo-left, .top-logo-right { height: 90px; width: auto; object-fit: contain; } 
        .top-bar-middle { display: flex; align-items: center; gap: 25px; }
        .social-icons a { color: rgba(255,255,255,0.8); margin: 0 5px; font-size: 1rem; }
        .social-icons a:hover { color: var(--secondary); }
        .contact-info-top { font-size: 0.9rem; font-weight: 500; display: flex; gap: 20px; }
        .contact-info-top i { color: var(--accent); margin-right: 5px; }

        header { background-color: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
        .nav-container-flex { display: flex; justify-content: space-between; align-items: center; height: 70px; }
        .navbar-brand { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
        .navbar-brand span { color: var(--accent); }
        .nav-links { display: flex; gap: 40px; align-items: center; list-style: none; }
        .nav-links > li > a { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--primary); text-transform: uppercase; padding: 10px 0; display: block; position: relative; }
        .nav-links > li > a:hover, .nav-links > li > a.active { color: var(--accent); }
        .nav-links > li > a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--accent); transition: width 0.3s; }
        .nav-links > li > a:hover::after { width: 100%; }
        .hamburger { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

        /* Dropdown */
        .nav-links li { position: relative; }
        .dropdown-content { display: none; position: absolute; background-color: var(--white); min-width: 240px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); top: 100%; left: 0; border-top: 3px solid var(--accent); padding: 0; list-style: none; }
        .dropdown-content li a { padding: 12px 16px; color: var(--text-dark); display: block; font-size: 0.9rem; border-bottom: 1px solid #f0f0f0; text-transform: capitalize; }
        .dropdown-content li a:hover { background-color: #f8faff; color: var(--accent); padding-left: 20px; }
        .nav-links li:hover .dropdown-content { display: block; }
        .dropbtn i { font-size: 0.7rem; color: #ccc; margin-left: 5px; }

        /* --- HERO SECTION --- */
        .hero { position: relative; background: linear-gradient(rgba(15, 33, 58, 0.85), rgba(15, 33, 58, 0.7)), url('IMG/M.webp'); background-size: cover; background-position: center; height: auto; min-height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); padding: 80px 0; }
        .hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
        .hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 700px; margin: 0 auto 30px; opacity: 0.9; }
        .legacy-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; letter-spacing: 2px; color: var(--secondary); display: inline-block; margin-bottom: 20px; }
        .hero-btns { display: flex; justify-content: center; gap: 20px; }

        /* --- STATS SECTION --- */
        .stats-modern-parallax { position: relative; background-color: var(--primary); background-image: url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-attachment: fixed; padding: 80px 0; color: var(--white); text-align: center; }
        .stats-modern-parallax .overlay-dark { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); z-index: 1; }
        .stats-content-wrapper { position: relative; z-index: 2; }
        .stats-header h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .stats-header .sub-title { color: var(--secondary); letter-spacing: 3px; font-weight: 700; font-size: 0.9rem; }
        .separator-line { width: 60px; height: 4px; background: var(--accent); margin: 0 auto 40px; }
        .stats-grid-large { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
        .stat-card-modern { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 30px 15px; border-radius: 10px; }
        .stat-card-modern i { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
        .stat-number, .plus { font-size: 3rem; font-weight: 800; font-family: 'Montserrat', sans-serif; }
        .stat-label { color: var(--secondary); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; margin-top: 5px; display: block; }

        /* --- INTRO & SERVICES --- */
        .intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .intro-text h4 { color: var(--accent); margin-bottom: 10px; letter-spacing: 2px; }
        .intro-text h2 { color: var(--primary); font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; }
        .intro-img img { border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

        #services { position: relative; background: linear-gradient(rgba(15, 33, 58, 0.9), rgba(15, 33, 58, 0.9)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-attachment: fixed; color: var(--white); }
        .section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; color: var(--primary); }
        /* Override specifically for dark background sections */
        #services .section-title { color: var(--white); }
        .text-center p { color: #666; }
        #services .text-center p { color: rgba(255,255,255,0.8); }
        
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
        .service-card { background: var(--white); padding: 30px 20px; border-radius: 10px; text-align: center; transition: 0.3s; color: var(--text-dark); }
        .service-card:hover { transform: translateY(-10px); }
        .service-card i { font-size: 2.5rem; color: var(--accent); margin-bottom: 20px; }
        .service-card h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 10px; }
        .service-card p { font-size: 0.9rem; color: var(--text-light); }

        /* --- FLEET SECTION --- */
        .fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 40px; }
        .fleet-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .fleet-img { position: relative; height: 200px; }
        .fleet-img img { width: 100%; height: 100%; object-fit: cover; }
        .capacity-tag { height: 30px; position: absolute; top: 10px; right: 10px; background: var(--primary); color: #fff; padding: 5px 10px; font-size: 0.8rem; border-radius: 3px; }
        .fleet-info { padding: 20px; }
        .fleet-info h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 10px; }
        .fleet-features { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 15px; font-size: 0.85rem; color: var(--text-light); }
        .fleet-features i { color: var(--secondary); margin-right: 5px; }

        /* --- CLIENTS SECTION --- */
        .clients-section { background: #f8faff; padding: 80px 0; overflow: hidden; }
        .client-header-box { text-align: center; margin-bottom: 40px; }
        .client-main-title { color: var(--primary); font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; }
        .gradient-separator { width: 80px; height: 4px; background: linear-gradient(90deg, var(--accent), var(--secondary)); margin: 0 auto; }
        .client-slider { width: 100%; margin-top: 20px; }
        .slider-row { display: flex; overflow: hidden; margin-bottom: 20px; position: relative; }
        .slide-track { display: flex; width: calc(200px * 16); gap: 30px; }
        .client-card-slide { width: 200px; height: 100px; background: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); flex-shrink: 0; }
        .client-card-slide img { max-width: 80%; max-height: 70%; }
        @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-200px * 8 - 30px * 8)); } }
        @keyframes scrollRight { 0% { transform: translateX(calc(-200px * 8 - 30px * 8)); } 100% { transform: translateX(0); } }
        .track-left { animation: scrollLeft 30s linear infinite; }
        .track-right { animation: scrollRight 30s linear infinite; }

        /* --- TESTIMONIALS SECTION (Google Review Style) --- */
        .testimonials-section { background-color: #fff; padding: 80px 0; }
        .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; }

        .google-review-card {
            background: #fff; padding: 25px; border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08); text-align: left;
            border-left: 4px solid var(--secondary); transition: transform 0.3s ease;
            position: relative;
        }
        .google-review-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
        /* Google G Icon top right */
        .google-review-card::after {
            content: 'G'; font-family: 'Montserrat', sans-serif; font-weight: 800;
            position: absolute; top: 20px; right: 20px; font-size: 1.5rem; color: #eee;
        }

        .review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
        .reviewer-img { width: 50px; height: 50px; border-radius: 50%; background: #eee; object-fit: cover; }
        .reviewer-info h5 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
        .reviewer-info span { font-size: 0.8rem; color: #888; display: block; }

        .stars { color: var(--google-yellow); font-size: 0.9rem; margin-bottom: 15px; }
        .review-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

        /* --- FAQ SECTION (Accordion) --- */
        .faq-section { background-color: #f8faff; padding: 80px 0; }
        .faq-wrapper { max-width: 800px; margin: 40px auto 0; }
        .faq-item { background: #fff; border-radius: 8px; margin-bottom: 15px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); overflow: hidden; }
        
        .faq-question {
            width: 100%; text-align: left; padding: 20px 25px; background: none; border: none;
            font-size: 1.05rem; font-weight: 600; color: var(--primary); cursor: pointer;
            display: flex; justify-content: space-between; align-items: center; transition: 0.3s;
        }
        .faq-question:hover { background-color: #f4f4f4; color: var(--accent); }
        .faq-question i { transition: transform 0.3s; color: var(--secondary); }
        .faq-question.active i { transform: rotate(180deg); color: var(--accent); }
        
        .faq-answer {
            max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out;
            padding: 0 25px; color: var(--text-light); font-size: 0.95rem; line-height: 1.6;
        }
        .faq-question.active + .faq-answer { max-height: 300px; padding-bottom: 25px; }

        /* --- CONTACT & FOOTER --- */
        .contact-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 0; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border-radius: 10px; overflow: hidden; }
        .contact-info-box { background-color: var(--primary); color: #fff; padding: 40px; }
        .info-item { display: flex; gap: 15px; margin-top: 30px; }
        .contact-form-box { background: #fff; padding: 40px; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; }
        .form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; }
        
        footer { background: #0b1120; color: #fff; padding-top: 60px; position: relative; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 40px; }
        .footer-col h4 { color: var(--secondary); margin-bottom: 20px; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { color: #aaa; font-size: 0.9rem; }
        .footer-col ul li a:hover { color: var(--accent); }
        .contact-info li { display: flex; gap: 10px; color: #aaa; }
        .copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; font-size: 0.85rem; color: #777; }
        
        @keyframes drive { from { left: -100px; } to { left: 100%; } }

        /* --- MOBILE RESPONSIVENESS --- */
        @media (max-width: 992px) {
            .top-bar {background-color: #fff7e3;}
            .top-bar .container {padding: 0px; flex-direction: row; flex-wrap: wrap; justify-content: center; }
            .top-logo-left, .top-logo-right { height: 100px; }
            .top-bar-middle { display: none; order: 3; width: 100%; justify-content: center; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); }
            .hamburger { display: block; }
            .nav-container-flex { justify-content: space-between; padding: 0px; }
            .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; flex-direction: column; padding: 20px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
            .nav-links.active { display: flex; }
            .nav-links li { width: 100%; text-align: left; }
            .nav-links li a { padding: 15px 25px; border-bottom: 1px solid #f0f0f0; }
            .nav-links li:hover .dropdown-content { display: none; }
            .nav-links li.active .dropdown-content { display: block; position: static; box-shadow: none; padding-left: 20px; background: #f9f9f9; }
            .dropbtn i { float: right; margin-right: 20px; transition: 0.3s; }
            .nav-links li.active .dropbtn i { transform: rotate(180deg); }
            .hero-content h1 { font-size: 2.5rem; }
            .stats-grid-large { grid-template-columns: 1fr 1fr; }
            .intro-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .contact-wrapper { grid-template-columns: 1fr; }
        }

        @media (max-width: 576px) {
            .top-bar .container {justify-content: center;}
            .contact-info li{justify-content: center;}
            .formcontainer {padding: 0px;}
            .contact-form-box {padding:30px}
            .contact-info-box {padding: 0px;}
            .client-card-slide{width: 100px; height: 50px;}
            .section-padding { padding: 50px 0; }
            .top-bar-middle { display: none; flex-direction: column; gap: 10px; }
            .contact-info-top { flex-direction: column; gap: 5px; }
            .navbar-brand { font-size: 1.2rem; }
            .hero-content h1 { font-size: 2rem; margin-top: 10px; }
            .client-main-title, .stats-header h2, .section-title, .intro-text h2 { font-size: 1.8rem; }
            .stats-grid-large { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .form-row { grid-template-columns: 1fr; }
            .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; gap: 15px;}
            .btn-accent, .btn-outline { width: 100%; text-align: center; }
            
            /* Mobile Tweaks for Review/FAQ */
            .reviews-grid { grid-template-columns: 1fr; }
            .faq-question { font-size: 0.95rem; padding: 15px 20px; }
            .google-review-card { padding: 20px; }
        }