/* Color Variables */
:root {
    --primary-color: #004d99; /* Deep Blue (Brand Primary) */
    --accent-color: #ff9900; /* Vibrant Orange (Highlight) */
    --text-color: #333;
    --light-bg: #f5f8fb;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Global Styles and Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Section Headings */
h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    padding: 18px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.9em;
    font-weight: 800;
    color: #fff;
}

.logo i {
    color: var(--accent-color);
    margin-right: 8px;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px; /* Reduced spacing */
    padding: 5px 0;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-cta {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
    font-weight: 700;
    padding: 10px 15px; /* Reduced padding */
    border-radius: 50px;
}

.nav-cta-2 { /* NEW CTA STYLE */
    color: var(--accent-color) !important;
    font-weight: 600;
    border: 1px solid var(--accent-color);
    padding: 8px 12px;
    border-radius: 5px;
}
.nav-cta-2:hover {
    background-color: var(--accent-color);
    color: var(--primary-color) !important;
}

.nav-cta:hover {
    background-color: #e68a00;
}

/* 1. HERO & QUOTE SECTION */
#hero-quote {
    /* Placeholder Image URL */
    background: url('https://images.unsplash.com/photo-1596701082539-775c742c3328?fit=crop&w=1600&h=700') no-repeat center center/cover; 
    background-color: rgba(0, 77, 153, 0.85);
    background-blend-mode: overlay;
    color: #fff;
    padding: 120px 0;
}

.hero-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.hero-content {
    flex: 2;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.2em;
    margin-bottom: 40px;
    font-style: italic;
    font-weight: 300;
}

.stats-bar {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding: 15px 0;
    border-top: 2px dashed rgba(255, 255, 255, 0.5);
}

.stat {
    font-size: 1.1em;
    font-weight: 600;
}

.stat i {
    color: var(--accent-color);
    margin-right: 8px;
}

.quote-form-box {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--accent-color);
}

.quote-form-box h2 {
    color: var(--primary-color);
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 25px;
}

/* Form Styling */
.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.submit-button {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #003366;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9em;
    color: #777;
}

/* NEW: 1.2 VEHICLE FLEET SHOWCASE */
#fleet-showcase {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}
.fleet-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.fleet-item h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}


/* NEW: 1.5 GOOGLE REVIEW SUMMARY */
#review-summary {
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}
.review-box {
    max-width: 400px;
    margin: 0 auto;
}
.rating-value {
    font-size: 2.5em;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}
.stars i {
    color: var(--accent-color);
    font-size: 1.5em;
    margin: 0 1px;
}
.review-count {
    margin-top: 10px;
    color: #555;
}
.cta-button-review {
    display: inline-block;
    margin-top: 15px;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}
.cta-button-review:hover {
    background-color: #003366;
}

/* 2. TRUST SECTION */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--primary-color);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

/* 2.5 TESTIMONIALS SECTION */
#testimonials {
    background-color: var(--light-bg);
}

.testimonial-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.testimonial-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent-color);
}

.quote {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.quote i {
    color: var(--accent-color);
    font-size: 1.2em;
}

.client {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

.video-placeholder {
    flex: 1;
    min-height: 315px;
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.video-caption {
    text-align: center;
    margin-top: 10px;
    color: #777;
    font-size: 0.9em;
}


/* NEW SECTION: ROUTE RELIABILITY FOCUS (2.7) */
#route-focus {
    background-color: #fff;
}

.route-focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.route-item {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.large-icon {
    font-size: 3em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.route-item h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-below-focus {
    text-align: center;
    padding-top: 20px;
}

.cta-below-focus p {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-button-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button-secondary:hover {
    background-color: #e68a00;
    transform: scale(1.05);
}


/* 3. CORE SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease-out;
    border-bottom: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.icon-wrap {
    font-size: 2.5em;
    color: #fff;
    background: var(--accent-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 70px;
    margin: 0 auto 15px;
    box-shadow: 0 0 0 5px rgba(255, 153, 0, 0.3);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

/* 4. PRICING & ROUTE COVERAGE (Same as before) */
.section-sub-title {
    color: var(--primary-color);
    font-size: 1.8em;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.section-sub-title i {
    color: var(--accent-color);
    margin-right: 10px;
}

.mt-50 {
    margin-top: 50px;
}

.table-responsive {
    overflow-x: auto;
}

#pricing table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

#pricing th, #pricing td {
    border: 1px solid #eee;
    padding: 15px;
    text-align: left;
    font-size: 0.95em;
}

#pricing th {
    background-color: var(--primary-color);
    color: #fff;
}

#pricing tr:nth-child(even) {
    background-color: var(--light-bg);
}

.route-links {
    text-align: center;
    margin-top: 20px;
}

.route-links a {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 18px;
    margin: 6px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.route-links a:hover {
    background-color: #e68a00;
}

/* NEW SECTION: BLOG/TIPS (5.5) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.blog-post {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s;
}
.blog-post:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.blog-post h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 10px;
}
.blog-post i {
    color: var(--accent-color);
    margin-right: 8px;
}
.blog-post a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}


/* 5. SEO CONTENT DETAIL SECTION (Same as before) */
.content-detail {
    text-align: justify;
}

.lead-text {
    font-size: 1.1em;
    font-weight: 500;
    color: #555;
    margin-bottom: 40px;
}

.content-detail h3 {
    font-size: 1.7em;
    color: var(--accent-color);
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.content-detail h4 {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}


/* 6. FAQ Accordion Section (Same as before) */
.accordion-list {
    max-width: 850px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    padding: 18px 25px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #e0eaf3;
}

.accordion-header i {
    color: var(--accent-color);
    transition: transform 0.3s;
}

.accordion-header i.rotate {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    background-color: #fff;
}

.accordion-content p {
    padding: 15px 0 20px 0;
    color: #555;
}

/* FOOTER & CONTACT INFO */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 0;
}

.footer i {
    color: var(--accent-color);
    margin-right: 5px;
}

.footer a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
    margin: 0 5px;
}
.footer a:hover {
    color: var(--accent-color);
}


.contact-info {
    margin-top: 15px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.contact-info p {
    margin: 5px 0;
}


/* NEW: FLOATING CTA BUTTON (Fixed) */
.fixed-cta {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366; /* WhatsApp Green/Strong Call Color */
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1010;
    transition: background-color 0.3s;
}

.fixed-cta:hover {
    background-color: #128c7e;
}

.fixed-cta i {
    margin-right: 8px;
    font-size: 1.2em;
    color: white;
}

/* NEW: STICKY FEATURE BAR (Fixed) */
.sticky-feature-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    border-top: 3px solid var(--accent-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1005;
    padding: 8px 0;
    display: none; /* Controlled by media query */
}
.sticky-feature-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.sticky-feature-bar p {
    color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 600;
    margin: 0;
}
.sticky-feature-bar i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* NEW: EXIT POP-UP */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 450px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 5px solid var(--accent-color);
}

.popup-content h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
}

.popup-content button {
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 25px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}


/* Responsive Adjustments */
@media (min-width: 768px) {
    .sticky-feature-bar {
        display: block; /* Show sticky bar on desktop/tablet */
    }
}

@media (max-width: 992px) {
    .nav-cta-2 { /* Hide second CTA to save space on mobile */
        display: none;
    }
    .hero-grid {
        flex-direction: column;
        gap: 40px;
    }
    .hero-content {
        padding-right: 0;
        max-width: 100%;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.5em;
    }
    .quote-form-box {
        width: 100%;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-section {
        flex-direction: column;
    }
    .video-placeholder {
        width: 100%;
    }
    .route-focus-grid {
        grid-template-columns: 1fr;
    }
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .trust-grid, .services-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    .stats-bar {
        flex-direction: column;
        gap: 10px;
    }
    nav {
        display: none; 
    }
    header .container {
        justify-content: center;
    }
    .fixed-cta {
        padding: 12px 15px;
        font-size: 1em;
    }
    .sticky-feature-bar {
        display: none; 
    }
}