/* --- Root Variables & Base --- */
:root { 
    --primary-blue: #004a99; 
    --accent-yellow: #ffc107; 
    --primary-light-gray: #f4f4f4;
}

body { 
    background-color: #f4f7f6; 
    font-family: 'Segoe UI', sans-serif; 
}

/* --- Navbar & Logo Alignment (New Part) --- */
.navbar { 
    background-color: var(--primary-light-gray) !important; 
    border-bottom: 1px solid #ddd;
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: 0.3s;
}

/* Links ko logo ke paas align karne ke liye */
.navbar-nav .nav-link {
    color: #333 !important;
    padding: 0.5rem 1rem;
    margin-right: 5px; /* Ab left ki jagah right margin dein */
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

@media (max-width: 768px) {
    .nav-logo { height: 40px; }
    .navbar-nav .nav-link { border-bottom: 1px solid #eee; }
}

/* --- Breadcrumb & Fare Cards --- */
.breadcrumb-box { background: #fff; padding: 15px; border-radius: 12px; font-weight: 600; border: 1px solid #eee; }

.fare-card { border: none; border-radius: 15px; transition: 0.4s; background: #fff; position: relative; overflow: hidden; }
.fare-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.price-tag { color: #004a99; font-size: 2.2rem; font-weight: 800; }

.btn-book { background: #ffc107; color: #000; font-weight: bold; border: none; border-radius: 8px; padding: 10px 20px; width: 100%; transition: 0.3s; }
.btn-book:hover { background: #e5ae06; transform: scale(1.02); }

.car-icon { font-size: 3rem; color: #dee2e6; position: absolute; right: -10px; top: -10px; opacity: 0.5; }

/* --- Hero Section --- */
.hero-banner { 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&w=1350&q=80');
    background-size: cover; 
    background-position: center; 
    color: white; 
    padding: 80px 0 120px; 
    text-align: center;
}

/* --- Search Box & Tabs --- */
.booking-container { margin-top: -80px; position: relative; z-index: 10; }
.nav-tabs { border: none; justify-content: center; margin-bottom: -1px; }
.nav-tabs .nav-link { 
    background: #fff; color: #333; border: none; margin: 0 5px; 
    padding: 12px 30px; border-radius: 10px 10px 0 0; font-weight: 600; 
}
.nav-tabs .nav-link.active { background: var(--primary-blue); color: white; }

.search-card { 
    background: white; border-radius: 20px; padding: 30px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); border: none; 
}

.form-label { font-weight: 600; font-size: 0.9rem; color: #555; }
.btn-search { background: var(--accent-yellow); color: #000; font-weight: 700; padding: 12px; border-radius: 8px; width: 100%; transition: 0.3s; }
.btn-search:hover { background: #e5ac00; transform: translateY(-2px); }

#return_date_container { display: none; }

/* --- Vehicle Slider --- */
.vehicle-slider { background: #ffffff; border-radius: 20px; overflow: hidden; border: 1px solid #eee; }
.slider-img { max-height: 300px; object-fit: contain; padding: 20px; transition: transform 0.3s ease; }
.carousel-item:hover .slider-img { transform: scale(1.05); }

.carousel-control-prev-icon, .carousel-control-next-icon { width: 40px; height: 40px; background-size: 50%; }

/* --- FAQ Styling --- */
.custom-faq .accordion-item { border: 1px solid #eee !important; overflow: hidden; }
.custom-faq .accordion-button { background-color: #ffffff; color: #333; padding: 20px; font-size: 1.1rem; }
.custom-faq .accordion-button:not(.collapsed) { background-color: #f8f9fa; color: #004a99; box-shadow: none; }

.custom-faq .accordion-button::after {
    background-image: none;
    content: "\f067"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #004a99;
    transform: none;
    transition: 0.3s;
}

.custom-faq .accordion-button:not(.collapsed)::after { content: "\f068"; transform: rotate(180deg); }
.accordion-body { line-height: 1.6; background-color: #fff; }

/* Footer Styling */
footer {
    background-color: #1a1a1a !important; /* Dark Black/Gray */
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #ffc107 !important; /* Yellow hover effect */
    padding-left: 5px;
    transition: 0.3s;
}

.social-icon:hover {
    color: #ffc107 !important;
    transform: translateY(-5px);
    transition: 0.3s;
}

hr {
    opacity: 0.2;
}

.small-legal {
    font-size: 0.85rem;
    transition: 0.3s color ease;
}

.small-legal:hover {
    color: var(--accent-yellow) !important;
    text-decoration: underline !important;
}

/* Agar mobile par gap zyada lage toh */
@media (max-width: 768px) {
    .legal-links {
        margin-top: 15px;
    }
}

/* Floating Buttons Styling */
.floating-btn {
    position: fixed;
    bottom: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    text-decoration: none !important;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Call Button - Left Side */
.btn-call-float {
    left: 20px;
    background-color: #007bff; /* Blue color for Call */
}

/* WhatsApp Button - Right Side */
.btn-whatsapp-float {
    right: 20px;
    background-color: #25d366; /* Green color for WhatsApp */
}

/* Mobile responsive adjustment */
@media (max-width: 768px) {
    .floating-btn {
        bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    .btn-call-float { left: 15px; }
    .btn-whatsapp-float { right: 15px; }
}