/* luxury-destinations.css - Premium Luxury Travel Experience */

/* ============================================= */
/* LUXURY VARIABLES & THEME COLORS */
/* ============================================= */
:root {
    --luxury-gold: #D4AF37;
    --luxury-gold-light: #F8D56B;
    --luxury-gold-dark: #B8860B;
    --luxury-navy: #0F1A2F;
    --luxury-navy-light: #1E2A47;
    --luxury-cream: #F5F1E6;
    --luxury-marble: #F8F9FA;
    --luxury-bronze: #CD7F32;
    --luxury-charcoal: #2C3E50;
    --luxury-emerald: #0d9488;
    --luxury-sapphire: #1E40AF;
    --luxury-ruby: #DC2626;
}

/* ============================================= */
/* LUXURY RESET & BASE STYLES */
/* ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--luxury-marble) 0%, var(--luxury-cream) 100%);
    color: var(--luxury-charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================= */
/* LUXURY HEADER FIXES */
/* ============================================= */
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    background: rgba(15, 26, 47, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--luxury-gold);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    border-color: var(--luxury-gold-light);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.brand-text {
    display: none; /* Hide the text "Global Tourist Centre | Ultra-!" */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

.nav-links a.active {
    color: var(--luxury-gold-light);
    background: rgba(212, 175, 55, 0.1);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-light));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 80%;
}

.nav-links a:hover {
    color: var(--luxury-gold-light);
    transform: translateY(-2px);
}

/* Mobile menu toggle - hidden by default */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--luxury-gold-light);
}

/* Remove any conflicting styles from other CSS files */
.header,
.navbar {
    display: none !important;
}

/* Ensure the hero content doesn't overlap with fixed header */
.dubai-hero {
    padding-top: 100px;
    min-height: calc(90vh - 100px);
}

/* ============================================= */
/* LUXURY TYPOGRAPHY */
/* ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--luxury-navy);
    letter-spacing: -0.02em;
}

.luxury-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

.luxury-subtitle {
    font-size: 1.4rem;
    color: var(--luxury-navy-light);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================= */
/* LUXURY HERO SECTION - DUBAI PACKAGES */
/* ============================================= */
.dubai-hero {
    min-height: 90vh;
    background: linear-gradient(135deg, 
        rgba(15, 26, 47, 0.9) 0%, 
        rgba(30, 42, 71, 0.8) 50%, 
        rgba(13, 148, 136, 0.7) 100%),
        url('/assets/Luxury/dubai-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.dubai-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 100 100" opacity="0.1"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-1%, 0); }
    60% { transform: translate(1%, 0); }
    70% { transform: translate(0, -1%); }
    80% { transform: translate(0, 1%); }
    90% { transform: translate(-1%, -1%); }
}

.dubai-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dubai-hero-text h1 {
    font-size: 4.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.discount-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-bronze) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.discount-badge-large::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.price-starting {
    font-size: 1.3rem;
    color: var(--luxury-gold-light);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.package-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.package-features li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.package-features i {
    color: var(--luxury-gold-light);
    font-size: 1.2rem;
}

/* ============================================= */
/* LUXURY BOOKING FORM */
/* ============================================= */
.dubai-booking-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.dubai-booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-emerald), var(--luxury-sapphire));
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--luxury-navy);
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--luxury-navy);
}

.form-group input:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-bronze) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
}

.privacy-note {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.5;
}

.privacy-note a {
    color: var(--luxury-emerald);
    text-decoration: none;
    font-weight: 500;
}

.privacy-note a:hover {
    text-decoration: underline;
}

/* ============================================= */
/* LUXURY EXPERIENCES SECTION */
/* ============================================= */
.experiences {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--luxury-marble) 0%, var(--luxury-cream) 100%);
    position: relative;
}

.experiences::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.experiences-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--luxury-navy);
    position: relative;
}

.experiences-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-emerald));
    border-radius: 2px;
}

.experiences-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.experience-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-emerald) 50%, var(--luxury-sapphire) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card:hover::before {
    opacity: 1;
}

.experience-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.experience-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.experience-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(15, 26, 47, 0.7));
}

.experience-content {
    padding: 2rem;
    position: relative;
}

.experience-title {
    font-size: 1.6rem;
    color: var(--luxury-navy);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.experience-description {
    color: var(--luxury-navy-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.experience-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-bronze) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-navy-light) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.experience-button:hover::before {
    left: 100%;
}

.experience-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 26, 47, 0.3);
    background: linear-gradient(135deg, var(--luxury-emerald) 0%, var(--luxury-sapphire) 100%);
}

/* ============================================= */
/* LUXURY FOOTER ENHANCEMENTS */
/* ============================================= */
.footer {
    background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-charcoal) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-emerald), var(--luxury-sapphire));
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--luxury-gold);
    transition: transform 0.3s ease;
}

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

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--luxury-gold);
    transform: translateY(-3px) scale(1.1);
    color: var(--luxury-navy);
}

.footer-links-container {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: var(--luxury-gold-light);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--luxury-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--luxury-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--luxury-gold-light);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    width: 15px;
}

/* Instagram Section */
.footer-instagram .instagram-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.instagram-embed {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    width: fit-content;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 53, 132, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 3rem;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--luxury-gold-light);
}

.footer-credits {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
}
/* ============================================= */
/* LUXURY ANIMATIONS & EFFECTS */
/* ============================================= */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* Luxury scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--luxury-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-bronze) 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--luxury-gold-dark) 0%, var(--luxury-bronze) 100%);
}

/* ============================================= */
/* ENHANCED HEADER ANIMATIONS */
/* ============================================= */
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#header {
    animation: headerSlideDown 0.6s ease-out;
}

/* Header scroll effect */
#header.scrolled {
    background: rgba(15, 26, 47, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 1rem 5%;
}

/* ============================================= */
/* FIX PAGE TITLE ISSUE */
/* ============================================= */
/* Hide any unwanted page titles */
title {
    display: none !important;
}

/* Ensure no extra text shows in header */
.brand-text,
.site-title,
.page-title {
    display: none !important;
}

/* Fix for any meta title display issues */
head {
    display: none !important;
}

/* ============================================= */
/* MOBILE RESPONSIVE HEADER */
/* ============================================= */
@media (max-width: 768px) {
    #header {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(15, 26, 47, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: center;
        border-radius: 12px;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
}

/* ============================================= */
/* RESPONSIVE DESIGN */
/* ============================================= */
@media (max-width: 1200px) {
    .dubai-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .dubai-hero-text h1 {
        font-size: 3.5rem;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .dubai-hero {
        min-height: 80vh;
    }
    
    .dubai-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
    
    .experiences-title {
        font-size: 2.2rem;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .dubai-hero-text h1 {
        font-size: 2rem;
    }
    
    .discount-badge-large {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .dubai-booking-form {
        padding: 2rem 1.5rem;
    }
    
    .experiences {
        padding: 4rem 1rem;
    }
    
    .experiences-title {
        font-size: 1.8rem;
    }
}

/* Luxury loading states */
.luxury-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--luxury-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Print styles for luxury brochures */
@media print {
    .dubai-booking-form,
    .footer-social,
    .mobile-cta-button {
        display: none;
    }
    
    .dubai-hero {
        background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-emerald) 100%);
    }
    
    .experience-card {
        break-inside: avoid;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Header optimizations */
    #header {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(15, 26, 47, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: center;
        border-radius: 12px;
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    /* Hero section optimizations */
    .dubai-hero {
        padding-top: 80px;
        min-height: auto;
        background-attachment: scroll;
    }
    
    .dubai-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .dubai-hero-text h1 {
        font-size: 2.2rem;
    }
    
    .discount-badge-large {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .price-starting {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .package-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .package-features li {
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
    
    .dubai-booking-form {
        padding: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.4rem;
    }
    
    /* Experiences section optimizations */
    .experiences {
        padding: 3rem 1rem;
    }
    
    .experiences-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .experiences-grid {
        grid-template-columns: none;
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .experiences-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    .experience-card {
        min-width: 300px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .experience-content {
        padding: 1.5rem;
    }
    
    .experience-title {
        font-size: 1.4rem;
    }
    
    .experience-price {
        font-size: 1.2rem;
    }
    
    /* Footer optimizations */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
    
    .footer-bottom {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dubai-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .experience-card {
        min-width: 280px;
    }
    
    .experiences-title {
        font-size: 1.6rem;
    }
}

/* luxury-packages.css - Ultra-Premium Luxury Travel Experience */
/* Enhanced with unique luxury elements and brand colors */

/* ============================================= */
/* LUXURY VARIABLES & THEME COLORS */
/* ============================================= */
:root {
    --luxury-gold: #D4AF37;
    --luxury-gold-light: #F8D56B;
    --luxury-gold-dark: #B8860B;
    --luxury-navy: #0F1A2F;
    --luxury-navy-light: #1E2A47;
    --luxury-cream: #F5F1E6;
    --luxury-marble: #F8F9FA;
    --luxury-bronze: #CD7F32;
    --luxury-charcoal: #2C3E50;
    --luxury-emerald: #0d9488;
    --luxury-sapphire: #1E40AF;
    --luxury-ruby: #DC2626;
    --luxury-pearl: #F8F6F0;
    --luxury-ivory: #FFFFF0;
    --luxury-silver: #C0C0C0;
}

/* ============================================= */
/* LUXURY PACKAGE PAGE STYLES */
/* ============================================= */

/* Package Hero Section - Enhanced Luxury Design */
.package-hero {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(15, 26, 47, 0.85) 0%, 
        rgba(30, 42, 71, 0.75) 50%, 
        rgba(13, 148, 136, 0.65) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 0%, 
        transparent 50%, 
        rgba(13, 148, 136, 0.1) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 4rem 2rem;
}

.package-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-bronze) 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.package-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.hero-title {
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--luxury-gold-light) 0%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-location {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--luxury-gold-light);
}

.hero-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-bronze) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-right: 1rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.6);
}

.video-tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-tour-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Itinerary Section - Luxury Design */
.itinerary {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--luxury-marble) 0%, var(--luxury-cream) 100%);
    position: relative;
}

.itinerary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--luxury-navy);
    position: relative;
    font-family: 'Playfair Display', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-emerald));
    border-radius: 2px;
}

.itinerary-container {
    max-width: 1200px;
    margin: 0 auto;
}

.day-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-emerald) 50%, var(--luxury-sapphire) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.day-card:hover::before {
    opacity: 1;
}

.day-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.day-header {
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-navy-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.day-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-emerald), var(--luxury-sapphire));
}

.day-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--luxury-gold)
}

.day-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--luxury-gold-light)
}

.day-content {
    padding: 2rem;
}

.day-content p {
    color: var(--luxury-navy-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.day-activities {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.day-activities li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--luxury-navy);
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
    background: rgba(15, 26, 47, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.day-activities li:hover {
    background: rgba(15, 26, 47, 0.1);
    transform: translateX(5px);
}

.day-activities i {
    color: var(--luxury-emerald);
    font-size: 1.1rem;
}

/* Accommodation Section - Luxury Design */
.accommodation {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--luxury-cream) 0%, var(--luxury-marble) 100%);
    position: relative;
}

.accommodation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-emerald), transparent);
}

.accommodation-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.hotel-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-emerald) 50%, var(--luxury-sapphire) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotel-card:hover::before {
    opacity: 1;
}

.hotel-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.hotel-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

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

.hotel-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(15, 26, 47, 0.7));
}

.hotel-content {
    padding: 2rem;
    position: relative;
}

.hotel-name {
    font-size: 1.6rem;
    color: var(--luxury-navy);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--luxury-navy-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.hotel-rating {
    color: var(--luxury-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hotel-description {
    color: var(--luxury-navy-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Inclusions Section - Luxury Design */
.inclusions {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--luxury-marble) 0%, var(--luxury-cream) 100%);
    position: relative;
}

.inclusions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-sapphire), transparent);
}

.inclusions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.inclusion-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.inclusion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-emerald) 50%, var(--luxury-sapphire) 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.inclusion-card:hover::before {
    opacity: 1;
}

.inclusion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.inclusion-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-bronze) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.inclusion-title {
    font-size: 1.4rem;
    color: var(--luxury-navy);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.inclusion-description {
    color: var(--luxury-navy-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Footer - Enhanced Luxury Design */
footer {
    background: linear-gradient(135deg, var(--luxury-navy) 0%, var(--luxury-charcoal) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-emerald), var(--luxury-sapphire));
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--luxury-gold);
    transition: transform 0.3s ease;
}

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--luxury-gold);
    transform: translateY(-3px) scale(1.1);
    color: var(--luxury-navy);
}

.footer-column h3 {
    color: var(--luxury-gold-light);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--luxury-gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--luxury-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--luxury-gold-light);
    transform: translateX(8px);
}

.footer-links a:hover::before {
    width: 15px;
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 3rem;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--luxury-gold-light);
}

.footer-credits {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Luxury Animations */
@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* Luxury Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--luxury-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-bronze) 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--luxury-gold-dark) 0%, var(--luxury-bronze) 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-price {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .accommodation-grid,
    .inclusions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .package-hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-price {
        font-size: 1.8rem;
    }
    
    .hero-cta,
    .video-tour-btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .day-activities {
        grid-template-columns: 1fr;
    }
    
    .accommodation-grid,
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .package-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .day-header,
    .day-content,
    .hotel-content {
        padding: 1.5rem;
    }
    
    .inclusion-card {
        padding: 2rem 1.5rem;
    }
}
/* Add these styles to baller.css */

/* ============================================= */
/* MOBILE SCROLL WHEEL SECTIONS */
/* ============================================= */

@media (max-width: 768px) {
    /* Itinerary Section - Horizontal Scroll */
    .itinerary-container {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 2rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        margin: 0 -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .itinerary-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }

    .day-card {
        min-width: 300px;
        scroll-snap-align: start;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .day-card:last-child {
        margin-right: 2rem;
    }

    /* Accommodation Section - Horizontal Scroll */
    .accommodation-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 2rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .accommodation-grid::-webkit-scrollbar {
        display: none;
    }

    .hotel-card {
        min-width: 280px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .hotel-card:last-child {
        margin-right: 2rem;
    }

    /* Inclusions Section - Horizontal Scroll */
    .inclusions-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        padding-bottom: 2rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .inclusions-grid::-webkit-scrollbar {
        display: none;
    }

    .inclusion-card {
        min-width: 250px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .inclusion-card:last-child {
        margin-right: 2rem;
    }

    /* Section Title Enhancements for Mobile */
    .section-title {
        position: relative;
        padding-bottom: 1rem;
    }

    .section-title::after {
        width: 60px;
        bottom: 0;
    }

    /* Add scroll indicators */
    .itinerary::after,
    .accommodation::after,
    .inclusions::after {
        content: '← Scroll →';
        display: block;
        text-align: center;
        color: var(--luxury-navy-light);
        font-size: 0.9rem;
        margin-top: -1rem;
        margin-bottom: 2rem;
        opacity: 0.7;
        font-weight: 500;
    }
}

/* Enhanced touch scrolling for mobile */
@media (max-width: 480px) {
    .day-card {
        min-width: 280px;
    }

    .hotel-card {
        min-width: 260px;
    }

    .inclusion-card {
        min-width: 220px;
        padding: 1.5rem 1rem;
    }

    /* Adjust section padding for better mobile experience */
    .itinerary,
    .accommodation,
    .inclusions {
        padding: 4rem 0;
    }

    /* Improve scroll snap alignment */
    .itinerary-container,
    .accommodation-grid,
    .inclusions-grid {
        scroll-padding: 0 2rem;
    }
}

/* Smooth scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar for desktop (when scroll is visible) */
@media (min-width: 769px) {
    .itinerary-container::-webkit-scrollbar,
    .accommodation-grid::-webkit-scrollbar,
    .inclusions-grid::-webkit-scrollbar {
        height: 8px;
        display: none; /* Hide on desktop since we only want horizontal scroll on mobile */
    }

    .itinerary-container::-webkit-scrollbar-track,
    .accommodation-grid::-webkit-scrollbar-track,
    .inclusions-grid::-webkit-scrollbar-track {
        background: rgba(15, 26, 47, 0.1);
        border-radius: 4px;
    }

    .itinerary-container::-webkit-scrollbar-thumb,
    .accommodation-grid::-webkit-scrollbar-thumb,
    .inclusions-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-bronze) 100%);
        border-radius: 4px;
    }
}

/* Hover effects for desktop */
@media (min-width: 769px) {
    .day-card:hover,
    .hotel-card:hover,
    .inclusion-card:hover {
        transform: translateY(-8px);
    }
}

/* Ensure cards maintain their aspect ratio in horizontal scroll */
.day-card,
.hotel-card,
.inclusion-card {
    height: auto;
}

/* Fix for the last card in horizontal scroll */
.itinerary-container::after,
.accommodation-grid::after,
.inclusions-grid::after {
    content: '';
    min-width: 2rem;
    height: 1px;
    flex-shrink: 0;
}

/* ============================================= */
/* MOBILE OPTIMIZATION STYLES */
/* ============================================= */

/* Base mobile-first adjustments */
@media (max-width: 768px) {
    /* Global text size adjustments */
    body {
      font-size: 14px;
      line-height: 1.5;
    }
    
    h1 {
      font-size: 2rem !important;
      line-height: 1.2;
    }
    
    h2 {
      font-size: 1.75rem !important;
    }
    
    h3 {
      font-size: 1.5rem !important;
    }
    
    /* Header mobile optimization */
    #header {
      padding: 1rem 5%;
    }
    
    .nav-container {
      padding: 0;
    }
    
    .logo {
      width: 45px;
      height: 45px;
    }
    
    .mobile-menu-toggle {
      display: block;
      font-size: 1.25rem;
      padding: 0.5rem;
    }
    
    .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      background: rgba(15, 26, 47, 0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 1.5rem;
      gap: 0.5rem;
      display: none;
      z-index: 1000;
      border-top: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav-links.active {
      display: flex;
    }
    
    .nav-links a {
      padding: 1rem;
      width: 100%;
      text-align: center;
      font-size: 1.1rem;
      border-radius: 8px;
    }
    
    /* Dubai Hero Section Mobile Optimization */
    .dubai-hero {
      min-height: auto;
      padding: 80px 1rem 2rem;
      background-attachment: scroll;
    }
    
    .dubai-hero-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 0;
    }
    
    .dubai-hero-text h1 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }
    
    .discount-badge-large {
      font-size: 1.1rem;
      padding: 0.8rem 1.5rem;
      margin-bottom: 1.5rem;
    }
    
    .price-starting {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
    }
    
    .price-amount {
      font-size: 2rem;
    }
    
    .package-features {
      grid-template-columns: 1fr;
      gap: 0.8rem;
      margin-top: 1.5rem;
    }
    
    .package-features li {
      padding: 0.8rem 1rem;
      font-size: 0.95rem;
    }
    
    .dubai-booking-form {
      padding: 1.5rem;
    }
    
    .form-header h3 {
      font-size: 1.4rem;
    }
    
    /* Experiences Section Mobile Optimization */
    .experiences {
      padding: 3rem 1rem;
    }
    
    .experiences-title {
      font-size: 1.8rem;
      margin-bottom: 2rem;
    }
    
    .experiences-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .experience-card {
      margin: 0 auto;
      max-width: 100%;
    }
    
    .experience-content {
      padding: 1.5rem;
    }
    
    .experience-title {
      font-size: 1.4rem;
    }
    
    .experience-price {
      font-size: 1.2rem;
    }
    
    /* Package Hero Mobile Optimization */
    .package-hero {
      min-height: 70vh;
    }
    
    .hero-content {
      padding: 2rem 1rem;
    }
    
    .hero-title {
      font-size: 2.2rem;
    }
    
    .hero-location {
      font-size: 1.1rem;
    }
    
    .hero-price {
      font-size: 1.8rem;
    }
    
    .hero-cta, .video-tour-btn {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
      text-align: center;
      padding: 1rem 1.5rem;
      font-size: 1.1rem;
    }
    
    /* Itinerary Section Mobile Optimization */
    .itinerary {
      padding: 3rem 1rem;
    }
    
    .section-title {
      font-size: 1.8rem;
      margin-bottom: 2rem;
    }
    
    .day-card {
      margin-bottom: 1.5rem;
    }
    
    .day-header {
      padding: 1.5rem 1.5rem 1rem;
    }
    
    .day-title {
      font-size: 1.4rem;
    }
    
    .day-content {
      padding: 1.5rem;
    }
    
    .day-activities {
      grid-template-columns: 1fr;
      gap: 0.8rem;
    }
    
    .day-activities li {
      padding: 0.7rem 1rem;
      font-size: 0.95rem;
    }
    
    /* Accommodation Section Mobile Optimization */
    .accommodation {
      padding: 3rem 1rem;
    }
    
    .accommodation-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .hotel-content {
      padding: 1.5rem;
    }
    
    .hotel-name {
      font-size: 1.4rem;
    }
    
    /* Inclusions Section Mobile Optimization */
    .inclusions {
      padding: 3rem 1rem;
    }
    
    .inclusions-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .inclusion-card {
      padding: 1.5rem;
    }
    
    .inclusion-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }
    
    .inclusion-title {
      font-size: 1.3rem;
    }
    
    /* Footer Mobile Optimization */
    .footer {
      padding: 3rem 0 0;
    }
    
    .footer-container {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
      padding: 0 1rem;
    }
    
    .footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-social {
      justify-content: center;
    }
    
    .footer-legal-links {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .separator {
      display: none;
    }
    
    .footer-bottom {
      padding: 1.5rem;
    }
    
    /* Horizontal scrolling for itinerary, accommodation, and inclusions on mobile */
    .itinerary-container,
    .accommodation-grid,
    .inclusions-grid {
      display: flex;
      overflow-x: auto;
      gap: 1.5rem;
      padding-bottom: 1rem;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      margin: 0 -1rem;
      padding-left: 1rem;
      padding-right: 1rem;
    }
    
    .itinerary-container::-webkit-scrollbar,
    .accommodation-grid::-webkit-scrollbar,
    .inclusions-grid::-webkit-scrollbar {
      display: none;
    }
    
    .day-card,
    .hotel-card,
    .inclusion-card {
      min-width: 280px;
      scroll-snap-align: start;
      flex-shrink: 0;
      margin-bottom: 0;
    }
    
    .day-card:last-child,
    .hotel-card:last-child,
    .inclusion-card:last-child {
      margin-right: 1rem;
    }
  }
  
  /* Extra small devices */
  @media (max-width: 480px) {
    .dubai-hero-text h1 {
      font-size: 1.8rem;
    }
    
    .hero-title {
      font-size: 1.8rem;
    }
    
    .package-badge {
      font-size: 0.9rem;
      padding: 0.6rem 1.2rem;
    }
    
    .section-title {
      font-size: 1.6rem;
    }
    
    .day-card,
    .hotel-card,
    .inclusion-card {
      min-width: 260px;
    }
    
    .day-header,
    .day-content,
    .hotel-content {
      padding: 1.25rem;
    }
    
    .inclusion-card {
      padding: 1.25rem;
    }
    
    .form-group input {
      padding: 1rem 1.25rem;
    }
    
    .form-submit-btn {
      padding: 1.1rem;
    }
  }
  
  /* Touch-friendly improvements */
  @media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that don't work well on touch */
    .experience-card:hover,
    .day-card:hover,
    .hotel-card:hover,
    .inclusion-card:hover {
      transform: none;
    }
    
    /* Ensure touch targets are at least 44px */
    .nav-links a,
    .experience-button,
    .hero-cta,
    .video-tour-btn,
    .form-submit-btn {
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .footer-social a {
      width: 44px;
      height: 44px;
    }
    
    /* Improve scrolling performance */
    .itinerary-container,
    .accommodation-grid,
    .inclusions-grid {
      -webkit-overflow-scrolling: touch;
    }
  }
  
  /* Performance optimizations for mobile */
  @media (max-width: 768px) {
    /* Reduce animations on low-powered devices */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
    
    /* Optimize images for mobile */
    .experience-image,
    .hotel-image {
      height: 200px;
    }
    
    /* Reduce shadow intensity for better performance */
    .experience-card,
    .day-card,
    .hotel-card,
    .inclusion-card {
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
  }

  /* Additional styles specific to Rajasthan page */
        .rajasthan-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/assets/Luxury/Rajasthan/Rajasthan-Luxury-hero.webp');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .rajasthan-hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .rajasthan-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .rajasthan-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .rajasthan-packages {
            padding: 80px 0;
            background-color: #f9f9f9;
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .package-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .package-image {
            height: 250px;
            overflow: hidden;
        }
        
        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .package-card:hover .package-image img {
            transform: scale(1.05);
        }
        
        .package-content {
            padding: 25px;
        }
        
        .package-badge {
            display: inline-block;
            background: #d4af37;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .package-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #333;
        }
        
        .package-location {
            color: #777;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .package-location i {
            color: #d4af37;
        }
        
        .package-description {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .package-features {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }
        
        .package-features li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .package-features i {
            color: #d4af37;
        }
        
        .package-button {
            display: inline-block;
            background: #d4af37;
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        
        .package-button:hover {
            background: #b8941f;
        }
        
        .rajasthan-info {
            padding: 80px 0;
            background: white;
        }
        
        .info-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .info-card {
            text-align: center;
            padding: 30px;
        }
        
        .info-icon {
            font-size: 3rem;
            color: #d4af37;
            margin-bottom: 20px;
        }
        
        .info-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }
        
        .info-description {
            color: #555;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .rajasthan-hero h1 {
                font-size: 2.5rem;
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
            }
        }