/* -----------------------------------------------------------------
   CORE VARIABLES & RESET
   ----------------------------------------------------------------- */
   :root {
    /* Palette */
    --bg-color: #0B1120;       
    --surface-color: #0F172A; 
    --accent-primary: #1D4ED8; 
    --accent-secondary: #F97316; 
    --text-main: #FFFFFF;      
    --text-muted: #CBD5E1;     
    --border-color: rgba(255, 255, 255, 0.1);   

    /* Dimensions */
    --header-height-tall: 90px;
    --header-height-compact: 70px;
    --container-width: 1280px;
    --gutter: 20px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
.sharp { border-radius: 0 !important; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

/* -----------------------------------------------------------------
   PRELOADER
   ----------------------------------------------------------------- */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: var(--bg-color);
    z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}

/* Auto-hide preloader after 3 seconds as fallback */
.preloader.force-hide {
    display: none !important;
}

/* --- SAFETY NET: Default Visibility --- */
/* If JS is slow, ensures elements aren't invisible forever */
.hero-heading .heading-word,
.hero-heading .highlight-word,
.hero-desc,
.hero-features,
.hero-actions,
.site-header,
.fleet-card,
.service-row,
.trust-row,
.place-row {
    /* By default they are visible, GSAP will hide them instantly on load */
    opacity: 1; 
}

.preloader-content { position: relative; text-align: center; overflow: hidden; }
.preloader-logo {
    font-size: 2rem; font-weight: 800; letter-spacing: -0.04em;
    text-transform: uppercase; color: var(--text-main); opacity: 0;
}
.preloader-line-track {
    width: 200px; height: 1px; background-color: rgba(255,255,255,0.1);
    margin: 20px auto 10px; position: relative;
}
.preloader-line-fill {
    position: absolute; left: 0; top: 0; height: 100%; width: 100%;
    background-color: var(--accent-secondary); transform: scaleX(0); transform-origin: left;
}
.preloader-text { font-size: 0.875rem; color: var(--text-muted); opacity: 0; margin-top: 10px; }

/* -----------------------------------------------------------------
   HEADER
   ----------------------------------------------------------------- */
.site-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    background-color: transparent !important;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    height: var(--header-height-tall);
    display: flex; align-items: center;
    /* Removed default opacity: 0 to prevent invisible header on error */
    transition: all 0.3s ease;
}

/* Header with background on scroll */
.site-header.scrolled {
    background-color: rgba(11, 17, 32, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.brand-group { display: flex; flex-direction: column; }
.brand-name {
    font-size: 1.25rem; font-weight: 800;
    letter-spacing: -0.02em; color: var(--text-main); line-height: 1.1;
}
.brand-tagline { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.nav-desktop { display: none; }
.nav-link {
    font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
    margin: 0 15px; transition: color 0.3s ease; position: relative;
}
.nav-link:hover { color: var(--text-main); }

.cta-group { display: none; gap: 15px; align-items: center; }
.btn {
    padding: 12px 28px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; transition: all 0.3s ease; display: inline-block;
    border-radius: 0;
}
.btn-primary { background-color: var(--accent-primary); color: white; }
.btn-primary:hover { background-color: #163ba3; transform: translateY(-2px); }
.btn-outline {
    background-color: transparent; border: 1px solid rgba(255,255,255,0.3);
    color: var(--text-main);
}
.btn-outline:hover { border-color: var(--accent-secondary); color: var(--accent-secondary); }

.mobile-toggle { 
    display: block; 
    color: var(--text-main); 
    font-weight: 700; 
    z-index: 102; 
    background: none;
    padding: 8px 12px;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    color: var(--accent-primary);
}

/* Hamburger Icon Style */
.mobile-toggle::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor;
    transition: all 0.3s ease;
    margin-right: 8px;
    vertical-align: middle;
}

.mobile-toggle.active::before {
    transform: rotate(45deg);
    box-shadow: 0 0 0 currentColor, 0 0 0 currentColor;
    height: 2px;
}

.mobile-toggle.active::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: currentColor;
    transform: rotate(-45deg);
    top: 50%;
    left: 12px;
    margin-top: -1px;
}

.mobile-menu {
    position: fixed; 
    top: 0; 
    right: -100%; 
    width: 85%; 
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.98) 0%, rgba(15, 23, 42, 0.98) 100%);
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255,255,255,0.1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    display: flex; 
    flex-direction: column; 
    padding: 100px 0 40px 0;
    gap: 0;
    z-index: 101;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(29, 78, 216, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.mobile-menu a { 
    font-size: 1.1rem; 
    color: var(--text-main); 
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-decoration: none;
    font-weight: 500;
}

.mobile-menu a::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    left: 15px;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    background-color: rgba(29, 78, 216, 0.1);
    border-left-color: var(--accent-primary);
    padding-left: 40px;
    color: var(--accent-primary);
}

.mobile-menu a:hover::before,
.mobile-menu a:active::before {
    opacity: 1;
    transform: scale(1.2);
}

/* Special styling for CTA buttons in mobile menu */
.mobile-menu a[href^="tel:"] {
    background: linear-gradient(135deg, var(--accent-primary) 0%, #1e40af 100%);
    margin: 20px 20px 10px 20px;
    border-radius: 0;
    border-left: none;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.3);
}

.mobile-menu a[href^="tel:"]::before {
    display: none;
}

.mobile-menu a[href^="tel:"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
    padding-left: 30px;
}

.mobile-menu a[href*="wa.me"] {
    background: linear-gradient(135deg, #25D366 0%, #1EB155 100%);
    margin: 0 20px 20px 20px;
    border-radius: 0;
    border-left: none;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-menu a[href*="wa.me"]::before {
    display: none;
}

.mobile-menu a[href*="wa.me"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    padding-left: 30px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1024px) {
    .nav-desktop { display: flex; }
    .cta-group { display: flex; }
    .mobile-toggle { display: none; }
    .mobile-menu { display: none; }
}

/* -----------------------------------------------------------------
   HERO SECTION
   ----------------------------------------------------------------- */
#hero {
    position: relative !important; 
    min-height: 100vh !important;
    display: flex !important; 
    align-items: center !important;
    padding-top: var(--header-height-tall) !important;
    overflow: hidden !important;
    width: 100% !important;
}

.hero-bg-wrapper {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 0;
}

.hero-bg-img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.6;
}

.hero-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 17, 32, 0.85) 0%, rgba(11, 17, 32, 0.95) 80%, var(--bg-color) 100%);
    z-index: 1;
}

/* Enhanced Hero Background Animation */
#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(29, 78, 216, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
    animation: heroPulse 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.container.hero-wrapper,
.hero-wrapper {
    display: grid !important; 
    grid-template-columns: 1fr !important; /* Stacked by default (Mobile) */
    gap: 40px !important; 
    align-items: center !important;
    z-index: 2 !important;
    position: relative !important;
}

/* Ensure Side-by-Side on Desktop with higher specificity */
@media (min-width: 992px) {
    .container.hero-wrapper,
    .hero-wrapper { 
        grid-template-columns: 1.1fr 0.9fr !important; /* Text Left, Map Right */
        gap: 60px !important;
    }
    .hero-visual { 
        height: 500px !important; 
    }
}

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

.eyebrow {
    font-size: 0.8rem; color: var(--accent-secondary); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 20px;
    display: block; 
}

.hero-heading {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px; 
    color: var(--text-main);
    display: block;
}

/* Hide line breaks on mobile */
@media (max-width: 1023px) {
    .hero-heading br {
        display: none;
    }
}

.hero-heading .heading-word,
.hero-heading .highlight-word {
    display: inline-block; 
    position: relative;
}

.text-blue { color: var(--accent-primary); }
.text-orange { color: var(--accent-secondary); }

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--text-muted);
    margin-bottom: 35px; max-width: 580px; line-height: 1.6; font-weight: 400;
}

.hero-features { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    margin-bottom: 40px; 
}
.feature-item { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: var(--text-main); 
    font-size: 0.95rem; 
    font-weight: 500; 
}
.feature-item .icon {
    color: var(--accent-secondary);
    flex-shrink: 0;
}
.feature-dot { width: 4px; height: 4px; background-color: var(--accent-secondary); }

.hero-actions { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 15px; 
}

.hero-visual {
    position: relative; 
    height: 400px; 
    width: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    overflow: hidden;
    z-index: 2;
}

.map-grid {
    position: absolute; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.3;
}

.location-point {
    position: absolute; width: 8px; height: 8px;
    background-color: var(--bg-color); border: 2px solid var(--accent-secondary);
    z-index: 2;
}

/* Updated Coordinates for new route: Hubli -> Dharwad -> Gokarna -> Bengaluru */
.loc-hubli { left: 20%; top: 70%; transform: translate(-50%, -50%); }
.loc-dharwad { left: 35%; top: 45%; transform: translate(-50%, -50%); }
.loc-gokarna { left: 65%; top: 60%; transform: translate(-50%, -50%); }
.loc-blr { left: 85%; top: 30%; transform: translate(-50%, -50%); }

.loc-label {
    position: absolute; top: -25px; left: 50%; transform: translateX(-50%);
    font-size: 0.7rem; color: var(--text-main); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}

.route-anim-dot {
    position: absolute; width: 6px; height: 6px; background-color: var(--text-main);
    /* Initial Position = Hubli */
    left: 20%; top: 70%; 
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px var(--text-main); z-index: 3;
}

/* -----------------------------------------------------------------
   4. BOOKING SECTION
   ----------------------------------------------------------------- */
.section-booking {
    background-color: var(--bg-color);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

/* Left Column: Context */
.booking-context {
    padding-right: 0;
}

.booking-overline {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 15px;
}

.booking-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main);
}

.booking-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
}

.booking-contact-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.contact-val {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
    transition: color 0.3s;
}

.contact-val:hover {
    color: var(--accent-primary);
}

/* Right Column: Form Container */
.booking-form-container {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 30px;
    /* Sharp corners enforced */
    border-radius: 0; 
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 1rem;
    padding: 10px 0;
    font-family: inherit;
    border-radius: 0;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-bottom-color: transparent; /* Handled by animated line */
}

/* GSAP Animated Underline */
.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    pointer-events: none;
}

/* Select Dropdown Styling */
select.form-input {
    cursor: pointer;
    appearance: none; /* Remove default arrow */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%239CA3AF%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px;
}

option {
    background-color: var(--bg-color);
    color: var(--text-main);
}

/* Date Input Styling */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

/* Error State */
.error-msg {
    display: none;
    font-size: 0.75rem;
    color: #EF4444; /* Flat Red */
    margin-top: 6px;
    position: absolute;
}

.has-error .form-input {
    border-bottom-color: #EF4444;
}

.has-error .error-msg {
    display: block;
}

/* Submit Button */
.btn-block {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 1rem;
}

.success-message {
    font-size: 0.9rem;
    color: var(--accent-secondary);
    margin-top: 15px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
}

/* Desktop Layout */
@media (min-width: 1024px) {
    .booking-layout {
        grid-template-columns: 0.4fr 0.6fr; /* Text left, Form right */
        gap: 80px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}
/* -----------------------------------------------------------------
   5. FLEET & PRICING SECTION (Horizontal Slider)
   ----------------------------------------------------------------- */
.section-fleet {
    background-color: #F9FAFB; 
    color: #111827;
    padding: 100px 0;
    position: relative;
    overflow: hidden; /* Prevent horizontal scrollbar on body */
}

.fleet-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Header */
.fleet-header { max-width: 800px; }
.fleet-overline {
    display: block; font-size: 0.85rem; color: var(--accent-primary);
    text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
    margin-bottom: 15px;
}
.fleet-heading {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1;
    margin-bottom: 20px; color: #111827; letter-spacing: -0.02em;
}
.fleet-subhead {
    font-size: 1.05rem; color: #4B5563; line-height: 1.6; max-width: 600px;
}

/* Slider Wrapper */
.fleet-slider-wrapper {
    position: relative;
    width: 100%;
    /* Extend slightly outside container on mobile for edge-to-edge feel */
    margin: 0 -20px; 
    padding: 0 20px;
    width: calc(100% + 40px);
}

/* Track (Scrollable Area) */
.fleet-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth; /* Native smooth scroll */
    padding-bottom: 30px; /* Space for scrollbar or shadow */
    padding-top: 10px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    
    /* Scroll Snap */
    scroll-snap-type: x mandatory;
}

.fleet-track::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    color: #111827;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-radius: 0; /* Sharp corners */
}

.slider-arrow:hover {
    background-color: var(--accent-primary);
    color: #FFFFFF;
    border-color: var(--accent-primary);
}

.prev-arrow { left: 0px; }
.next-arrow { right: 0px; }

/* Fleet Card */
.fleet-card {
    flex: 0 0 300px; /* Fixed width for desktop */
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--accent-primary);
}

/* Card Image */
.card-image-box {
    height: 180px;
    width: 100%;
    background-color: #FFFFFF;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}

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

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

/* Card Content */
.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.card-header {
    border-bottom: 1px dashed #E5E7EB;
    padding-bottom: 15px;
}

.vehicle-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.vehicle-meta {
    font-size: 0.8rem;
    color: #6B7280;
    display: block;
}

/* Pricing Grid in Card */
.card-pricing {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 0.85rem;
    color: #6B7280;
}

.price-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.price-min {
    font-size: 0.8rem;
    color: #9CA3AF;
    margin-top: 5px;
    font-style: italic;
}

/* Footer */
.fleet-footer {
    border-top: 1px solid #E5E7EB;
    padding-top: 30px;
}

.disclaimer { font-size: 0.85rem; color: #6B7280; margin-bottom: 10px; font-style: italic; }
.fleet-cta-text { font-size: 0.95rem; color: #374151; }
.fleet-cta-text a { color: var(--accent-primary); font-weight: 600; }

@media (min-width: 1024px) {
    .fleet-card { flex: 0 0 340px; } /* Wider cards on desktop */
    .prev-arrow { left: -24px; } /* Pull arrows outside slightly */
    .next-arrow { right: -24px; }
    .fleet-slider-wrapper { margin: 0; padding: 0; width: 100%; } /* Reset negative margins */
}
/* -----------------------------------------------------------------
   6. SERVICES SECTION
   ----------------------------------------------------------------- */
.section-services {
    background-color: #0B1120; /* Dark Navy to contrast with light Fleet section */
    color: #F9FAFB;
    padding: 100px 0;
    position: relative;
    border-top: 1px solid #1E293B;
    overflow: hidden;
}

/* Animated Background for Services */
.section-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(29, 78, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.section-services > * {
    position: relative;
    z-index: 1;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Header */
.services-header {
    max-width: 800px;
}

.services-overline {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-secondary); /* Soft Orange */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #F9FAFB;
    letter-spacing: -0.02em;
}

.services-subhead {
    font-size: 1.05rem;
    color: #9CA3AF; /* Muted Gray */
    line-height: 1.6;
    max-width: 600px;
}

.services-subhead strong {
    color: #F3F4F6;
    font-weight: 600;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid #1E293B;
}

/* Service Row / Card */
.service-row {
    border-bottom: 1px solid #1E293B;
    padding: 40px 30px;
    background-color: transparent;
    transition: background-color 0.3s ease;
    position: relative;
    border-left: 2px solid transparent; /* For hover accent */
}

.service-row:hover {
    background-color: #0F172A; /* Slightly lighter navy */
    border-left-color: var(--accent-primary);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 550px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F9FAFB;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
}

.service-title .icon {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.service-desc {
    font-size: 0.95rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.service-desc strong {
    color: #E5E7EB;
    font-weight: 500;
}

/* Bullets */
.service-bullets {
    margin-top: 10px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-bullets li {
    font-size: 0.85rem;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-bullets li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background-color: var(--accent-primary);
    flex-shrink: 0;
}

/* Footer */
.services-footer {
    padding-top: 10px;
}

.services-cta-text {
    font-size: 1rem;
    color: #9CA3AF;
}

.services-cta-text a {
    color: var(--accent-primary);
    font-weight: 600;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.services-cta-text a:hover {
    color: #3B82F6;
    border-bottom-color: #3B82F6;
}

/* Desktop Grid */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        border-left: 1px solid #1E293B; /* Outer border */
        border-right: 1px solid #1E293B;
    }

    .service-row {
        /* Add right border to odd items to create grid lines */
        border-right: 1px solid #1E293B;
    }

    /* Remove right border from every 2nd item (right column) */
    .service-row:nth-child(even) {
        border-right: none;
    }
}
/* -----------------------------------------------------------------
   7. TRUST & PROOF SECTION
   ----------------------------------------------------------------- */
.section-trust {
    background-color: #FFFFFF; /* Light theme for contrast */
    color: #111827;
    padding: 100px 0;
    position: relative;
    border-top: 1px solid #E5E7EB;
    overflow: hidden;
}

/* Animated Background for Trust Section */
.section-trust::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(29, 78, 216, 0.03) 50%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-trust > * {
    position: relative;
    z-index: 1;
}

.trust-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Header Group */
.trust-header {
    max-width: 900px;
}

.trust-overline {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-primary); /* Corporate Blue */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 15px;
}

.trust-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; /* Sharp Inter */
    line-height: 1.15;
    margin-bottom: 25px;
    color: #111827;
    letter-spacing: -0.02em;
}

.trust-desc {
    font-size: 1.05rem;
    color: #4B5563; /* Muted Gray */
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 35px;
}

.trust-desc strong {
    color: #111827;
    font-weight: 600;
}

/* Stats Row */
.trust-stats-row {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
}

.stat-label {
    font-size: 0.8rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background-color: #E5E7EB;
}

/* Grid Layout */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid #E5E7EB;
}

/* Trust Row / Pillar */
.trust-row {
    border-bottom: 1px solid #E5E7EB;
    padding: 35px 25px;
    background-color: #FFFFFF;
    transition: background-color 0.2s ease;
    position: relative;
    /* Sharp corners enforced */
    border-radius: 0;
    border-left: 3px solid transparent; /* Accent placeholder */
}

.trust-row:hover {
    background-color: #F9FAFB;
    border-left-color: var(--accent-primary);
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-title .icon {
    color: var(--accent-primary);
    flex-shrink: 0;
}

.trust-text {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
    max-width: 500px;
}

.trust-text strong {
    font-weight: 600;
    color: #374151;
}

/* List inside pillar */
.trust-list {
    margin-top: 8px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trust-list li {
    font-size: 0.85rem;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.trust-list li::before {
    content: "✓";
    font-weight: 800;
    color: var(--accent-primary);
    font-size: 0.8rem;
}

/* Footer CTA */
.trust-footer {
    padding-top: 10px;
}

.trust-cta-line {
    font-size: 0.95rem;
    color: #6B7280;
}

.trust-cta-line a {
    color: var(--accent-primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.trust-cta-line a:hover {
    border-bottom-color: var(--accent-primary);
    color: #1E40AF;
}

/* Desktop Grid */
@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        border-left: 1px solid #E5E7EB;
        border-right: 1px solid #E5E7EB;
    }

    .trust-row {
        /* Add right border to odd items */
        border-right: 1px solid #E5E7EB;
    }

    /* Remove right border from 2nd item in row */
    .trust-row:nth-child(even) {
        border-right: none;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .trust-header {
        text-align: left;
    }
    
    .trust-heading {
        font-size: 1.75rem;
    }
    
    .trust-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
}
/* -----------------------------------------------------------------
   8. PLACES & ROUTES SECTION
   ----------------------------------------------------------------- */
.section-places {
    background-color: #0B1120; /* Dark Navy Theme */
    color: #F9FAFB;
    padding: 100px 0;
    position: relative;
    border-top: 1px solid #1E293B;
}

.places-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Header */
.places-header {
    max-width: 800px;
}

.places-overline {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-secondary); /* Soft Orange */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 15px;
}

.places-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #F9FAFB;
    letter-spacing: -0.02em;
}

.places-subhead {
    font-size: 1.05rem;
    color: #9CA3AF; /* Muted Gray */
    line-height: 1.6;
    max-width: 650px;
}

.places-subhead strong {
    color: #E5E7EB;
    font-weight: 600;
}

/* Filter Bar */
.places-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid #1E293B;
    padding-bottom: 25px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid #374151;
    color: #9CA3AF;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0; /* Sharp corners */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-btn:hover {
    border-color: #6B7280;
    color: #F3F4F6;
}

.filter-btn.active {
    background-color: var(--accent-primary); /* Deep Blue */
    border-color: var(--accent-primary);
    color: #FFFFFF;
}

/* List Layout */
.places-list {
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Prevent layout jump */
}

/* Place Row Item */
.place-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Desktop Ratio */
    gap: 40px;
    padding: 35px 25px;
    border-bottom: 1px solid #1E293B;
    background-color: transparent;
    transition: background-color 0.3s ease;
    border-left: 2px solid transparent; /* Hover accent */
    position: relative;
    /* Layout properties for filtering animation */
    overflow: hidden; 
    transform-origin: top;
}

.place-row:hover {
    background-color: #0F172A; /* Slightly lighter navy */
    border-left-color: var(--accent-primary);
}

/* Left Column: Info */
.place-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.place-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #F9FAFB;
    margin-bottom: 5px;
}

.place-route-label {
    font-size: 0.8rem;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.place-desc {
    font-size: 0.95rem;
    color: #9CA3AF;
    line-height: 1.6;
    max-width: 500px;
}

/* Right Column: Meta Details */
.place-meta-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    border-left: 1px solid #1E293B;
    padding-left: 40px;
}

.meta-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    font-size: 0.95rem;
    color: #E5E7EB;
    font-weight: 500;
}

.place-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 5px;
    transition: color 0.2s;
    width: fit-content;
}

.place-link:hover {
    color: #60A5FA; /* Lighter blue on hover */
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .places-filter-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 15px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .places-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto; /* Don't shrink */
    }

    .place-row {
        grid-template-columns: 1fr; /* Stack */
        gap: 25px;
        padding: 25px 15px;
    }

    .place-meta-col {
        border-left: none;
        border-top: 1px dashed #374151;
        padding-left: 0;
        padding-top: 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .meta-group {
        flex: 1 1 45%; /* 2 items per row roughly */
    }
}