/*
Theme Name: Daksh Yatra Cabs
Theme URI: https://dakshyatra.com
Author: Daksh Yatra Team
Description: Custom theme for Taxi Booking Service
Version: 1.0
*/
/* --- PRO HEADER DESIGN 2026 --- */

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    width: 100%;
    position: fixed;
    top: 0; left: 0;
    z-index: 9999;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Sticky State (Smaller & Shadowed) */
header.sticky {
    height: 70px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.98);
}

.container { 
    max-width: 1200px; margin: 0 auto; padding: 0 20px; 
    height: 100%; display: flex; align-items: center; justify-content: space-between; 
}

/* Logo Styling */
.logo { 
    text-decoration: none; display: flex; align-items: center; gap: 10px; 
}
.logo-icon {
    width: 40px; height: 40px; background: var(--dark); color: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; transition: 0.3s;
}
.logo-text { font-size: 1.5rem; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.logo-text span { color: var(--primary); }
.logo:hover .logo-icon { transform: rotate(15deg); background: var(--primary); color: #000; }

/* Navigation List */
.nav-list { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; align-items: center; }
.nav-link { 
    text-decoration: none; color: #333; font-weight: 600; font-size: 0.95rem; 
    position: relative; transition: 0.3s; padding: 10px 0;
}

/* Link Hover Animation */
.nav-link::before {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: 5px; left: 0; background-color: var(--primary);
    transition: width 0.3s ease;
}
.nav-link:hover { color: #000; }
.nav-link:hover::before { width: 100%; }

/* --- PRO DROPDOWN (Desktop) --- */
.dropdown-item { position: relative; }
.arrow-icon { font-size: 0.7rem; margin-left: 5px; transition: 0.3s; }
.dropdown-item:hover .arrow-icon { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute; top: 100%; left: 0;
    background: #fff; min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px; border-top: 3px solid var(--primary);
    padding: 10px 0; opacity: 0; visibility: hidden;
    transform: translateY(20px); transition: all 0.3s ease;
    list-style: none;
}
.dropdown-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-menu li a {
    display: block; padding: 12px 20px; color: #444; font-size: 0.9rem;
    text-decoration: none; border-bottom: 1px dashed #eee; transition: 0.2s;
}
.dropdown-menu li a:hover { background: #fffbe6; padding-left: 25px; color: var(--primary); }

/* --- HAMBURGER ICON --- */
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; transition: all 0.3s ease-in-out; background-color: var(--dark); }

/* Hamburger Animation to 'X' */
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu-header, .mobile-only-btn { display: none; }
.menu-overlay { display: none; }

/* --- MOBILE RESPONSIVENESS (The Magic Part) --- */
@media (max-width: 992px) {
    .hamburger { display: block; }
    .desktop-btn { display: none; }

    /* Overlay Background */
    .menu-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5); z-index: 9998;
        opacity: 0; visibility: hidden; transition: 0.3s;
    }
    .menu-overlay.active { opacity: 1; visibility: visible; }

    /* Slide-Out Drawer */
    .nav-wrapper {
        position: fixed; top: 0; right: -100%; /* Hidden right */
        width: 280px; height: 100vh;
        background: #fff; z-index: 9999;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    .nav-wrapper.active { right: 0; } /* Slide In */

    /* Mobile Header inside Menu */
    .mobile-menu-header {
        display: flex; justify-content: space-between; align-items: center;
        padding: 20px; border-bottom: 1px solid #eee; background: #f9f9f9;
        font-weight: 700; font-size: 1.2rem;
    }
    .close-btn { font-size: 2rem; cursor: pointer; color: #666; }

    /* Mobile Links */
    .nav-list { flex-direction: column; gap: 0; padding: 0; align-items: flex-start; }
    .nav-list li { width: 100%; border-bottom: 1px solid #f5f5f5; }
    .nav-link { display: block; padding: 15px 20px; width: 100%; font-size: 1rem; }
    .nav-link::before { display: none; } /* Remove hover underline on mobile */

    /* Mobile Dropdown Animation */
    .dropdown-menu {
        position: static; box-shadow: none; border-top: none;
        opacity: 1; visibility: visible; transform: none;
        max-height: 0; overflow: hidden; padding: 0;
        background: #f9f9f9; transition: max-height 0.3s ease;
    }
    
    /* Open State */
    .dropdown-item.open .dropdown-menu { max-height: 500px; /* Accordion open */ }
    .dropdown-item.open .arrow-icon { transform: rotate(180deg); }

    /* Mobile CTA Button */
    .mobile-only-btn { display: block; padding: 20px; border: none; text-align: center; }
    .btn-mobile-call {
        display: block; width: 100%; padding: 12px;
        background: var(--dark); color: #fff; text-decoration: none;
        border-radius: 50px; font-weight: 700;
    }
}
/* --- 1. GLOBAL STYLES --- */
:root {
    --primary: #FFC107; /* Taxi Yellow */
    --dark: #1a1a1a;    /* Professional Black */
    --royal-blue: #002366; /* Luxury Blue */
    --white: #ffffff;
    --gray: #f5f5f5;
    --whatsapp: #25D366;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: var(--gray); color: var(--dark); overflow-x: hidden; -webkit-tap-highlight-color: transparent; }


/* --- NEW GEN LUXURY PRELOADER --- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #001f3f, #002366);
    z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.6s ease;
}

.loader-wrap {
    position: relative; width: 100px; height: 100px;
    display: flex; align-items: center; justify-content: center;
}

.taxi-icon-load {
    font-size: 3.5rem; color: var(--primary); z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.5));
    animation: carBump 1s ease-in-out infinite alternate;
}

.pulse-ring {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    border: 2px solid var(--primary); opacity: 0;
    animation: pulseWave 2s linear infinite;
}
.pulse-ring:nth-child(2) { animation-delay: 0.5s; }

.loading-text-new {
    margin-top: 20px; font-size: 1rem; font-weight: 600; letter-spacing: 4px;
    color: #fff; text-transform: uppercase; animation: fadeText 1.5s infinite alternate;
}

@keyframes pulseWave { 0% { transform: scale(0.5); opacity: 0; } 50% { opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes carBump { 0% { transform: translateY(0); } 100% { transform: translateY(-5px); } }
@keyframes fadeText { 0% { opacity: 0.4; } 100% { opacity: 1; } }


.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo { 
    font-size: 1.6rem; font-weight: 800; color: var(--dark); 
    text-decoration: none; display: flex; align-items: center; gap: 10px; 
    letter-spacing: -0.5px;
}
.logo span { color: #d9a300; } 

.nav-menu { display: flex; gap: 35px; align-items: center; }

.nav-link { 
    text-decoration: none; color: var(--dark); font-weight: 500; font-size: 0.95rem; 
    position: relative; padding: 5px 0; transition: 0.3s;
}
.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px; 
    bottom: 0; left: 0; background-color: var(--primary); 
    transition: width 0.3s ease-in-out;
}
.nav-link:hover { color: #000; }
.nav-link:hover::after { width: 100%; }

.cta-btn {
    background: linear-gradient(135deg, #1a1a1a, #333); 
    color: var(--primary); padding: 12px 28px; border-radius: 50px;
    font-weight: 600; text-decoration: none; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
}
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
    border-color: var(--primary);
    color: #fff;
}

.mobile-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--dark); }

/* --- 3. HERO SECTION --- */
.hero-section {
    display: flex; height: 100vh; padding-top: 80px; position: relative;
    background: linear-gradient(-45deg, #001f3f, #002366, #0033cc, #001f3f);
    background-size: 400% 400%; animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.booking-side {
    width: 450px; background: #fff; padding: 30px; display: flex; flex-direction: column;
    box-shadow: 10px 0 40px rgba(0,0,0,0.2); z-index: 10; overflow-y: auto;
}

.map-side { flex: 1; background: #e0e0e0; position: relative; }
#map { height: 100%; width: 100%; z-index: 1; }

.loader {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9); padding: 20px; border-radius: 10px;
    display: none; z-index: 1000; font-weight: 600; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- 4. BOOKING CARD UI --- */
.card-header h1 { font-size: 2rem; line-height: 1.2; margin-bottom: 5px; }
.card-header p { color: #666; font-size: 0.9rem; margin-bottom: 25px; }

.location-inputs { position: relative; margin-bottom: 15px; }
.connector-line {
    position: absolute; left: 18px; top: 45px; bottom: 45px; width: 2px;
    background: repeating-linear-gradient(to bottom, #ccc 0, #ccc 4px, transparent 4px, transparent 8px);
    z-index: 1;
}

.input-row { position: relative; margin-bottom: 15px; }
.input-icon {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    width: 14px; height: 14px; border-radius: 50%; z-index: 2;
    display: flex; align-items: center; justify-content: center;
}
.icon-pickup { background: var(--dark); color: #fff; font-size: 0.5rem; } 
.icon-drop { background: var(--primary); border: 2px solid var(--dark); }
.icon-date { color: var(--dark); font-size: 1rem; }

.taxi-input {
    width: 100%; padding: 18px 15px 18px 45px; background: #f9f9f9; border: 1px solid #e0e0e0;
    border-radius: 12px; font-size: 0.95rem; font-weight: 500; outline: none; transition: 0.3s; color: #333;
}
.date-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; }
.date-input-wrapper { position: relative; }
.date-label-floating {
    position: absolute; top: 5px; left: 45px; font-size: 0.65rem; color: #888; font-weight: 700; text-transform: uppercase; z-index: 3;
}
.taxi-input-date { padding-top: 25px; padding-bottom: 10px; }

.suggestions-list {
    position: absolute; background: #fff; width: 100%; z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-radius: 8px; max-height: 200px; overflow-y: auto;
    display: none; top: 100%; left: 0;
}
.suggestion-item { padding: 10px 15px; cursor: pointer; border-bottom: 1px solid #eee; font-size: 0.9rem; }

.options-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding: 10px 0; border-bottom: 1px solid #eee; }
.toggle-switch { position: relative; display: inline-block; width: 45px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary); }
input:checked + .slider:before { transform: translateX(20px); }

.vehicle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.vehicle-option {
    border: 1px solid #eee; border-radius: 10px; padding: 10px; text-align: center; cursor: pointer; transition: 0.2s;
}
.vehicle-option:hover { background: #fefcf0; border-color: var(--primary); }
.vehicle-option.selected { background: #fffbe6; border: 2px solid var(--primary); }
.vehicle-name { font-size: 0.8rem; font-weight: 700; display: block; }
.vehicle-price { font-size: 0.75rem; color: #666; }

.price-result {
    background: var(--dark); color: #fff; padding: 20px; border-radius: 15px;
    margin-bottom: 10px; display: none; animation: slideUp 0.5s ease;
}
.big-price { font-size: 2.2rem; font-weight: 700; color: var(--primary); line-height: 1; }

.terms-box {
    background: #fff3cd; color: #856404; padding: 15px; border-radius: 10px;
    font-size: 0.75rem; line-height: 1.5; margin-bottom: 15px; border: 1px solid #ffeeba;
    display: none; 
}
.terms-box ul { padding-left: 15px; margin: 0; }

.search-btn {
    background: linear-gradient(to right, #1a1a1a, #000); 
    color: #fff; border: none; padding: 16px; border-radius: 12px;
    font-size: 1rem; font-weight: 600; cursor: pointer; width: 100%; margin-bottom: 10px;
    transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.search-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

.whatsapp-btn {
    background: linear-gradient(to right, #25D366, #128C7E); 
    color: #fff; border: none; padding: 16px; border-radius: 12px;
    font-size: 1rem; font-weight: 700; cursor: pointer; width: 100%; 
    display: none; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); }

/* Floating WhatsApp Button */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: all 0.3s ease;
}

.float-wa:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* --- CORPORATE SECTION STYLES --- */
.corporate-section { padding: 80px 0; background: #fff; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head h2 { font-size: 2.2rem; color: var(--dark); font-weight: 700; }
.corp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.corp-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #eee; }
.corp-img { height: 200px; background: #eee; overflow: hidden; }
.corp-img img { width: 100%; height: 100%; object-fit: cover; }
.corp-content { padding: 25px; }
.corp-tag { background: var(--dark); color: #fff; padding: 5px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }



/* --- REVIEWS --- */
.reviews-section { background: #f9f9f9; padding: 80px 0; }
.google-rating { display: inline-flex; align-items: center; gap: 10px; background: #fff; padding: 10px 20px; border-radius: 50px; border: 1px solid #eee; }
.score { font-size: 1.5rem; font-weight: 800; color: var(--dark); }
.stars { color: #FFC107; font-size: 1.2rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: #fff; border: 1px solid #f0f0f0; padding: 25px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.reviewer-top { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.r-icon { width: 40px; height: 40px; background: var(--dark); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.stars-small { color: #FFC107; font-size: 0.8rem; margin-bottom: 10px; }

/* --- FOOTER --- */
footer { background: #111; color: #bbb; padding-top: 60px; position: relative; overflow: hidden; text-align: center !important; }
footer .container { display: flex !important; flex-direction: column; align-items: center; text-align: center; }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 50px; width: 100%; padding-bottom: 40px; }
.footer-col { flex: 1; min-width: 250px; display: flex; flex-direction: column; align-items: center; }
.footer-col h3 { color: #fff; margin-bottom: 20px; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col h3::after { content: ''; display: block; width: 50px; height: 3px; background: #FFC107; margin: 10px auto 0; }
.footer-links a { display: block; color: #888; text-decoration: none; margin-bottom: 12px; transition: 0.3s; font-size: 0.95rem; }
.footer-links a:hover { color: #FFC107; }
.contact-item { margin-bottom: 15px; display: flex; flex-direction: column; align-items: center; }
.contact-item i { color: #FFC107; font-size: 1.4rem; display: block; margin-bottom: 8px; }
.road-line { position: absolute; top: 0; left: 0; width: 100%; height: 60px; background: #111; border-bottom: 4px solid #333; z-index: 1; }
.road-line::after { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background: repeating-linear-gradient(90deg, #fff, #fff 20px, transparent 20px, transparent 40px); opacity: 0.2; }
.taxi-anim { position: absolute; top: 5px; left: -100px; font-size: 2.2rem; color: #FFC107; text-shadow: 0 5px 15px rgba(0,0,0,0.5); animation: drive 10s linear infinite; z-index: 2; }
@keyframes drive { 0% { left: -100px; } 100% { left: 110%; } }
.copyright { border-top: 1px solid #222; padding: 20px; background: #000; font-size: 0.8rem; width: 100%; }/* --- ABOUT PAGE STYLES --- */

/* Page Title Banner */
.page-header-banner {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Push down below fixed header */
}
.page-header-banner h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-header-banner p { font-size: 1.1rem; opacity: 0.9; color: var(--primary); font-weight: 600; letter-spacing: 1px; }

/* Content Sections */
.section { padding: 60px 0; }
.bg-white { background: #fff; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

.section-title { font-size: 2rem; margin-bottom: 20px; position: relative; display: inline-block; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--primary); margin-top: 10px; border-radius: 2px; }

.text-block p { margin-bottom: 20px; color: #555; font-size: 1rem; line-height: 1.6; }

/* Features Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.feature-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; transition: 0.3s; border-bottom: 4px solid transparent; }
.feature-card:hover { transform: translateY(-5px); border-bottom: 4px solid var(--primary); }
.feature-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p { font-size: 0.9rem; color: #555; }

/* Services List */
.services-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
.services-list li { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.03); display: flex; align-items: center; gap: 15px; }
.services-list i { color: var(--primary); font-size: 1.5rem; }
.services-list strong { display: block; font-size: 1.1rem; color: var(--dark); }
.services-list span { font-size: 0.9rem; color: #555; }

/* CTA Banner */
.cta-banner { background: var(--dark); color: #fff; padding: 50px 0; text-align: center; }
.cta-banner h2 { margin-bottom: 20px; }
.cta-btn { background: var(--primary); color: var(--dark); padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1.1rem; display: inline-block; transition: 0.3s; }
.cta-btn:hover { background: #fff; transform: scale(1.05); }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .page-header-banner h1 { font-size: 2rem; }
    .page-header-banner { margin-top: 0; } /* Adjust for mobile menu */
}
/* --- CONTACT PAGE STYLES --- */

/* Hero Banner */
.contact-page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1554672723-d2fd5f02f96e?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}
.contact-page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.contact-page-header p { font-size: 1.1rem; color: var(--primary); font-weight: 600; }

/* Contact Cards */
.contact-section { padding: 60px 0; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: -50px; position: relative; z-index: 10; }

.info-card {
    background: #fff; padding: 40px 30px; border-radius: 15px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; border-bottom: 4px solid transparent;
}
.info-card:hover { transform: translateY(-10px); border-bottom: 4px solid var(--primary); }

.icon-box {
    width: 70px; height: 70px; background: #fffbe6; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    color: var(--primary); font-size: 1.8rem;
}
.info-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.info-card p, .info-card a { color: #555; font-size: 1rem; text-decoration: none; display: block; margin-bottom: 5px; }
.info-card a:hover { color: var(--primary); }

/* Map & Form */
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 60px; }
.map-frame { width: 100%; height: 450px; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }

.form-box { background: #fff; padding: 40px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.form-control { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; outline: none; font-size: 1rem; }
.form-control:focus { border-color: var(--primary); }
.submit-btn { width: 100%; background: var(--dark); color: #fff; padding: 15px; border: none; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.3s; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
.submit-btn:hover { background: #000; }

@media (max-width: 768px) {
    .contact-page-header { margin-top: 0; }
    .map-grid { grid-template-columns: 1fr; }
    .cards-grid { margin-top: 30px; }
}

/* --- PACKAGES PAGE STYLES --- */

/* Page Banner */
.packages-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1596733430284-f7437764b1a9?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Offset for fixed header */
}
.packages-banner h1 { font-size: 3rem; margin-bottom: 10px; }
.packages-banner p { font-size: 1.2rem; color: var(--primary); font-weight: 600; }

/* Section Titles */
.pkg-section-title {
    text-align: center; font-size: 2rem; margin: 60px 0 30px; font-weight: 700; color: #1a1a1a; position: relative;
}
.pkg-section-title::after {
    content: ''; display: block; width: 60px; height: 4px; background: var(--primary); margin: 10px auto;
}

/* Card Grid */
.pkg-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 40px;
}

/* Price Card */
.price-card {
    background: #fff; border-radius: 15px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: 0.3s;
    border: 1px solid #eee; position: relative;
}
.price-card:hover { transform: translateY(-10px); border-color: var(--primary); }

/* Discount Badge */
.discount-badge {
    position: absolute; top: 15px; right: 15px;
    background: #e74c3c; color: #fff; padding: 5px 12px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 700;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.4); z-index: 2;
}

.card-header { padding: 20px; background: #fff; border-bottom: 1px solid #f0f0f0; }
.pkg-name { font-size: 1.2rem; font-weight: 700; color: #1a1a1a; margin-bottom: 5px; }
.pkg-desc { font-size: 0.9rem; color: #777; }

.card-body { padding: 20px; text-align: center; }
.old-price { text-decoration: line-through; color: #999; font-size: 0.9rem; }
.new-price { font-size: 2rem; font-weight: 800; color: #1a1a1a; }
.price-unit { font-size: 0.9rem; color: #777; font-weight: 500; }
.car-icon-img { height: 80px; object-fit: contain; width: 100%; margin: 10px 0; }

.card-footer { padding: 20px; text-align: center; }
.book-pkg-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 12px; background: #1a1a1a; color: #fff;
    text-decoration: none; font-weight: 700; border-radius: 8px; transition: 0.3s;
}
.book-pkg-btn:hover { background: #000; color: var(--primary); }
.suv-btn { background: var(--primary); color: #1a1a1a; }

/* Rate Table */
.rate-table-container {
    background: #fff; padding: 30px; border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); overflow-x: auto;
}
.rate-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.rate-table th { background: #1a1a1a; color: #fff; padding: 15px; text-align: left; }
.rate-table td { padding: 15px; border-bottom: 1px solid #eee; color: #555; font-weight: 500; }
.rate-table tr:hover { background: #fafafa; }

@media (max-width: 768px) {
    .packages-banner { margin-top: 0; }
    .packages-banner h1 { font-size: 2rem; }
    .pkg-grid { grid-template-columns: 1fr; }
}
/* --- 2026 PRO PACKAGES PAGE (Mobile First & SEO) --- */

/* 1. Page Container (Fixes Alignment) */
.pkg-page-wrapper {
    background-color: #f8f9fa;
    padding-bottom: 60px;
}

.pkg-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 2. SEO Breadcrumbs */
.seo-breadcrumbs {
    padding: 15px 0;
    font-size: 0.85rem;
    color: #666;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.seo-breadcrumbs a { text-decoration: none; color: #1a1a1a; }
.seo-breadcrumbs span { color: #888; }

/* 3. Hero Banner */
.pkg-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pkg-banner::before {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
}
.pkg-banner h1 { font-size: 2.5rem; margin-bottom: 10px; color: #FFC107; font-weight: 800; }
.pkg-banner p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* 4. Section Headings */
.pkg-category-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 50px 0 30px;
    font-weight: 700;
    position: relative;
    display: flex; align-items: center; justify-content: center; gap: 15px;
}
.pkg-category-title::before, .pkg-category-title::after {
    content: ''; display: block; height: 2px; width: 40px; background: #FFC107;
}

/* 5. The Grid (Responsive Logic) */
.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* 6. Pro Card Design */
.pro-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column;
    position: relative;
}
.pro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #FFC107;
}

.pro-badge {
    position: absolute; top: 15px; left: 15px;
    background: #e74c3c; color: #fff;
    font-size: 0.7rem; font-weight: 800;
    padding: 5px 12px; border-radius: 50px;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.pro-badge.best { background: #FFC107; color: #000; }

.card-img-top {
    height: 140px;
    background: #f4f4f4;
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}
.card-img-top img { height: 80px; width: auto; transition: 0.3s; }
.pro-card:hover .card-img-top img { transform: scale(1.1); }

.card-content { padding: 25px; text-align: center; flex-grow: 1; }
.pkg-title { font-size: 1.25rem; font-weight: 700; color: #1a1a1a; margin-bottom: 5px; }
.pkg-route { font-size: 0.9rem; color: #666; margin-bottom: 15px; display: block; }

.pricing-row {
    display: flex; justify-content: center; align-items: baseline; gap: 10px;
    margin: 15px 0;
}
.price-final { font-size: 2rem; font-weight: 800; color: #1a1a1a; }
.price-cut { text-decoration: line-through; color: #999; font-size: 1rem; }

.features-list {
    list-style: none; margin: 0; padding: 0;
    text-align: left; background: #fafafa; padding: 15px; border-radius: 8px;
    font-size: 0.85rem; color: #555;
}
.features-list li { margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.features-list li i { color: #2ecc71; }

.card-action { padding: 20px; background: #fff; border-top: 1px solid #f0f0f0; }
.btn-book {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px; border-radius: 12px;
    font-weight: 700; text-decoration: none; transition: 0.2s;
}
.btn-dark { background: #1a1a1a; color: #fff; }
.btn-yellow { background: #FFC107; color: #000; }
.btn-book:hover { opacity: 0.9; transform: scale(1.02); }

/* 7. SEO FAQ Section */
.faq-section { margin-top: 60px; background: #fff; padding: 40px; border-radius: 15px; }
.faq-item { border-bottom: 1px solid #eee; padding: 15px 0; }
.faq-question { font-weight: 700; color: #1a1a1a; display: block; margin-bottom: 5px; cursor: pointer; }
.faq-answer { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* 8. Mobile Optimizations */
@media (max-width: 768px) {
    .pkg-banner { padding: 40px 0; }
    .pkg-banner h1 { font-size: 1.8rem; }
    .pro-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } /* Single column stack */
    .card-content { padding: 20px; }
    .price-final { font-size: 1.8rem; }
}
/* --- SERVICES PAGE STYLES (3D & SEO Optimized) --- */

/* 1. Page Setup */
.services-page-wrapper {
    background-color: #f8f9fa;
    overflow-x: hidden; /* Prevent horizontal scroll from 3D effects */
}

/* 2. 3D Hero Banner */
.svc-banner {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    perspective: 1000px; /* Setup for 3D */
}

.svc-banner-content {
    animation: floatUp 1s ease-out forwards;
    transform: translateZ(0);
}

.svc-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}
.svc-banner p {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 3. The 3D Grid */
.svc-section { padding: 80px 0; }
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    perspective: 1000px; /* Creates the 3D space */
}

/* 4. 3D Service Card */
.svc-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy 3D feel */
    transform-style: preserve-3d;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* 3D Hover Effect */
.svc-card:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.svc-card::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.svc-card:hover::before { transform: scaleX(1); }

/* Card Internals */
.svc-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(to bottom, #fff, #fcfcfc);
    border-bottom: 1px solid #f0f0f0;
}
.svc-icon-box {
    width: 80px; height: 80px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem; color: var(--primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
}
.svc-card:hover .svc-icon-box {
    background: var(--primary); color: #000;
    transform: rotateY(180deg);
}

.svc-header h2 { font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin: 0; }

.svc-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.svc-desc { color: #666; font-size: 0.95rem; margin-bottom: 20px; text-align: center; line-height: 1.6; }

.svc-price-list {
    list-style: none; margin-bottom: 25px;
    background: #f8f9fa; padding: 20px; border-radius: 12px;
}
.svc-price-list li {
    margin-bottom: 12px; font-size: 0.9rem; color: #444;
    display: flex; align-items: start; gap: 10px;
}
.svc-price-list li:last-child { margin-bottom: 0; }
.svc-price-list i { color: #27ae60; margin-top: 4px; }
.price-tag { font-weight: 800; color: #1a1a1a; background: #FFC107; padding: 2px 6px; border-radius: 4px; font-size: 0.85rem; }

/* 5. 3D Button */
.svc-btn {
    margin-top: auto;
    display: block; text-align: center;
    background: #1a1a1a; color: #fff;
    padding: 15px; border-radius: 12px;
    text-decoration: none; font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateZ(20px); /* Lifts button in 3D space */
}
.svc-btn:hover {
    background: var(--primary); color: #000;
    transform: translateZ(20px) translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.4);
}

/* 6. Animations */
@keyframes floatUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 7. Mobile Optimization */
@media (max-width: 768px) {
    .svc-banner { height: 280px; margin-top: 0; }
    .svc-banner h1 { font-size: 2rem; }
    .svc-grid { grid-template-columns: 1fr; padding: 0 10px; }
    .svc-card:hover { transform: none; /* Disable 3D tilt on phone to prevent scroll issues */ }
}
/* --- SERVICES PAGE STYLES (Mobile Optimized) --- */

/* Page Header */
.svc-page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px; /* Adjust based on your fixed header height */
}
.svc-page-header h1 { font-size: 2.8rem; margin-bottom: 10px; font-weight: 700; }
.svc-page-header p { font-size: 1.1rem; color: var(--primary); font-weight: 600; letter-spacing: 1px; }

/* Services Grid */
.services-section { padding: 80px 0; background-color: #f4f6f8; }

.services-grid { 
    display: grid; 
    /* Changed minmax to 300px to fit smaller mobile screens better */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

.service-card {
    background: #fff; border-radius: 15px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s;
    border: 1px solid #eee; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--primary); }

.card-header-box {
    background: #1a1a1a; color: #fff; padding: 25px; text-align: center; position: relative;
}
.card-icon {
    font-size: 2.5rem; color: var(--primary); margin-bottom: 10px;
}
.card-header-box h2 { font-size: 1.4rem; font-weight: 700; margin: 0; }

.card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.card-body p { color: #666; font-size: 0.95rem; margin-bottom: 20px; }

.price-list { list-style: none; margin-bottom: 25px; background: #fdfdfd; padding: 15px; border-radius: 10px; border: 1px dashed #ddd; }
.price-list li { margin-bottom: 10px; font-size: 0.9rem; color: #444; display: flex; align-items: flex-start; gap: 10px; }
.price-list li i { color: var(--primary); margin-top: 5px; }
.price-highlight { font-weight: 700; color: #1a1a1a; }

.book-btn {
    display: block; text-align: center; background: var(--primary); color: #1a1a1a;
    padding: 12px; margin-top: auto; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s;
}
.book-btn:hover { background: #e0a800; color: #000; }

/* Mobile Optimization */
@media (max-width: 768px) {
    .svc-page-header { margin-top: 0; height: 250px; }
    .svc-page-header h1 { font-size: 2rem; }
    .services-section { padding: 40px 0; }
    /* Force single column on very small phones */
    .services-grid { grid-template-columns: 1fr; padding: 0 10px; } 
}
/* --- PRO CONTACT PAGE (Glassmorphism & 3D) --- */

/* 1. Background & Layout */
.contact-pro-wrapper {
    background-color: #f0f2f5;
    background-image: radial-gradient(#dfe6e9 1px, transparent 1px);
    background-size: 20px 20px; /* Dot pattern background */
    padding-bottom: 80px;
}

/* 2. Hero Section (Compact) */
.contact-hero {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 100px; /* Extra padding bottom for overlap */
    text-align: center;
    border-radius: 0 0 50% 50% / 20px; /* Curved bottom */
    margin-top: 80px;
}
.contact-hero h1 { font-size: 2.5rem; font-weight: 800; color: #FFC107; margin-bottom: 10px; }
.contact-hero p { font-size: 1.1rem; opacity: 0.9; }

/* 3. Floating Cards Grid */
.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: -60px; /* Overlaps the dark hero */
    position: relative;
    z-index: 5;
    margin-bottom: 60px;
}

.contact-3d-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #fff;
}
.contact-3d-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.2);
    border-color: #FFC107;
}

.c-icon {
    width: 60px; height: 60px;
    background: #1a1a1a;
    color: #FFC107;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.contact-3d-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.contact-3d-card a { color: #555; text-decoration: none; font-weight: 600; display: block; }
.contact-3d-card a:hover { color: #FFC107; }

/* 4. Split Layout (Form + Map) */
.contact-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Form wider than map */
    gap: 40px;
    align-items: stretch;
}

/* Glass Form */
.glass-form {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.glass-form h2 { font-size: 1.8rem; margin-bottom: 25px; border-left: 5px solid #FFC107; padding-left: 15px; }

.form-floating { position: relative; margin-bottom: 20px; }
.form-floating input, .form-floating textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
    background: #f9f9f9;
}
.form-floating input:focus, .form-floating textarea:focus {
    border-color: #FFC107;
    background: #fff;
}
.form-floating label {
    position: absolute; left: 15px; top: 15px;
    color: #999; pointer-events: none;
    transition: 0.3s; font-size: 0.9rem;
    font-weight: 600;
}
/* Magic label animation */
.form-floating input:focus + label,
.form-floating input:not(:placeholder-shown) + label,
.form-floating textarea:focus + label,
.form-floating textarea:not(:placeholder-shown) + label {
    top: -10px; left: 10px;
    background: #FFC107; color: #000;
    padding: 2px 8px; border-radius: 4px;
    font-size: 0.75rem;
}

.btn-send {
    width: 100%; background: #1a1a1a; color: #fff;
    padding: 16px; border: none; border-radius: 12px;
    font-size: 1.1rem; font-weight: 700; cursor: pointer;
    transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-send:hover { background: #FFC107; color: #000; transform: scale(1.02); }

/* Map Container */
.map-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    height: 100%; min-height: 400px;
    position: relative;
}
.map-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: #fff; padding: 10px 20px;
    border-radius: 50px; font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobile Optimizations */
@media (max-width: 992px) {
    .contact-split { grid-template-columns: 1fr; } /* Stack form & map */
    .map-container { height: 350px; order: -1; } /* Map on top for mobile */
}
@media (max-width: 768px) {
    .contact-hero { margin-top: 0; padding-bottom: 80px; }
    .contact-hero h1 { font-size: 2rem; }
    .glass-form { padding: 25px; }
    .btn-send { font-size: 1rem; }
}

/* Unstick the Admin Bar */
#wpadminbar {
    position: absolute !important;
}

/* Fix the gap for your Header */
body.admin-bar header {
    top: 0 !important; /* Forces menu to top, might cover admin bar slightly */
}
/* --- SEO ROUTE PAGE STYLES --- */

/* Route Banner */
.route-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    position: relative;
}
.route-hero h1 { font-size: 2.5rem; margin-bottom: 10px; color: #FFC107; }
.route-meta { 
    display: flex; justify-content: center; gap: 20px; 
    font-size: 1.1rem; opacity: 0.9; margin-top: 20px; flex-wrap: wrap;
}
.route-meta span { background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 50px; }

/* Journey Info (Timeline) */
.journey-info { padding: 60px 0; background: #fff; }
.route-split { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }

/* SEO Content Area */
.seo-content h2 { font-size: 1.8rem; margin-bottom: 20px; color: #1a1a1a; }
.seo-content p { color: #555; line-height: 1.7; margin-bottom: 20px; }

/* Pricing Grid */
.route-price-box {
    background: #f8f9fa; border: 1px solid #eee; border-radius: 15px;
    padding: 30px; margin-bottom: 30px;
}
.price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 0; border-bottom: 1px dashed #ddd;
}
.price-row:last-child { border-bottom: none; }
.car-type { font-weight: 700; color: #1a1a1a; display: flex; align-items: center; gap: 10px; }
.car-cost { font-weight: 800; color: #FFC107; font-size: 1.2rem; background: #000; padding: 2px 8px; border-radius: 4px; }

/* Quick Booking Form (Sticky Sidebar) */
.sidebar-form {
    background: #fff; padding: 30px; border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); position: sticky; top: 100px;
    border-top: 5px solid #FFC107;
}

/* FAQ Accordion */
.seo-faq { margin-top: 40px; }
.faq-box { border: 1px solid #eee; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-q { 
    background: #f9f9f9; padding: 15px; font-weight: 600; cursor: pointer; 
    display: flex; justify-content: space-between;
}
.faq-a { padding: 15px; color: #666; display: none; border-top: 1px solid #eee; }
.faq-box.active .faq-a { display: block; }

/* Mobile */
@media (max-width: 768px) {
    .route-hero { margin-top: 0; padding: 50px 0; }
    .route-hero h1 { font-size: 1.8rem; }
    .route-split { grid-template-columns: 1fr; }
    .sidebar-form { position: static; }
}
/* --- DROPDOWN MENU STYLES --- */

/* The Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* The Dropdown Content (Hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    top: 100%; /* Shows directly below */
    left: 0;
    overflow: hidden;
    border-top: 3px solid var(--primary);
}

/* Links inside the dropdown */
.dropdown-content a {
    color: var(--dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    border-bottom: 1px solid #f5f5f5;
    transition: 0.2s;
}

/* Hover effects */
.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--primary);
    padding-left: 20px; /* Slide effect */
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Add a small arrow icon to the main link */
.dropbtn i {
    font-size: 0.8rem;
    margin-left: 5px;
    transition: transform 0.3s;
}
.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

/* --- MOBILE DROPDOWN ADJUSTMENT --- */
@media (max-width: 768px) {
    .dropdown {
        width: 100%;
    }
    .dropdown-content {
        position: relative;
        box-shadow: none;
        border-top: none;
        background: #f9f9f9;
        display: none; /* Hidden by default on mobile too */
        padding-left: 20px; /* Indent */
    }
    /* On mobile, we might want to click to open, 
       but for simplicity, let's keep it visible or rely on JS.
       For this code, adding a specific class for mobile visibility */
    .dropdown:hover .dropdown-content {
        display: block;
    }
}
/* --- FIXED DROPDOWN STYLES --- */

/* Basic Dropdown */
.dropdown { position: relative; display: inline-block; }

.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    top: 100%;
    left: 0;
    border-top: 3px solid var(--primary);
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    border-bottom: 1px solid #f5f5f5;
}

/* Show on Hover (Desktop Only) */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content { display: block; }
}

/* --- MOBILE SPECIFIC --- */
@media (max-width: 768px) {
    .dropdown { width: 100%; }
    
    .dropdown-content {
        position: relative; /* Push content down instead of floating */
        box-shadow: none;
        border-top: none;
        background: #f9f9f9;
        padding-left: 20px;
        width: 100%;
    }
    
    .dropbtn {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
/* --- CONTENT PROTECTION (No Copy) --- */
body {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standard */
}

/* Allow selection ONLY on input fields (so people can type in forms) */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
