/* (Appending to the existing style.css) */
/* Call to Action */
.cta-section {
    background: linear-gradient(rgba(10,10,10,0.8), rgba(10,10,10,0.8)), url('../images/hero_bg_1781816879672.png') no-repeat center center / cover;
    text-align: center;
    padding: 8rem 0;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Our Clients (Testimonials) */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Swiper Pagination Overrides */
.testimonials-slider {
    --swiper-pagination-color: var(--primary-color);
    --swiper-pagination-bullet-inactive-color: #ffffff;
    --swiper-pagination-bullet-inactive-opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}

/* Partners */
.partners-section {
    background-color: #ffffff; /* White background to seamlessly blend logo backgrounds */
    padding: 5rem 0;
    position: relative;
}

.partners-section h2 {
    color: #111 !important; /* Dark text for white background */
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

/* Gradient edges for smooth sliding effect */
.slider-container::before,
.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255,255,255,0) 100%);
}

.partners-logo-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 35s linear infinite; /* Slowed down from 20s to 35s */
    gap: 6rem;
    align-items: center;
}

.partners-logo-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 3rem)); }
}

.partner-logo-img {
    height: 120px; /* Increased size significantly */
    max-width: 350px;
    object-fit: contain;
    /* Multiply blend mode removes all white backgrounds perfectly on a light background! */
    mix-blend-mode: multiply;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-logo-img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

/* Blogs */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.blog-img {
    width: 100%;
    height: 220px;
    background: #222;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.blog-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* FAQs */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Get in Touch (Home Page Mini Contact) */
.get-in-touch-section {
    background: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)), url('../images/service_city_tour_1781816927346.png') no-repeat center center / cover;
    padding: 6rem 0;
}

.contact-mini-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
}

.contact-mini-info {
    flex: 1;
    min-width: 300px;
}

.contact-mini-form {
    flex: 1.5;
    min-width: 300px;
}

/* Dynamic Nested Navigation Menus */
.nav-links li {
    position: relative;
}

.dropdown-icon {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Desktop Dropdown Styles */
@media (min-width: 993px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: var(--bg-dark);
        border: 1px solid var(--glass-border);
        border-radius: 10px;
        padding: 1rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
        z-index: 1000;
        /* Sub-dropdown positioning */
    }
    
    .dropdown-menu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: 5px;
    }
    
    .has-dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .has-dropdown:hover > a .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .dropdown-menu li {
        width: 100%;
    }
    
    .dropdown-menu a {
        display: block;
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .dropdown-menu a::after {
        display: none; /* No underline effect in dropdowns */
    }
    
    .dropdown-menu a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--primary-color);
        padding-left: 2rem;
    }
}

/* Mobile Dropdown Styles */
@media (max-width: 992px) {
    .dropdown-menu {
        display: none;
        padding-left: 1.5rem;
        margin-top: 0.5rem;
        border-left: 1px dashed var(--glass-border);
    }
    
    /* On mobile, we use CSS hover to expand for simplicity, but ideally JS toggles are better. We'll stick to hover for now. */
    .has-dropdown:hover > .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease forwards;
    }
    
    .dropdown-menu a {
        font-size: 1rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a::after {
        display: none;
    }
}

/* WhatsApp Button */
.btn-whatsapp {
    background-color: var(--wa-btn-color, #25D366);
    color: #ffffff;
    border: none;
}
.btn-whatsapp:hover {
    background-color: var(--wa-btn-hover, #128C7E);
    color: #ffffff;
}

/* Booking Widget Styles */
.booking-widget {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    font-family: var(--font-main);
    border: 1px solid var(--glass-border);
    margin-top: 100px;
    position: relative;
    z-index: 10;
}

.booking-tabs {
    display: flex;
    border-bottom: 1px solid var(--glass-border);
}

.booking-tab {
    flex: 1;
    padding: 1rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: var(--font-main);
}

.booking-tab.active {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.booking-form {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-field-wrapper {
    background: var(--bg-dark);
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

.field-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
}

.field-header i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 14px;
    text-align: center;
}

.field-input {
    padding-left: 22px;
}

.field-input input, .field-input select {
    border: none;
    background: transparent;
    font-size: 0.85rem;
    color: var(--text-light);
    width: 100%;
    outline: none;
    font-family: var(--font-main);
    padding: 0;
}

.field-input input::placeholder {
    color: var(--text-muted);
}

/* SVG Arrow for Selects, white text (%23f5f5f5) */
.field-input select {
    appearance: none;
    background: transparent url('data:image/svg+xml;utf8,<svg fill="%23f5f5f5" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') no-repeat right 5px center !important;
    padding-right: 25px;
}

#duration {
    background: transparent url('data:image/svg+xml;utf8,<svg fill="%23f5f5f5" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') no-repeat right center !important;
}

.field-input select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

/* Chrome/Safari input date icon styling */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.time-selects {
    display: flex;
    gap: 15px;
}

.time-selects select {
    flex: 1;
}

.btn-search-widget {
    background: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    padding: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search-widget:hover {
    background: var(--primary-hover);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}


/* Fleet Home Grid */
.fleet-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .fleet-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet-grid-home {
        grid-template-columns: 1fr;
    }
    .contact-mini-wrapper {
        padding: 1.5rem;
        gap: 2rem;
    }
    .contact-mini-info, .contact-mini-form {
        min-width: 100%;
        flex: 1 1 100%;
    }
}
