
 :root {
            --primary-orange: #ff6423;
            --primary-dark: #19232d;
            --primary-white: #ffffff;
            --orange-hover: #ff7d45;
            --orange-light: #fff5f2;
            --dark-light: #2a3642;
            --text-gray: #6b7280;
            --border-color: #e5e7eb;
            --shadow-sm: 0 2px 8px rgba(25, 35, 45, 0.08);
            --shadow-md: 0 4px 20px rgba(25, 35, 45, 0.12);
            --shadow-lg: 0 10px 40px rgba(25, 35, 45, 0.15);
        }
 .section-title {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 8px;
            animation: fadeInUp 0.6s ease-out;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-gray);
            animation: fadeInUp 0.6s ease-out 0.1s backwards;
        }

 /* Trending Destinations Carousel */
        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            padding: 0 50px;
        }

        .carousel-container {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 10px 0;
        }

        .carousel-container::-webkit-scrollbar {
            display: none;
        }

        .destination-card {
            flex: 0 0 280px;
            height: 320px;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-md);
            animation: slideIn 0.6s ease-out backwards;
        }

        .destination-card:nth-child(1) { animation-delay: 0.1s; }
        .destination-card:nth-child(2) { animation-delay: 0.2s; }
        .destination-card:nth-child(3) { animation-delay: 0.3s; }
        .destination-card:nth-child(4) { animation-delay: 0.4s; }
        .destination-card:nth-child(5) { animation-delay: 0.5s; }

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

        .destination-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(255, 100, 35, 0.25);
        }

        .destination-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(25, 35, 45, 0.7) 100%);
            z-index: 1;
            transition: all 0.4s ease;
        }

        .destination-card:hover::before {
            background: linear-gradient(to bottom, transparent 0%, rgba(255, 100, 35, 0.8) 100%);
        }

        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

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

        .destination-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            z-index: 2;
            color: var(--primary-white);
        }

        .destination-label {
            font-size: 0.875rem;
            font-weight: 600;
            opacity: 0.95;
            margin-bottom: 4px;
            letter-spacing: 0.5px;
        }

        .destination-name {
            font-size: 1.75rem;
            font-weight: 800;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        /* Carousel Navigation */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: var(--primary-white);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            z-index: 10;
        }

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

        .carousel-nav.prev {
            left: 0;
        }

        .carousel-nav.next {
            right: 0;
        }

        .carousel-nav i {
            font-size: 1.2rem;
        }

        /* Top Deals Grid */
        .deals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .deal-card {
            background: var(--primary-white);
            border-radius: 16px;
            padding: 20px;
            box-shadow: var(--shadow-sm);
            border: 1.5px solid var(--border-color);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            animation: fadeInCard 0.6s ease-out backwards;
        }

        .deal-card:nth-child(1) { animation-delay: 0.1s; }
        .deal-card:nth-child(2) { animation-delay: 0.2s; }
        .deal-card:nth-child(3) { animation-delay: 0.3s; }
        .deal-card:nth-child(4) { animation-delay: 0.4s; }
        .deal-card:nth-child(5) { animation-delay: 0.5s; }
        .deal-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInCard {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .deal-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary-orange);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .deal-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(255, 100, 35, 0.2);
            border-color: var(--primary-orange);
        }

        .deal-card:hover::before {
            transform: scaleY(1);
        }

        .save-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--primary-orange);
            color: var(--primary-white);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(255, 100, 35, 0.3);
        }

        .deal-dates {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding-top: 20px;
        }

        .date-block {
            font-size: 0.813rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        .route {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            gap: 15px;
        }

        .airport-code {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-dark);
        }

        .city-name {
            font-size: 0.875rem;
            color: var(--text-gray);
            margin-top: 2px;
        }

        .route-icon {
            color: var(--text-gray);
            font-size: 1.2rem;
            opacity: 0.5;
        }

        .deal-divider {
            height: 1px;
            background: var(--border-color);
            margin: 16px 0;
        }

        .deal-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price-label {
            font-size: 0.875rem;
            color: var(--text-gray);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .price {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary-orange);
        }

        .price-suffix {
            font-size: 0.875rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        .book-deal-btn {
            background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8552 100%);
            color: var(--primary-white);
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(255, 100, 35, 0.3);
            letter-spacing: 0.5px;
        }

        .book-deal-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 100, 35, 0.4);
        }

        .book-deal-btn:active {
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .carousel-wrapper {
                padding: 0 40px;
            }

            .destination-card {
                flex: 0 0 240px;
                height: 280px;
            }

            .carousel-nav {
                width: 36px;
                height: 36px;
            }

            .carousel-nav i {
                font-size: 1rem;
            }

            .deals-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 1.75rem;
            }
        }

        @media (max-width: 480px) {
            .carousel-wrapper {
                padding: 0 30px;
            }

            .destination-card {
                flex: 0 0 200px;
                height: 260px;
            }

            .destination-name {
                font-size: 1.5rem;
            }

            .airport-code {
                font-size: 1.25rem;
            }

            .price {
                font-size: 1.5rem;
            }
        }

        /* Loading Animation */
        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 1000px 100%;
            animation: shimmer 2s infinite;
        }
