/* ==========================================================================
   1. GLOBAL & TYPOGRAPHY SETUP
   ========================================================================== */
body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
    color: #333333; 
    line-height: 1.6; 
    padding-bottom: 60px;
    -webkit-font-smoothing: antialiased;
}

/* Hardened Headings with Montserrat */
h1, h2, h3, h4, h5, h6, 
.section-heading, 
.hero-section h1 {
    font-family: 'Montserrat', sans-serif !important;
    letter-spacing: -0.02em;
}

/* Generic Section Titles */
section h2 {
    font-weight: 800 !important;
    font-size: 32px !important;
    color: #0f2043;
    text-transform: capitalize;
    margin-bottom: 10px;
}

section p.text-muted {
    font-size: 16px;
    font-weight: 500;
    color: #6c757d;
}

/* ==========================================================================
   2. TOP HEADER BAR
   ========================================================================== */
.top-header-bar {
    background: #0f2043;
    color: #d1d5db;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.top-header-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.top-header-bar a:hover {
    color: #f0ad4e;
}

/* ==========================================================================
   3. MAIN NAVBAR & ALIGNMENT FIXES
   ========================================================================== */
.custom-navbar {
    background: #ffffff;
    border: none;
    margin-bottom: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    min-height: 70px;
}
.custom-navbar .navbar-brand {
    height: 60px;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

/* Flex Alignment for Desktop Menu */
@media (min-width: 768px) {
    .custom-navbar .navbar-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end;
        height: 60px;
        margin: 0;
    }
    .custom-navbar .navbar-nav > li {
        float: none !important;
        display: flex;
        align-items: center;
    }
}

.navbar-nav > li > a.nav-link {
    color: #2c3e50 !important;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 14px !important;
    line-height: normal !important;
    transition: color 0.2s ease;
}
.navbar-nav > li > a.nav-link:hover,
.navbar-nav > li.active > a.nav-link {
    color: #1a73e8 !important;
    background: transparent !important;
}

/* Nav Buttons Wrapper */
.nav-btn-wrapper {
    padding: 0 4px;
    display: flex;
    align-items: center;
}

/* Call Button (Google Blue & Forced White Text) */
.btn-call-nav, 
.btn-call-nav:visited, 
.btn-call-nav:focus, 
.btn-call-nav:active {
    background-color: #1a73e8 !important;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 20px;
    padding: 9px 20px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    line-height: 1 !important;
    transition: all 0.3s ease;
}
.btn-call-nav:hover {
    background-color: #1557b0 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.3);
}

/* WhatsApp Nav Button */
.btn-whatsapp-nav, 
.btn-whatsapp-nav:visited, 
.btn-whatsapp-nav:focus, 
.btn-whatsapp-nav:active {
    background-color: #25D366 !important;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 20px;
    padding: 9px 20px !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    line-height: 1 !important;
    transition: all 0.3s ease;
}
.btn-whatsapp-nav:hover {
    background-color: #1ebc57 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   4. HERO SECTION TYPOGRAPHY & LAYOUT
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, rgba(15, 32, 67, 0.9), rgba(27, 25, 25, 0.8)), url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-weight: 900 !important;
    font-size: 42px !important;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 15px;
}

.hero-section h3 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    color: #f0ad4e !important;
    letter-spacing: 0.5px;
}

.hero-section p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-car-img {
    max-width: 100%;
    height: auto;
    animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* ==========================================================================
   5. CARDS & UTILITY COMPONENTS
   ========================================================================== */
.btn-whatsapp { 
    background-color: #25D366; 
    color: #fff; 
    font-weight: bold; 
    border-radius: 25px; 
    transition: 0.3s; 
}
.btn-whatsapp:hover { 
    background-color: #128C7E; 
    color: #fff; 
}

.fleet-card, .service-card, .trust-card {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fleet-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ==========================================================================
   6. BIG CTA BANNER (Ready to Book)
   ========================================================================== */
.cta-banner {
    background: linear-gradient(135deg, #d9534f, #c9302c);
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}
.cta-banner h2 { 
    font-weight: 900 !important; 
    font-size: 36px !important; 
    color: #ffffff !important;
    letter-spacing: -0.5px;
    margin-bottom: 12px; 
    text-transform: uppercase;
}
.cta-banner p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffe6e6;
    margin-bottom: 20px;
}
.cta-banner .phone-number a { 
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32px; 
    font-weight: 900; 
    letter-spacing: 1px; 
    color: #ffffff;
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}
.cta-banner .phone-number a:hover {
    background: #d9534f;
    color: #d9534f;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ==========================================================================
   7. STICKY FLOATING CONTACT BAR (Mobile Conversion)
   ========================================================================== */
.sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}
.sticky-contact-bar a {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.sticky-btn-call { background-color: #1a73e8; }
.sticky-btn-wa { background-color: #25d366; }

/* ==========================================================================
   8. FOOTER & DECORATIVE SHAPES
   ========================================================================== */
.footer-top-shape {
    width: 100%;
    height: 40px;
    background: linear-gradient(to right bottom, #f8f9fa 49%, #1a1a1a 50%);
}
footer { background: #1a1a1a; color: #ccc; padding-top: 20px; }
footer a { color: #aaa; }
footer a:hover { color: #fff; text-decoration: none; }

/* ==========================================================================
   9. MOBILE RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 767px) {
    .nav-btn-wrapper {
        padding: 8px 15px;
    }
    .btn-call-nav, .btn-whatsapp-nav {
        display: flex !important;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    .hero-section h1 {
        font-size: 30px !important;
    }
    .hero-section h3 {
        font-size: 18px !important;
    }
    section h2 {
        font-size: 25px !important;
    }
    .cta-banner h2 {
        font-size: 26px !important;
    }
    .cta-banner .phone-number a {
        font-size: 22px;
        padding: 8px 18px;
    }
}
