/* --- VARIABLES --- */
:root {
    --bg-main: #FFFFFF;
    --bg-cream: #FDFCF9;
    --bg-textured: #f9f8f4;
    --text-black: #111111;
    --text-gray: #555555;
    --highlight-1: #F75B03;
    --highlight-2: #DA6422;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body); color: var(--text-black);
    background-color: var(--bg-main); line-height: 1.6; overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; color: var(--text-black); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; } .mt-20 { margin-top: 20px; } .mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; } .w-100 { width: 100%; }
.flex-between { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px;}

.bg-cream { background-color: var(--bg-cream); }
.bg-textured { background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); background-color: var(--bg-textured); }
.bg-dark { background-color: #111111; }
.text-white { color: #fff !important; }
.text-white-override { color: #fff !important; }
.text-gray { color: var(--text-gray); }

/* --- TYPOGRAPHY --- */
.section-title { font-size: 2.8rem; margin-bottom: 10px; line-height: 1.2; }
.highlight-text { color: var(--highlight-1); }
.uppercase-track { text-transform: uppercase; letter-spacing: 2px; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; }
.divider { width: 60px; height: 3px; background: var(--highlight-1); margin: 20px auto; }
.lead-text { font-size: 1.15rem; color: var(--text-gray); }

/* --- BUTTONS --- */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block; padding: 14px 30px; font-family: var(--font-body);
    font-weight: 600; border: none; cursor: pointer; border-radius: 2px;
    text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; transition: var(--transition);
}
.btn-primary { background: var(--highlight-1); color: #fff; }
.btn-primary:hover { background: var(--highlight-2); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(247, 91, 3, 0.3); }

.btn-secondary { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-secondary:hover { background: #fff; color: var(--text-black); transform: translateY(-3px); }

.btn-outline { background: transparent; color: var(--text-black); border: 1px solid #ddd; }
.btn-outline:hover { border-color: var(--highlight-1); color: var(--highlight-1); }

/* --- NAVBAR --- */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: transparent; padding: 25px 0; transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98); padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo img { height: 45px; transition: var(--transition); }
/* Invert white to black while keeping orange intact */
.navbar.scrolled .logo img { filter: invert(1) hue-rotate(180deg) brightness(1.2) contrast(1.2); }

.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav-links li a { color: #fff; font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; position: relative;}
.navbar.scrolled .nav-links li a { color: var(--text-black); }
.nav-links li a::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0;
    background: var(--highlight-1); transition: var(--transition);
}
.nav-links li a:hover::after { width: 100%; }
.nav-links li a.btn-nav { background: var(--highlight-1); color: #fff !important; padding: 10px 24px; border-radius: 2px; }
.nav-links li a.btn-nav::after { display: none; }
.nav-links li a.btn-nav:hover { background: var(--highlight-2); }

.menu-toggle { display: none; cursor: pointer; }
.menu-toggle .bar { width: 25px; height: 2px; background: #fff; margin: 5px auto; transition: 0.3s; }
.navbar.scrolled .menu-toggle .bar { background: var(--text-black); }

/* --- HERO --- */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translateX(-50%) translateY(-50%); z-index: -2; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)); z-index: -1; }
.hero-content { color: #fff; max-width: 900px; padding: 0 20px; z-index: 1; }
.hero-subtitle { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 3px; font-size: 1rem; margin-bottom: 20px; color: var(--highlight-1); }
.hero-title { font-size: 5rem; line-height: 1.1; margin-bottom: 25px; color: #fff; }
.hero-content p { font-size: 1.25rem; font-weight: 300; margin-bottom: 40px; color: #eaeaea; }
.hero-actions { display: flex; gap: 20px; justify-content: center; }

/* --- USP SECTION (Updated with Icons) --- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.usp-card { background: #fff; padding: 40px 30px; border: 1px solid #eaeaea; transition: var(--transition); border-top: 3px solid transparent; text-align: center; }
.usp-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-top-color: var(--highlight-1); }
.usp-icon { font-size: 3rem; color: var(--highlight-1); margin-bottom: 20px; opacity: 0.9; }
.usp-card h4 { font-size: 1.25rem; margin-bottom: 15px; }
.usp-card p { font-size: 0.95rem; color: var(--text-gray); }

/* --- SCHEDULED DRIVES --- */
.drive-filters { display: flex; gap: 10px; }
.filter-btn { background: #fff; border: 1px solid #ddd; padding: 8px 20px; font-family: var(--font-body); font-weight: 600; cursor: pointer; border-radius: 20px; transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--highlight-1); color: #fff; border-color: var(--highlight-1); }

.drives-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.trip-card { background: #fff; border: 1px solid #eaeaea; border-radius: 4px; overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.trip-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.08); transform: translateY(-8px); }
.trip-img { position: relative; height: 220px; }
.trip-img img { width: 100%; height: 100%; object-fit: cover; }
.trip-badge { position: absolute; top: 15px; left: 15px; background: rgba(0,0,0,0.8); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 5px 12px; border-radius: 2px; letter-spacing: 1px; }
.trip-badge.bg-orange { background: var(--highlight-1); }
.trip-badge.bg-dark { background: #d92525; }
.trip-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.trip-info h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.3; }
.trip-date { color: var(--highlight-1); font-weight: 700; font-size: 1.1rem; margin-bottom: 20px; }
.trip-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; border-top: 1px solid #eee; border-bottom: 1px solid #eee; padding: 15px 0; margin-bottom: 20px; }
.spec { font-size: 0.85rem; font-weight: 600; text-align: center; }
.spec span { font-size: 0.75rem; color: var(--text-gray); font-weight: 400; text-transform: uppercase; }
.trip-actions { display: flex; gap: 10px; margin-top: auto; }
.trip-actions .btn-outline, .trip-actions .btn-primary { padding: 10px 0; font-size: 0.8rem; }

/* --- ADVENTURE PARALLAX (Restored Glassmorphism) --- */
.adventure-parallax { position: relative; height: 70vh; display: flex; align-items: center; overflow: hidden; }
.parallax-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; background-attachment: fixed;
    z-index: -2;
}
.adventure-parallax::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); z-index: -1;
}

.glass-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 60px;
    max-width: 650px;
    color: #fff;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    margin: 0 auto;
}
.glass-box h2 { color: #fff; font-size: 2.5rem; margin-bottom: 5px; }
.glass-box p { font-size: 1.1rem; margin-bottom: 20px; font-weight: 300; line-height: 1.6;}

/* --- MOTORSPORTS GRID (Restored Grid Layout) --- */
.ms-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}
.ms-card {
    position: relative; background-size: cover; background-position: center;
    overflow: hidden; cursor: pointer;
}
.ms-large { grid-column: span 2; grid-row: span 2; }
.ms-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    display: flex; align-items: flex-end; padding: 30px;
    opacity: 0.9; transition: var(--transition);
}
.ms-card:hover .ms-overlay { opacity: 1; background: linear-gradient(to top, rgba(247,91,3,0.9), rgba(0,0,0,0.2)); }
.ms-overlay h4 { color: #fff; font-size: 1.5rem; font-family: var(--font-heading); margin: 0; transform: translateY(10px); transition: var(--transition); }
.ms-card:hover .ms-overlay h4 { transform: translateY(0); }

/* --- WHY CREATED (Restored Split Screen) --- */
.why-created { display: flex; flex-wrap: wrap; }
.half-block { flex: 1; min-width: 50%; padding: 100px 8%; background-size: cover; background-position: center; }
.half-content { max-width: 500px; margin: 0 auto; }
.half-content h2 { font-size: 2.5rem; margin: 10px 0 20px; }

.check-list { list-style: none; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1.05rem; }
.check-list li::before {
    content: "✔"; position: absolute; left: 0; top: 2px;
    color: var(--highlight-1); font-weight: bold; font-size: 1.1rem;
}
.check-list-orange { list-style: none; }
.check-list-orange li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1.05rem; color: #fff; }
.check-list-orange li::before {
    content: "✔"; position: absolute; left: 0; top: 2px;
    color: var(--highlight-1); font-weight: bold; font-size: 1.1rem;
}


/* --- TEAM SWIPER --- */
.team-swiper { padding-bottom: 50px; }
.team-card { text-align: center; background: #fff; padding: 40px 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.04); transition: var(--transition); border-bottom: 3px solid transparent; border-radius: 4px; }
.team-card:hover { transform: translateY(-10px); border-bottom-color: var(--highlight-1); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.team-card img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; filter: grayscale(100%); transition: var(--transition); }
.team-card:hover img { filter: grayscale(0%); }
.team-info h4 { font-size: 1.25rem; margin-bottom: 5px; }
.team-info span { color: var(--highlight-1); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }
.swiper-pagination-bullet-active { background: var(--highlight-1) !important; }

/* --- BOOKING SECTION --- */
.book-section { background: url('https://webhubsolution.net/development/adventure-drive/wordpress/wp-content/uploads/2026/08/Extreme-Offbeat-Routes.jpg') center/cover fixed; position: relative; }
.book-section::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(17, 17, 17, 0.85); }
.book-container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }

.book-form { background: #fff; padding: 40px; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text-black); }
.book-form input, .book-form select, .book-form textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; background: var(--bg-textured); font-family: var(--font-body); font-size: 0.95rem; border-radius: 2px; transition: var(--transition); }
.book-form input:focus, .book-form select:focus, .book-form textarea:focus { outline: none; border-color: var(--highlight-1); background: #fff; }

/* --- FOOTER --- */
.footer { background: #0a0a0a; color: #888; padding: 40px 0; border-top: 2px solid var(--highlight-1); }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-links a { margin-left: 20px; color: #bbb; font-size: 0.9rem; }
.footer-links a:hover { color: var(--highlight-1); }

/* --- ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1); }
.reveal.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0, 0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    .drives-grid { grid-template-columns: repeat(2, 1fr); }
    .ms-gallery { grid-template-columns: repeat(2, 1fr); }
    .half-block { min-width: 100%; }
    .book-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-actions { flex-direction: column; }
    .drives-grid { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .ms-gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .ms-large { grid-column: span 1; grid-row: span 1; }
    .glass-box { padding: 30px; margin: 20px; }
    
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed; right: -100%; top: 0; flex-direction: column;
        background: #fff; width: 75%; height: 100vh; padding-top: 100px;
        transition: 0.4s; box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    .nav-links.active { right: 0; }
    .nav-links li a { color: var(--text-black); }
    .navbar .logo img { filter: invert(1) hue-rotate(180deg) brightness(1.2) contrast(1.2); }
}

/* --- PAGE BANNER --- */
.page-banner {
    height: 55vh;
    min-height: 400px;
    background: url('https://webhubsolution.net/development/adventure-drive/wordpress/wp-content/uploads/2026/08/Challenging-Adventure-Ready-scaled.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0; 
}
.banner-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: 1;
}
.banner-content { position: relative; z-index: 2; padding-top: 60px; }

/* --- MISSION SECTION --- */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mission-image { position: relative; padding: 20px 20px 0 0; }
.mission-image img { width: 100%; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); position: relative; z-index: 2; }
.image-accent {
    position: absolute; top: 0; right: 0; width: 80%; height: 100%;
    background-color: var(--highlight-1); border-radius: 4px; z-index: 1;
}
.stats-row { display: flex; gap: 40px; border-top: 1px solid #ddd; padding-top: 30px; }
.stat-item h3 { font-size: 2.5rem; color: var(--highlight-1); line-height: 1; margin-bottom: 5px; }
.stat-item span { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: var(--text-gray); }

/* --- CORE VALUES SECTION --- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-box {
    background: #fff; padding: 50px 30px; text-align: center;
    border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: var(--transition); border-bottom: 3px solid transparent;
}
.value-box:hover { transform: translateY(-10px); border-bottom-color: var(--highlight-1); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.v-icon {
    width: 80px; height: 80px; margin: 0 auto 20px;
    background: var(--bg-cream); color: var(--highlight-1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; transition: var(--transition);
}
.value-box:hover .v-icon { background: var(--highlight-1); color: #fff; }
.value-box h3 { font-size: 1.4rem; margin-bottom: 15px; }
.value-box p { color: var(--text-gray); font-size: 1rem; line-height: 1.6; }

/* --- TESTIMONIALS SECTION --- */
.testimonial-swiper { padding-bottom: 50px; }
.testimonial-card {
    background: #fff; padding: 40px; border-radius: 4px;
    border: 1px solid #eaeaea; text-align: left; position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.testimonial-card::before {
    content: "\201C"; font-family: var(--font-heading); font-size: 6rem;
    color: var(--bg-textured); position: absolute; top: 10px; left: 20px;
    line-height: 1; z-index: 0; opacity: 0.8;
}
.stars { color: #f5b301; font-size: 0.9rem; margin-bottom: 20px; position: relative; z-index: 1; }
.quote-text { font-size: 1.05rem; font-style: italic; color: var(--text-gray); margin-bottom: 30px; position: relative; z-index: 1; min-height: 100px; }
.client-info h4 { font-size: 1.1rem; margin-bottom: 3px; }
.client-info span { color: var(--highlight-1); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; }

/* --- CALL TO ACTION BANNER --- */
.cta-banner {
    background: linear-gradient(rgba(247, 91, 3, 0.9), rgba(218, 100, 34, 0.9)), url('https://webhubsolution.net/development/adventure-drive/wordpress/wp-content/uploads/2026/08/hill-station-tea-garden-scaled.jpg') center/cover fixed;
    padding: 100px 24px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .mission-grid { grid-template-columns: 1fr; }
    .mission-image { margin-top: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .stats-row { flex-direction: column; gap: 20px; }
    .page-banner { height: 40vh; }
}

/* --- EXPERIENCE BANNER --- */
.experience-banner {
    height: 60vh;
    min-height: 450px;
    background: url('https://webhubsolution.net/development/adventure-drive/wordpress/wp-content/uploads/2026/08/hill-station-tea-garden-scaled.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0; 
}
.banner-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    z-index: 1;
}
.banner-content { position: relative; z-index: 2; padding-top: 60px; }

/* --- ESSENCE SECTION (Split Grid) --- */
.experience-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.essence-images { position: relative; height: 550px; }
.essence-images .img-back {
    position: absolute; top: 0; right: 0; width: 75%; height: 75%;
    object-fit: cover; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.essence-images .img-front {
    position: absolute; bottom: 0; left: 0; width: 65%; height: 65%;
    object-fit: cover; border: 15px solid var(--bg-cream); border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.check-list { list-style: none; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1.05rem; }
.check-list li::before {
    content: "✔"; position: absolute; left: 0; top: 2px;
    color: var(--highlight-1); font-weight: bold; font-size: 1.1rem;
}

/* --- FLEET SECTION --- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.fleet-card {
    background: #fff; border-radius: 4px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.fleet-card:hover {
    transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-bottom-color: var(--highlight-1);
}
.fleet-img { height: 250px; overflow: hidden; }
.fleet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.fleet-card:hover .fleet-img img { transform: scale(1.05); }
.fleet-content { padding: 30px; }
.fleet-content h3 { font-size: 1.3rem; margin-bottom: 12px; }
.fleet-content p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.6; }

/* --- TERRAINS SWIPER SECTION --- */
.swiper-nav-custom { display: flex; gap: 15px; position: relative; }
.terrain-prev, .terrain-next {
    position: static !important; width: 45px !important; height: 45px !important;
    background: #fff; border-radius: 50%; color: var(--text-black) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin: 0 !important;
    display: flex; align-items: center; justify-content: center;
}
.terrain-prev::after, .terrain-next::after { font-size: 1.2rem !important; font-weight: bold; }
.terrain-prev:hover, .terrain-next:hover { background: var(--highlight-1); color: #fff !important; }

.terrain-card {
    height: 450px; background-size: cover; background-position: center;
    border-radius: 4px; display: flex; align-items: flex-end; padding: 30px;
    color: #fff; position: relative; overflow: hidden; transition: var(--transition);
}
.terrain-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(247, 91, 3, 0.3); }
.terrain-info h3 { font-size: 1.8rem; margin-bottom: 8px; color: #fff; }
.terrain-info p { font-size: 1rem; color: #eee; font-weight: 300; }

/* --- EXPERIENCE CTA --- */
.experience-cta {
    position: relative; padding: 120px 24px;
    background: url('https://webhubsolution.net/development/adventure-drive/wordpress/wp-content/uploads/2026/08/Challenging-Adventure-Ready-scaled.jpg') center/cover fixed;
}
.cta-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 17, 17, 0.85); z-index: 1;
}
.relative-z { position: relative; z-index: 2; }

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .experience-grid { grid-template-columns: 1fr; }
    .essence-images { height: 450px; margin-bottom: 40px; }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .fleet-grid { grid-template-columns: 1fr; }
    .experience-banner { height: 50vh; min-height: 350px; }
    .terrain-card { height: 350px; }
}

/* --- SCHEDULED DRIVES BANNER --- */
.scheduled-banner {
    height: 50vh;
    min-height: 400px;
    background: url('https://webhubsolution.net/development/adventure-drive/wordpress/wp-content/uploads/2026/08/Himalayan-High-Passes-scaled.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0; 
}
.banner-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
    z-index: 1;
}
.banner-content { position: relative; z-index: 2; padding-top: 60px; }

/* --- ALTERNATING SEGMENTS LAYOUT --- */
.segments-section {
    overflow: hidden;
}

.segment-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.segment-row:last-child {
    margin-bottom: 0;
}

.segment-row.reverse {
    flex-direction: row-reverse;
}

.segment-image {
    flex: 1;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.segment-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.segment-row:hover .segment-image img {
    transform: scale(1.03);
}

.segment-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--highlight-1);
    color: #fff;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-radius: 2px;
    z-index: 2;
}

.segment-badge.bg-dark {
    background: #d92525; /* Red tone for Extreme */
}

.segment-content {
    flex: 1;
    padding: 20px 0;
}

.segment-content h2 {
    font-size: 2.2rem;
    margin-top: 5px;
    line-height: 1.2;
}

.segment-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-black);
    font-weight: 500;
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--highlight-1);
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- PREP CTA SECTION --- */
.prep-cta-section {
    background: linear-gradient(rgba(17,17,17,0.9), rgba(17,17,17,0.9)), url('https://images.pexels.com/photos/2568013/pexels-photo-2568013.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .segment-row, .segment-row.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .segment-image {
        width: 100%;
    }
    .segment-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .scheduled-banner {
        height: 40vh;
        min-height: 350px;
    }
    .segment-content h2 {
        font-size: 1.8rem;
    }
    .segment-image img {
        height: 280px;
    }
    .prep-cta-section .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
        width: 100%;
        text-align: center;
    }
    .prep-cta-section .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* --- MOTORSPORTS BANNER --- */
.ms-page-banner {
    height: 55vh;
    min-height: 400px;
    background: url('https://images.pexels.com/photos/2116475/pexels-photo-2116475.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0; 
}
.banner-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
    z-index: 1;
}
.banner-content { position: relative; z-index: 2; padding-top: 60px; }

/* --- INDUSTRY OVERVIEW SECTION --- */
.ms-overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.overview-image {
    position: relative;
    padding: 30px 0 0 30px;
}
.overview-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}
.ms-accent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 90%;
    background-color: var(--highlight-1);
    border-radius: 4px;
    z-index: 1;
}

/* --- EVENTS CATEGORIES GRID --- */
.ms-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Make the last few items center nicely if the grid wraps */
.ms-category-grid .ms-cat-card:nth-child(5),
.ms-category-grid .ms-cat-card:nth-child(6),
.ms-category-grid .ms-cat-card:nth-child(7) {
    grid-column: span 1;
}

.ms-cat-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.ms-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-bottom-color: var(--highlight-1);
}
.cat-img {
    height: 180px;
    overflow: hidden;
}
.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ms-cat-card:hover .cat-img img {
    transform: scale(1.05);
}
.cat-content {
    padding: 20px 15px;
}
.cat-content h3 {
    font-size: 1.15rem;
    margin: 0;
}

/* --- PROVISION / COMMUNITY SECTION --- */
.provision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.provision-box {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    transition: var(--transition);
}
.provision-box:hover {
    border-color: var(--highlight-1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.prov-icon {
    font-size: 2.5rem;
    color: var(--highlight-1);
    margin-bottom: 20px;
}
.provision-box h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.provision-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- CTA BANNER --- */
.ms-cta-banner {
    position: relative;
    background: url('https://images.pexels.com/photos/337909/pexels-photo-337909.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
    padding: 120px 20px;
}
.ms-cta-banner .cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 17, 17, 0.85);
    z-index: 1;
}
.position-relative {
    position: relative;
    z-index: 2;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .ms-overview-grid { grid-template-columns: 1fr; }
    .overview-image { padding: 30px 30px 0 0; margin-top: 20px; }
    .ms-accent-box { top: 0; right: 0; left: auto; width: 80%; }
    .ms-category-grid { grid-template-columns: repeat(3, 1fr); }
    .provision-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ms-page-banner { height: 45vh; min-height: 350px; }
    .ms-category-grid { grid-template-columns: repeat(2, 1fr); }
    .provision-grid { grid-template-columns: 1fr; }
    .w-50 { width: 100%; }
    .ms-cta-banner .btn-secondary {
        margin-left: 0 !important;
        margin-top: 15px;
        display: block;
        width: 100%;
    }
    .ms-cta-banner .btn-primary {
        display: block;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ms-category-grid { grid-template-columns: 1fr; }
}

/* --- CONTACT BANNER --- */
.contact-banner {
    height: 50vh;
    min-height: 400px;
    background: url('https://webhubsolution.net/development/adventure-drive/wordpress/wp-content/uploads/2026/08/Extreme-Offbeat-Routes.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0; 
}
.banner-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
    z-index: 1;
}
.banner-content { position: relative; z-index: 2; padding-top: 60px; }

/* --- CONTACT INFO GRID --- */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.info-card {
    background: #fff;
    padding: 50px 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}
.info-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--highlight-1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--bg-textured);
    color: var(--highlight-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}
.info-card:hover .info-icon {
    background: var(--highlight-1);
    color: #fff;
}
.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.info-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}
.info-card a {
    color: var(--text-black);
    font-weight: 600;
    transition: var(--transition);
}
.info-card a:hover {
    color: var(--highlight-1);
}

/* --- SPLIT FORM SECTION --- */
.form-split-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.form-image {
    position: relative;
    padding: 0 0 30px 30px;
}
.form-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}
.form-accent-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 90%;
    background-color: var(--bg-textured);
    border: 2px dashed var(--highlight-1);
    border-radius: 4px;
    z-index: 1;
}

/* Form Styles */
.modern-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.modern-contact-form .input-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-black);
}
.modern-contact-form input, 
.modern-contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 2px;
    transition: var(--transition);
}
.modern-contact-form input:focus, 
.modern-contact-form textarea:focus {
    outline: none;
    border-color: var(--highlight-1);
    box-shadow: 0 0 0 3px rgba(247, 91, 3, 0.1);
}

/* --- COMMUNITY CTA SECTION --- */
.community-cta-section {
    position: relative;
    background: url('https://images.pexels.com/photos/3311574/pexels-photo-3311574.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover fixed;
}
.community-cta-section .cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(17, 17, 17, 0.85);
    z-index: 1;
}
.position-relative {
    position: relative;
    z-index: 2;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--highlight-1);
    border-color: var(--highlight-1);
    transform: translateY(-3px);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
    .contact-info-grid { grid-template-columns: 1fr; }
    .form-split-grid { grid-template-columns: 1fr; }
    .form-image { padding: 0 0 20px 20px; margin-bottom: 30px; }
}

@media (max-width: 768px) {
    .contact-banner { height: 40vh; min-height: 350px; }
    .modern-contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
    .modern-contact-form .form-row .input-group { margin-bottom: 20px; }
    .modern-contact-form .form-row.mt-20 { margin-top: 0; }
    .social-btn { width: 100%; justify-content: center; }
}

/* --- TOUR HERO BANNER --- */
.tour-hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    margin-top: 0; 
}
.tour-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
}
.tour-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
    z-index: -1;
}
.tour-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}
.tour-badge {
    display: inline-block; background: var(--highlight-1); color: #fff;
    padding: 6px 15px; font-weight: 700; font-size: 0.8rem; letter-spacing: 2px;
    border-radius: 2px; margin-bottom: 15px;
}
.tour-title {
    font-size: 3.5rem; line-height: 1.1; margin-bottom: 15px; color: #fff;
}
.tour-route {
    font-size: 1.2rem; font-weight: 500; color: #eaeaea; letter-spacing: 1px;
}

/* --- QUICK FACTS BAR --- */
.quick-facts-bar {
    border-bottom: 1px solid #eaeaea;
    padding: 25px 0;
}
.quick-facts-grid {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.fact-item {
    display: flex; align-items: center; gap: 15px;
}
.fact-item i {
    font-size: 1.8rem; color: var(--highlight-1);
}
.fact-item span {
    display: block; font-size: 0.85rem; color: var(--text-gray); text-transform: uppercase;
}
.fact-item strong {
    display: block; font-size: 1rem; color: var(--text-black);
}

/* --- MAIN TOUR LAYOUT --- */
.tour-layout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

/* --- LEFT COLUMN: CONTENT --- */
.tour-nav-tabs {
    display: flex; gap: 30px; border-bottom: 2px solid #ddd;
    position: sticky; top: 80px; background: var(--bg-textured); z-index: 100;
    padding-top: 15px;
}
.tour-nav-tabs a {
    font-size: 1.05rem; font-weight: 600; color: var(--text-gray);
    padding-bottom: 15px; border-bottom: 3px solid transparent; transition: var(--transition);
}
.tour-nav-tabs a:hover { color: var(--highlight-1); }
.tour-nav-tabs a.active { color: var(--text-black); border-bottom-color: var(--highlight-1); }

.pt-20 { padding-top: 40px; }
.tour-section { margin-bottom: 40px; scroll-margin-top: 140px; }
.tour-section p { font-size: 1.05rem; color: var(--text-gray); margin-bottom: 15px; line-height: 1.7; }

/* Highlights List */
.highlight-list { list-style: none; }
.highlight-list li {
    position: relative; padding-left: 30px; margin-bottom: 15px; font-size: 1.05rem;
}
.highlight-list li::before {
    content: "✔"; position: absolute; left: 0; top: 2px;
    color: var(--highlight-1); font-weight: bold; font-size: 1.1rem;
}

/* Accordion */
.itinerary-item {
    background: #fff; border: 1px solid #eaeaea; border-radius: 4px;
    margin-bottom: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.itinerary-header {
    padding: 20px 25px; display: flex; align-items: center; gap: 20px;
    cursor: pointer; user-select: none; background: #fff; transition: var(--transition);
}
.itinerary-header:hover { background: #fdfdfd; }
.day-badge {
    background: var(--bg-textured); color: var(--highlight-1); font-weight: 700;
    padding: 5px 12px; border-radius: 2px; font-size: 0.85rem; text-transform: uppercase;
}
.itinerary-header h3 { font-size: 1.2rem; margin: 0; flex-grow: 1; font-family: var(--font-body); }
.toggle-icon { transition: transform 0.3s ease; color: var(--text-gray); }

.itinerary-body {
    padding: 0 25px 25px; display: none; border-top: 1px solid #eaeaea; margin-top: 15px; padding-top: 20px;
}
.itinerary-item.active .itinerary-body { display: block; }
.itinerary-item.active .toggle-icon { transform: rotate(180deg); color: var(--highlight-1); }
.itinerary-body ul { list-style: none; margin-top: 15px; padding: 15px; background: var(--bg-textured); border-radius: 4px;}
.itinerary-body li { margin-bottom: 8px; font-size: 0.95rem; }

/* Gallery */
.tour-gallery {
    display: grid; grid-template-columns: 1fr 1fr; gap: 15px;
}
.tour-gallery img {
    width: 100%; height: 250px; object-fit: cover; border-radius: 4px;
}

/* --- RIGHT COLUMN: SIDEBAR --- */
.tour-sidebar-area {
    position: sticky; top: 120px;
}
.sticky-booking-card {
    background: #fff; border-radius: 4px; box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}
.booking-header {
    background: var(--highlight-1); color: #fff; padding: 30px; text-align: center;
}
.booking-header h3 { color: #fff; font-size: 1.8rem; margin-bottom: 5px; }
.booking-header p { font-size: 0.95rem; opacity: 0.9; }

.booking-body { padding: 30px; }
.tour-booking-form .input-group { margin-bottom: 15px; }
.tour-booking-form input, .tour-booking-form select {
    width: 100%; padding: 12px 15px; border: 1px solid #ddd;
    background: var(--bg-textured); font-family: var(--font-body); font-size: 0.95rem;
    border-radius: 2px; outline: none; transition: var(--transition);
}
.tour-booking-form input:focus, .tour-booking-form select:focus {
    border-color: var(--highlight-1); background: #fff;
}
.booking-footer {
    margin-top: 20px; text-align: center; padding-top: 20px; border-top: 1px dashed #ddd;
}
.booking-footer p { font-size: 0.95rem; color: var(--text-gray); }
.booking-footer strong { font-size: 1.1rem; color: var(--text-black); display: block; margin-top: 5px;}

/* --- OTHER ROUTES GRID --- */
.routes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.route-card {
    background: #fff; border-radius: 4px; overflow: hidden; border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: var(--transition); display: flex; flex-direction: column;
}
.route-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--highlight-1);}
.route-img { height: 180px; overflow: hidden; }
.route-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.route-card:hover .route-img img { transform: scale(1.05); }
.route-details { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.route-details h3 { font-size: 1.1rem; margin-bottom: 5px; }
.route-path { font-size: 0.8rem; font-weight: 600; color: var(--highlight-1); text-transform: uppercase; }
.text-sm { font-size: 0.9rem !important; }
.link-accent { color: var(--text-black); font-weight: 600; font-size: 0.9rem; margin-top: auto; }
.link-accent:hover { color: var(--highlight-1); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .tour-layout-grid { grid-template-columns: 1fr; }
    .tour-sidebar-area { position: static; margin-top: 40px; }
    .routes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .tour-title { font-size: 2.5rem; }
    .quick-facts-grid { flex-direction: column; gap: 15px; }
    .tour-nav-tabs { overflow-x: auto; white-space: nowrap; padding-bottom: 10px; }
    .tour-gallery { grid-template-columns: 1fr; }
    .routes-grid { grid-template-columns: 1fr; }
}

/* --- HERO BANNER --- */
.fixed-hero-banner {
    height: 50vh;
    min-height: 400px;
    background: url('https://images.pexels.com/photos/2116475/pexels-photo-2116475.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0; 
}
.banner-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
    z-index: 1;
}
.banner-content { position: relative; z-index: 2; padding-top: 60px; }

/* --- MONTH FILTER BAR (Sticky) --- */
.month-filter-wrapper {
    background: #fff;
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 75px; /* Adjust based on navbar height */
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.month-filter-list {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 20px 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
}
.month-filter-list::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.month-filter-list .filter-btn {
    padding: 10px 25px;
    border: 1px solid #eaeaea;
    border-radius: 30px;
    background: #fdfdfd;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}
.month-filter-list .filter-btn:hover {
    border-color: var(--highlight-1);
    color: var(--highlight-1);
}
.month-filter-list .filter-btn.active {
    background: var(--highlight-1);
    border-color: var(--highlight-1);
    color: #fff;
}

/* --- FIXED DEPARTURES GRID & CARDS --- */
.fd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fd-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.fd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.fd-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}
.fd-img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.fd-card:hover .fd-img img {
    transform: scale(1.05);
}

/* Badges */
.fd-badge {
    position: absolute;
    top: 15px; left: 15px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2px;
    color: #fff;
    z-index: 2;
}
.type-jeep { background: rgba(17, 17, 17, 0.85); }
.type-moto { background: var(--highlight-1); }
.type-4x4 { background: #d92525; }

/* Status Labels (Filling Fast, Sold Out) */
.fd-status {
    position: absolute;
    bottom: 15px; right: 15px;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 2px;
    color: #fff;
    z-index: 2;
    text-transform: uppercase;
}
.filling-fast { background: #e67e22; }
.sold-out { background: #c0392b; }

/* Card Content */
.fd-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.fd-date {
    font-weight: 700;
    color: var(--highlight-1);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fd-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}
.fd-specs {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 20px;
    margin-top: auto;
}
.fd-specs span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.fd-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.fd-actions a {
    padding: 10px 0;
    font-size: 0.85rem;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .fd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .fixed-hero-banner {
        height: 40vh;
        min-height: 350px;
    }
    .month-filter-wrapper {
        top: 60px;
    }
    .fd-grid {
        grid-template-columns: 1fr;
    }
}