/* ===================================
   AirVerge - Premium Flight Booking
   Modern, Responsive Design
   =================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Premium Blues & Golds */
    --primary-color: #1a4d8f;
    --primary-dark: #0f3463;
    --primary-light: #2563a6;
    --secondary-color: #d4af37;
    --secondary-dark: #b8941f;
    --accent-color: #00a8e8;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;
    
    /* Status Colors */
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    
    /* Spacing */
    --container-max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Header Styles
   =================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 6px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-large, .btn-outline, .btn-consultation {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    background: var(--secondary-color);
    color: var(--white);
}

.btn-large:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-consultation {
    background: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-consultation:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, #0f3463 0%, #1a4d8f 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-brand {
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    animation: fadeInRight 0.8s ease;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow);
}

.hero-image img:hover {
    transform: scale(1.05) rotateY(5deg);
}

/* ===================================
   Section Styles
   =================================== */
.bookings-section,
.departures-section,
.video-section,
.consultation-section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: var(--spacing-sm) auto 0;
    border-radius: 2px;
}

/* ===================================
   Carousel Styles
   =================================== */
.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: var(--spacing-md);
    transition: transform var(--transition-normal);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 10;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

/* Bookings Carousel - Arrow positioning */
.bookings-section .carousel-container {
    position: relative;
    padding: 0 60px;
}

.bookings-section .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.bookings-section .carousel-btn.prev {
    left: 0;
}

.bookings-section .carousel-btn.next {
    right: 0;
}

/* Hide arrows on mobile for Recent Bookings */
@media (max-width: 768px) {
    .bookings-section .carousel-btn {
        display: none !important;
    }
    
    .bookings-section .carousel-container {
        padding: 0;
    }
    
    .bookings-section .carousel {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Hide scrollbar on mobile */
    .bookings-section .carousel::-webkit-scrollbar {
        display: none;
    }
    
    .bookings-section .carousel {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
}


.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ===================================
   Booking Cards
   =================================== */
.bookings-section {
    background: var(--off-white);
}

.booking-card {
    flex: 0 0 calc(33.333% - var(--spacing-md));
    min-width: 280px;
    background: var(--white);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.booking-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.booking-avatar {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.booking-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.booking-route {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.booking-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.booking-status.confirmed {
    background: #d4edda;
    color: var(--success);
}

/* ===================================
   Departure Cards
   =================================== */
.departure-card {
    flex: 0 0 calc(33.333% - var(--spacing-md));
    min-width: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.departure-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.departure-card:hover img {
    transform: scale(1.1);
}

.departure-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.departure-card:hover .departure-overlay {
    transform: translateY(0);
}

.departure-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

/* ===================================
   Video Section
   =================================== */
.video-section {
    background: var(--off-white);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* ===================================
   Consultation Section
   =================================== */
.consultation-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.consultation-content {
    max-width: 800px;
    margin: 0 auto;
}

.consultation-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
}

.consultation-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.consultation-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-gray);
    color: var(--light-gray);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-style: italic;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    margin-bottom: var(--spacing-xs);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   Responsive Design - Tablet
   =================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-brand {
        font-size: 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .consultation-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   Desktop Arrow Fix - INSERT HERE
   =================================== */
@media (min-width: 768px) {
    .destinations .carousel-btn {
        display: flex !important;
    }
    
    .destinations .destination-carousel {
        overflow: hidden !important;
    }
}

/* ===================================
   Responsive Design - Mobile
   =================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-md);
        padding: var(--spacing-sm);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-brand {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .btn-large, .btn-outline {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .booking-card {
        flex: 0 0 calc(33.333% - var(--spacing-sm));
        min-width: 260px;
        padding: var(--spacing-md);
    }
    
    .departure-card {
        flex: 0 0 calc(33.333% - var(--spacing-sm));
        min-width: 280px;
    }
    
    .departure-card img {
        height: 250px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: -15px;
    }
    
    .carousel-btn.next {
        right: -15px;
    }
    
    .consultation-title {
        font-size: 1.8rem;
    }
    
    .consultation-description {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .header,
    .footer,
    .carousel-btn,
    .btn-primary,
    .btn-secondary,
    .btn-large,
    .btn-outline {
        display: none;
    }
}

/* ==========================================
   Text-based Destination Cards - Updated
   ========================================== */

/* Carousel Container */
.destination-carousel {
    position: relative;
    padding: 20px 60px;
}

/* Grid Container */
.destination-grid-text {
    display: flex;
    gap: 20px;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    padding: 20px 0;
    
    /* Hide scrollbar - All browsers */
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
}

/* Force hide scrollbar - Chrome/Safari/Opera */
.destination-grid-text::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.destination-grid-text::-webkit-scrollbar-thumb {
    display: none !important;
}

.destination-grid-text::-webkit-scrollbar-track {
    display: none !important;
}

/* Hide scrollbar for Chrome, Safari, Opera */
.destination-grid-text::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* Hide scrollbar */
.destination-grid-text::-webkit-scrollbar {
    display: none;
}

.destination-grid-text {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Card Styling */
.destination-card-text {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    min-width: calc(20% - 16px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.destination-card-text:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
    border-color: #d4af37;
}

/* Route Info */
.route-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.route-info .city {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.5px;
}

.route-info .arrow {
    font-size: 24px;
    color: #d4af37;
    font-weight: bold;
}

/* Class Type */
.class-type {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0;
}

/* Price */
.price {
    font-size: 28px;
    font-weight: 800;
    color: #1e3a8a;
    margin: 15px 0;
}

/* Book Button */
.btn-book {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-book:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #d4af37;
    color: #1e3a8a;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn i {
    font-size: 18px;
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Large Desktop */
@media (min-width: 1400px) {
    .destination-card-text {
        min-width: calc(16.666% - 17px); /* 6 cards */
    }
}

/* Desktop */
@media (min-width: 1024px) and (max-width: 1399px) {
    .destination-card-text {
        min-width: calc(20% - 16px); /* 5 cards */
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .destination-card-text {
        min-width: calc(33.333% - 14px); /* 3 cards */
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 16px;
    }
}

/* ===================================
   Desktop - Ensure arrows are visible
   =================================== */
@media (min-width: 768px) {
    /* Destination carousels - Show arrows on desktop */
    .destinations .carousel-btn {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid #d4af37;
        color: #1e3a8a;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    .destinations .carousel-btn:hover {
        background: #d4af37;
        color: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    }
    
    .destinations .carousel-btn.prev {
        left: 10px;
    }
    
    .destinations .carousel-btn.next {
        right: 10px;
    }
    
    /* Ensure container has proper padding for arrows */
    .destinations .destination-carousel {
        padding: 20px 60px !important;
        overflow: hidden !important;
    }
    
    /* Hide scrollbar on desktop */
    .destination-grid-text {
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .destination-grid-text::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-md);
        padding: var(--spacing-sm);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .hero {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-brand {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .btn-large, .btn-outline {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .booking-card {
        flex: 0 0 calc(33.333% - var(--spacing-sm));
        min-width: 260px;
        padding: var(--spacing-md);
    }
    
    .departure-card {
        flex: 0 0 calc(33.333% - var(--spacing-sm));
        min-width: 280px;
    }
    
    .departure-card img {
        height: 250px;
    }
    
    /* Recent Bookings - Hide arrows on mobile */
    .bookings-section .carousel-btn {
        display: none !important;
    }
    
    .bookings-section .carousel-container {
        padding: 0 !important;
    }
    
    .bookings-section .carousel {
        overflow-x: scroll !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .bookings-section .carousel::-webkit-scrollbar {
        display: none !important;
    }
    
    /* Destination sections - Hide arrows on mobile only */
    .destinations .carousel-btn {
        display: none !important;
    }
    
    .destinations .destination-carousel {
        padding: 20px 0 !important;
    }
    
    /* Enable touch scrolling for destination sections on mobile */
    .destination-grid-text {
        -webkit-overflow-scrolling: touch;
    }
    
    .consultation-title {
        font-size: 1.8rem;
    }
    
    .consultation-description {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}


/* Small Mobile */
@media (max-width: 480px) {
    .destination-carousel {
        padding: 20px 45px;
    }
    
    .destination-card-text {
        min-width: calc(50% - 10px); /* 2 cards */
        padding: 20px 12px;
    }
    
    .route-info .city {
        font-size: 16px;
    }
    
    .price {
        font-size: 22px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn i {
        font-size: 12px;
    }
}

/* ==========================================
   FORCE HIDE SCROLLBARS - FINAL FIX
   ========================================== */

/* Target specific sections */
#dubai-grid,
#abudhabi-grid,
#qatar-grid {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    
    /* Firefox */
    scrollbar-width: none !important;
    
    /* IE/Edge */
    -ms-overflow-style: none !important;
}

/* Chrome/Safari/Opera - Triple layer protection */
#dubai-grid::-webkit-scrollbar,
#abudhabi-grid::-webkit-scrollbar,
#qatar-grid::-webkit-scrollbar {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    background: transparent !important;
}

#dubai-grid::-webkit-scrollbar-thumb,
#abudhabi-grid::-webkit-scrollbar-thumb,
#qatar-grid::-webkit-scrollbar-thumb {
    display: none !important;
    background: transparent !important;
}

#dubai-grid::-webkit-scrollbar-track,
#abudhabi-grid::-webkit-scrollbar-track,
#qatar-grid::-webkit-scrollbar-track {
    display: none !important;
    background: transparent !important;
}

/* Ensure parent doesn't show overflow */
.destinations {
    overflow: hidden !important;
}

.destination-carousel {
    overflow: hidden !important;
}

/* Remove any default browser scrollbar styling */
* {
    scrollbar-width: thin;
}

.destination-grid-text {
    scrollbar-width: none !important;
}

/* Section spacing between Recent Bookings and Dubai Departures */
#dubai-departures {
    margin-top: 50px;
}