 :root {
            --gold: #d4af37;
            --gold-light: #e6c766;
            --dark: #1a1a1a;
            --light: #f8f8f8;
            --dark-blue: #0c2340;
            --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            --transition-fast: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #fff;
            min-height: 100vh;
            padding: 0;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Navbar Container - Fixed Position */
        .navbar-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: var(--dark-blue);
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 130px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Navbar Border - Separate Div */
        .navbar-border {
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            width: 100%;
            animation: shimmer 3s infinite linear;
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }
            100% {
                background-position: 200% center;
            }
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            margin-bottom: 0;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
            font-family: 'Times New Roman', Times, serif;
            transition: var(--transition);
            position: relative;
        }

        .logo:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .logo:hover::after {
            width: 100%;
        }
        
           .logo a {
            font-size: 28px;
            font-weight: bold;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
            font-family: 'Times New Roman', Times, serif;
            transition: var(--transition);
            position: relative;
            text-decoration: none;     
        }

        .logo a:hover {
            transform: scale(1.05);
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
        }

        .logo a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .logo a:hover::after {
            width: 100%;
        }
        

        /* Navigation */
        nav ul {
            display: flex;
            gap: 15px;
        }

        nav ul li {
            position: relative;
            list-style: none;
        }

        nav ul li a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 18px;
            color: var(--light);
            font-weight: 500;
            text-transform: capitalize;
            transition: var(--transition);
            text-decoration: none;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        nav ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.7s ease;
        }

        nav ul li a:hover::before {
            left: 100%;
        }

        nav ul li a:hover {
            color: var(--gold);
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        /* Main Dropdown Menu - More Luxurious */
        nav ul li ul {
            position: absolute;
            top: 100%;
            left: 0;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            background: rgba(22, 22, 22, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                        0 0 0 1px rgba(255, 255, 255, 0.05),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 100;
            padding: 20px;
            min-width: 750px;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            pointer-events: none;
        }
        
        /* Navbar Split Layout */
        .navbar-split {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .nav-left,
        .nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .nav-right li ul {
            left: auto !important;
            right: -500px !important;
            transform: translateX(0px);
        }
        .nav-left li ul {
            left: -85px !important;
            right: auto !important;
            transform: translateX(0px);
        }

        .logo {
            text-align: center;
            flex: 0 0 auto;
            padding: 0 40px;
        }

        /* Circular Logo - Increased size and positioned at left corner */
        .nav-logo {
            width: 160px;
            height: 160px; 
            overflow: hidden; 
            margin-right: 20px; 
            position: absolute; 
            left: 0px; 
            top: 53%;
            transform: translateY(-50%); 
            z-index: 1001;
        }

        .nav-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Submenu Columns */
        .submenu-column {
            flex: 1;
            min-width: 160px;
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInUp 0.5s forwards;
            animation-delay: 0.1s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .submenu-column:nth-child(2) {
            animation-delay: 0.2s;
        }

        .submenu-column:nth-child(3) {
            animation-delay: 0.3s;
        }

        .submenu-column h4 {
            color: var(--gold);
            font-size: 16px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
        }

        .submenu-column h4::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .submenu-column:hover h4::after {
            width: 80px;
        }

        /* Sub-Submenu */
        .submenu-column ul {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 0;
            display: block;
            min-width: auto;
            pointer-events: auto;
        }

        .submenu-column ul li {
            margin-bottom: 6px;
            opacity: 0;
            transform: translateX(-10px);
            animation: slideInRight 0.4s forwards;
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .submenu-column ul li:nth-child(1) { animation-delay: 0.1s; }
        .submenu-column ul li:nth-child(2) { animation-delay: 0.15s; }
        .submenu-column ul li:nth-child(3) { animation-delay: 0.2s; }
        .submenu-column ul li:nth-child(4) { animation-delay: 0.25s; }
        .submenu-column ul li:nth-child(5) { animation-delay: 0.3s; }

        .submenu-column ul li a {
            padding: 8px 10px;
            color: #ddd;
            font-size: 14px;
            font-weight: 400;
            transition: var(--transition);
            border-radius: 10px;
            display: block;
            pointer-events: auto;
            width: 98%;
            position: relative;
        }

        .submenu-column ul li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: var(--gold);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .submenu-column ul li a:hover {
            color: var(--gold-light);
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(8px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            width: 98%;
        }

        .submenu-column ul li a:hover::before {
            transform: scaleY(1);
        }
        
        /* Show More Link Style */
        .show-more-link {
            color: var(--gold);
            font-weight: 600;
            font-size: 14px;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 5px;
            text-decoration: none;
            transition: var(--transition);
        }

        .show-more-link i {
            transition: transform 0.3s ease;
        }
        
        .show-more-link:hover {
            color: var(--gold-light);
            text-decoration: underline;
        }

        .show-more-link:hover i {
            transform: translateX(5px);
        }

        /* Hero Image Slideshow - CHANGED TO MAKE IT SCROLLABLE */
        .hero-slideshow {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: 1;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            overflow: hidden;
            background: none !important;
        }

        .slide.active {
            opacity: 1;
        }

        .slide video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: none !important;
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            transform: none !important;
            z-index: -1;
        }

        .slide::after {
            display: none !important;
        }

        .slide::before {
            display: none !important;
        }

        /* Right side icons - positioned in right corner */
        .nav-icons {
            display: flex;
            align-items: center;
            gap: 15px;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1002;
        }

        .nav-icon {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .nav-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .nav-icon:hover::before {
            width: 100%;
            height: 100%;
        }

        .nav-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .nav-icon i {
            font-size: 20px;
            color: var(--light);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .nav-icon:hover i {
            color: var(--gold);
            transform: scale(1.1);
        }

      /* Search Box */
.search-box {
    position: absolute;
    top: 100%;
    right: 20px;
    width: 250px;
    height: 50px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-box.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.search-box input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--light);
    font-size: 14px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-box button {
    background: transparent;
    border: none;
    outline: none;
    color: var(--gold);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.search-box button:hover {
    transform: scale(1.1);
}
         
        /* mobile view menu bar */

        /* Mobile Menu Button */
/* Mobile Menu Button */
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    right: 20px; /* Changed from left to right */
    top: 12%;
    transform: translateY(-50%);
    z-index: 1002;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    overflow: hidden;
    left: auto !important; /* Override any left positioning */
}

.mobile-menu-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.mobile-menu-btn:hover::before {
    transform: scale(1);
}

.mobile-menu-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.mobile-menu-btn i {
    font-size: 22px;
    color: var(--dark);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.mobile-menu-btn:active {
    transform: translateY(-50%) scale(0.95);
}

/* Add a pulse animation to draw attention */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.mobile-menu-btn {
    animation: pulse 2s infinite;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--dark-blue);
    z-index: 1003;
    transition: left 0.4s ease;
    overflow-y: auto;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    width: 80px;
    height: 80px;
}

.mobile-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.close-menu {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.close-menu i {
    font-size: 18px;
    color: var(--light);
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-content {
    padding: 20px 0;
}

.mobile-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.mobile-menu-nav li {
    margin-bottom: 5px;
}

.mobile-menu-nav li a {
    display: block;
    padding: 15px 20px;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.mobile-menu-nav li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    padding-left: 25px;
}

.mobile-menu-footer {
    padding: 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.mobile-social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: var(--transition);
}

.mobile-social-icons a:hover {
    background: var(--gold);
    color: var(--dark);
}

.mobile-contact-info {
    color: #ddd;
    font-size: 14px;
}

.mobile-contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.mobile-contact-info i {
    margin-right: 10px;
    margin-top: 3px;
    color: var(--gold);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 1230px) {
    /* Tablet View */
    .navbar-container {
        min-height: 100px;
    }
    
    .nav-logo {
        width: 100px;
        height: 100px;
        left: 60px;
    }
    
    .logo {
        font-size: 18px;
        padding: 0 20px;
        margin-left: -6%;
    }
    
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-menu-btn {
          position: fixed;
        display: flex;
        right: 20px !important; /* Changed from left to right */
        width: 45px;
        height: 45px;
        top: 7.5%;
        left: auto !important; /* Override any left positioning */
    }
    
    .mobile-menu-btn i {
        font-size: 20px;
    }
    
    .nav-icons {
        right: 75px; /* Adjusted to make space for mobile menu button */
    }
    
    /* Hide search icon when mobile menu is active */
    .nav-icon#search-icon {
        display: none;
    }
    
    .nav-icon {
        width: 40px;
        height: 40px;
    }
    
    .nav-icon i {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    /* Tablet View */
    .navbar-container {
        min-height: 100px;
    }
    
    .nav-logo {
        width: 100px;
        height: 100px;
        margin-left: 6%;
    }
    
    .logo {
        font-size: 18px;
        padding: 0 20px;
        margin-left: -6%;
    }
    
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-menu-btn {
          position: fixed;
        display: flex;
        right: 20px !important; /* Changed from left to right */
        width: 45px;
        height: 45px;
        margin-top: -0.2%;
        left: auto !important; /* Override any left positioning */
    }
    
    .mobile-menu-btn i {
        font-size: 20px;
    }
    
    .nav-icons {
        right: 75px; /* Adjusted to make space for mobile menu button */
    }
    
    /* Hide search icon when mobile menu is active */
    .nav-icon#search-icon {
        display: none;
    }
    
    .nav-icon {
        width: 40px;
        height: 40px;
    }
    
    .nav-icon i {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    /* Mobile View */
    .navbar-container {
        min-height: 80px;
    }
    
    .nav-logo {
        width: 70px;
        height: 70px;
        left: 60px;
        margin-left: 9%;
    }
    
    .logo {
        font-size: 16px;
        padding: 0 15px;
        margin-left: -6%;
    }
    
    .mobile-menu-btn {
          position: fixed;
        display: flex;
        right: 15px !important; /* Changed from left to right */
        width: 40px;
        height: 40px;
        top: 6% !important; /* Moved higher from 12% to 8% */
        left: auto !important; /* Override any left positioning */
    }
    
    .mobile-menu-btn i {
        font-size: 18px;
    }
    
    .nav-icons {
        right: 65px !important; /* Adjusted to make space for mobile menu button */
    }
    
    /* Hide search icon when mobile menu is active */
    .nav-icon#search-icon {
        display: none !important;
    }
    
    .nav-icon {
        width: 36px;
        height: 36px;
    }
    
    .nav-icon i {
        font-size: 16px;
    }
    
    .search-box {
        width: 200px;
        right: 10px;
    }
}    

@media (max-width: 500px) {
    /* Small Mobile View */
    .navbar-container {
        min-height: 70px;
    }
    
    .nav-logo {
        width: 60px;
        height: 60px;
        left: 55px;
    }
    
    .logo {
        font-size: 14px;
        padding: 0 10px;
        margin-left: -8%;
        letter-spacing: 1px;
    }
    
    .logo a {
        font-size: 15px;
    }
    
    .mobile-menu-btn {
          position: fixed;
        display: flex;
        right: 7px !important; /* Changed from left to right */
        width: 30px;
        height: 30px;
        top: 5% !important; /* Moved higher from 12% to 6% */
        left: auto !important; /* Override any left positioning */
    }
    
    .mobile-menu-btn i {
        font-size: 16px;
    }
    
    .nav-icons {
        right: 45px !important; /* Adjusted to make space for mobile menu button */
    }
    
    /* Hide search icon when mobile menu is active */
    .nav-icon#search-icon {
        display: none !important;
    }
    
    .nav-icon {
        width: 32px;
        height: 32px;
    }
    
    .nav-icon i {
        font-size: 14px;
    }
    
    .search-box {
        width: 180px;
        right: 8px;
        height: 45px;
    }
    
    .search-box input {
        font-size: 13px;
    }
    
    .search-box button {
        font-size: 14px;
    }
    
    /* Adjust mobile menu for very small screens */
    .mobile-menu {
        width: 280px;
        left: -280px;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-logo {
        width: 70px;
        height: 70px;
    }
    
    .close-menu {
        width: 32px;
        height: 32px;
    }
    
    .close-menu i {
        font-size: 16px;
    }
    
    .mobile-menu-nav li a {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .mobile-social-icons a {
        width: 32px;
        height: 32px;
    }
    
    .mobile-social-icons i {
        font-size: 14px;
    }
    
    .mobile-contact-info {
        font-size: 12px;
    }
    
    .mobile-contact-info i {
        font-size: 12px;
        margin-right: 8px;
    }
    
    .btn-tour {
        margin-left: -7%;
    }
    
    .visa-header h1 {
        font-size: 25px;
        margin-bottom: 0px;
    }
    
    .visas-section {
        margin-top: 65px;
    }
}

        /* Tour Details Section - CHANGED MARGIN-TOP */
        .tour-details {
           position: relative;
    margin-top: 0;
    padding: 60px 0;
    z-index: 10;
    animation: fadeIn 1s ease-out;
    background-image: url('images/flight.jpg');
    background-repeat: no-repeat;      /* stops repeating */
    background-size: cover;           /* makes it fill the section */
    background-position: center;  
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .tour-details-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .tour-details-box {
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            background: rgba(22, 22, 22, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                        0 0 0 1px rgba(255, 255, 255, 0.05),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            padding: 40px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            animation: slideUp 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .tour-details-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .tour-details-header h2 {
            font-size: 36px;
            color: var(--gold);
            margin-bottom: 15px;
            font-family: 'Times New Roman', Times, serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }

        .tour-details-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gold);
            transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .tour-details-header:hover h2::after {
            width: 80%;
        }

        .tour-details-header p {
            font-size: 18px;
            color: #ddd;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .tour-search-box {
            margin-top: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-end;
            animation: fadeIn 1s ease-out 0.3s both;
            margin-bottom : 115px;
        }

        .tour-search-field {
            flex: 1;
            min-width: 200px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s forwards;
        }

        .tour-search-field:nth-child(1) { animation-delay: 0.4s; }
        .tour-search-field:nth-child(2) { animation-delay: 0.5s; }
        .tour-search-field:nth-child(3) { animation-delay: 0.6s; }
        .tour-search-field:nth-child(4) { animation-delay: 0.7s; }

        .tour-search-field label {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            color: var(--gold);
            font-weight: 500;
            gap: 8px;
        }

        .tour-search-field label i {
            color: #DBB560;
            font-size: 16px;
            transition: var(--transition);
        }

        .tour-search-field:hover label i {
            transform: scale(1.2);
            color: var(--gold);
        }

        .tour-search-field input,
        .tour-search-field select {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #DBB560;
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition);
        }

        .tour-search-field input:focus,
        .tour-search-field select:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
        }

        .tour-search-button {
            padding: 12px 30px;
            background: var(--gold);
            color: var(--dark);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s forwards 0.8s;
        }

        .tour-search-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s;
        }

        .tour-search-button:hover::before {
            left: 100%;
        }

        .tour-search-button:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        /* Notification message styling */
.notification-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(212, 175, 55, 0.9);
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}
        /* Mobile View Fix for Guest Dropdown */
@media (max-width: 768px) {
    .tour-search-box {
        flex-direction: column;
        align-items: stretch;
        position: relative; /* Add this to create a stacking context */
    }
    
    .guest-selector {
        position: relative;
        z-index: 100; /* Increase z-index */
    }
    
    .guest-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin-top: 5px;
        z-index: 1000; /* Much higher z-index to appear above everything */
        max-height: 50vh; /* Limit height to prevent excessive scrolling */
        overflow-y: auto; /* Add scrolling if content is too long */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); /* Add stronger shadow for better visibility */
    }
    
    /* Add space below the guest field when dropdown is open */
    .tour-search-field:nth-child(4) {
        margin-bottom: 200px; /* Adjust this value based on your dropdown height */
    }
    
    .tour-search-button {
        margin-top: 20px;
        position: relative; /* Ensure it stays in normal flow */
        z-index: 1; /* Lower z-index than dropdown */
    }
}

/* Additional fix for very small mobile devices */
@media (max-width: 500px) {
    .tour-search-field:nth-child(4) {
        margin-bottom: 180px; /* Adjust for smaller screens */
    }
}
        /* Guest Selector */
        .guest-selector {
            position: relative;
        }
        
        .guest-display {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--light);
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .guest-display:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--gold);
        }
        
        .guest-display i {
            color: var(--gold);
            transition: var(--transition);
        }
        
        .guest-display:hover i {
            transform: rotate(180deg);
        }
        
        .guest-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            margin-top: 5px;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            background: rgba(22, 22, 22, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            padding: 15px;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .guest-dropdown.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        
        .guest-type {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInUp 0.4s forwards;
        }
        
        .guest-dropdown.active .guest-type:nth-child(1) { animation-delay: 0.1s; }
        .guest-dropdown.active .guest-type:nth-child(2) { animation-delay: 0.2s; }
        .guest-dropdown.active .guest-type:nth-child(3) { animation-delay: 0.3s; }
        
        .guest-type-info {
            display: flex;
            flex-direction: column;
        }
        
        .guest-type-label {
            font-weight: 500;
            margin-bottom: 2px;
            font-size: 14px;
        }
        
        .guest-type-desc {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .guest-counter {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .counter-btn {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 14px;
        }
        
        .counter-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--gold);
            color: var(--gold);
            transform: scale(1.1);
        }
        
        .counter-btn.add {
            background: var(--gold);
            color: var(--dark);
            border-color: var(--gold);
        }
        
        .counter-btn.add:hover {
            background: var(--gold-light);
            transform: scale(1.1);
        }
        
        .counter-value {
            min-width: 20px;
            text-align: center;
            font-weight: 500;
            font-size: 14px;
        }
        
        .guest-apply {
            margin-top: 12px;
            padding: 8px;
            background: var(--gold);
            color: var(--dark);
            border: none;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInUp 0.4s forwards 0.4s;
        }
        
        .guest-apply:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        /* Decorative elements for luxury feel */
        .luxury-decoration {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .decoration-item {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        }

        .decoration-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
            animation: float 8s infinite ease-in-out;
        }

        .decoration-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            animation: float 10s infinite ease-in-out reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* UAE National Day Tour Package Section - NEW */
        .national-day-package {
            position: relative;
            padding: 80px 0;
            z-index: 10;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
            background-image: url('images/bg 5.jpg');
        }

        .national-day-package.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .national-day-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .national-day-box {
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            background: rgba(22, 22, 22, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                        0 0 0 1px rgba(255, 255, 255, 0.05),
                        inset 0 1px 0 rgba(255, 255, 255, 0.1);
            padding: 50px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .national-day-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .national-day-header h2 {
            font-size: 42px;
            color: var(--gold);
            margin-bottom: 15px;
            font-family: 'Times New Roman', Times, serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }

        .national-day-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gold);
            transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .national-day-package.visible .national-day-header h2::after {
            width: 80%;
        }

        .price-section {
            text-align: center;
            margin: 20px 0 40px;
        }

        .price-tag {
            font-size: 32px;
            color: var(--gold-light);
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
            padding: 15px 30px;
            border: 2px solid var(--gold);
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .price-tag::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
            transition: left 0.7s;
        }

        .national-day-package.visible .price-tag::before {
            left: 100%;
        }

        .price-tag:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .view-all-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--gold);
            color: var(--dark);
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            margin-top: 20px;
        }

        .view-all-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s;
        }

        .view-all-btn:hover::before {
            left: 100%;
        }

        .view-all-btn:hover {
            background: var(--gold-light);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .services-section {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin: 40px 0;
        }

        .service-item {
            flex: 1;
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
        }

        .national-day-package.visible .service-item:nth-child(1) {
            animation: fadeInUp 0.6s forwards 0.2s;
        }

        .national-day-package.visible .service-item:nth-child(2) {
            animation: fadeInUp 0.6s forwards 0.4s;
        }

        .national-day-package.visible .service-item:nth-child(3) {
            animation: fadeInUp 0.6s forwards 0.6s;
        }

        .service-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .service-item:hover .service-icon {
            background: rgba(212, 175, 55, 0.2);
            transform: scale(1.1);
        }

        .service-icon i {
            font-size: 36px;
            color: var(--gold);
            transition: var(--transition);
        }

        .service-item:hover .service-icon i {
            transform: scale(1.1);
        }

        .service-title {
            font-size: 20px;
            color: var(--gold);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-description {
            font-size: 16px;
            color: #ddd;
            line-height: 1.6;
        }

        .featured-destinations {
            margin-top: 40px;
        }

        .featured-destinations h3 {
            font-size: 32px;
            color: var(--gold);
            margin-bottom: 30px;
            text-align: center;
            font-family: 'Times New Roman', Times, serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .featured-destinations h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gold);
            transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .national-day-package.visible .featured-destinations h3::after {
            width: 60%;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .destination-card {
            position: relative;
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            opacity: 0;
            transform: scale(0.9);
        }

        .national-day-package.visible .destination-card:nth-child(1) {
            animation: scaleIn 0.6s forwards 0.3s;
        }

        .national-day-package.visible .destination-card:nth-child(2) {
            animation: scaleIn 0.6s forwards 0.4s;
        }

        .national-day-package.visible .destination-card:nth-child(3) {
            animation: scaleIn 0.6s forwards 0.5s;
        }

        .national-day-package.visible .destination-card:nth-child(4) {
            animation: scaleIn 0.6s forwards 0.6s;
        }

        @keyframes scaleIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .destination-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .destination-card:hover img {
            transform: scale(1.1);
        }

        .destination-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            transition: var(--transition);
        }

        .destination-card:hover .destination-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        }

        .destination-name {
            font-size: 20px;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 5px;
        }

        .destination-price {
            font-size: 16px;
            color: #fff;
        }

        .keep-exploring {
            text-align: center;
            margin-top: 20px;
        }

        .keep-exploring-btn {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            color: var(--gold);
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 2px solid var(--gold);
            border-radius: 50px;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .keep-exploring-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--gold);
            transition: width 0.5s ease;
            z-index: -1;
        }

        .keep-exploring-btn:hover::before {
            width: 100%;
        }

        .keep-exploring-btn:hover {
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
/* Split Image Section Styles */
.split-image-section {
    position: relative;
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
    z-index: 10;
}

.split-container {
    display: flex;
    width: 100%;
    height: 600px;
}

.split-item {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.split-item:hover {
    flex: 1;
}

.split-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* No filters applied - image will appear at original brightness */
}

.split-item:hover .split-background {
    transform: none;
}

.split-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    /* Removed gradient background completely */
}

/* Blur box for the flight section */
/* .flight-section .text-blur-box {
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    background: rgba(22, 22, 22, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 40px;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flight-section:hover .text-blur-box {
    background: rgba(22, 22, 22, 0.65);
    transform: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
} */
 .flight-notification {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 15px 20px;
        border-radius: 5px;
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        animation: slideIn 0.5s ease-out;
    }
    
    .flight-notification.fade-out {
        animation: fadeOut 0.5s ease-out forwards;
    }
    
    @keyframes slideIn {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    @keyframes fadeOut {
        from {
            opacity: 1;
        }
        to {
            opacity: 0;
        }
    }

/* Gradient overlay for visa section */
/* Remove the gradient overlay from visa section to match flight section */
.visa-section .split-content {
    background: none;
}

/* Create a shared style for both blur boxes */
.text-blur-box {
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    background: rgba(22, 22, 22, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 40px;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Shared hover state for both blur boxes */
.split-item:hover .text-blur-box {
    background: rgba(22, 22, 22, 0.65);
    transform: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Update responsive styles to apply to both sections */
@media (max-width: 992px) {
    .text-blur-box {
        padding: 30px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .text-blur-box {
        padding: 25px;
        max-width: 95%;
    }
}

/* Updated font styles with modern cursive font */
.split-content h2 {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;

    font-weight: 700; /* Bolder weight for emphasis */
    text-transform: none; /* Remove uppercase for cursive font */
    letter-spacing: 1px; /* Normal letter spacing for cursive */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Keep text shadow for readability */
}

.split-content p {
    font-size: 20px; /* Slightly larger for better readability with cursive */
    color: #fff;
    margin-bottom: 30px;
    max-width: 80%;
    line-height: 1.6;
    font-family:'Dancing Script';
    font-weight: 500; /* Medium weight for cursive */
    letter-spacing: 0.5px; /* Slight letter spacing for better readability */
}

/* Updated split-button to match keep-exploring-btn style */
.split-button {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif; /* Elegant serif font for buttons */
}

.split-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.5s ease;
    z-index: -1;
}

.split-button:hover::before {
    width: 100%;
}

.split-button:hover {
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.installment-text {
    font-size: 16px; /* Slightly larger for better readability */
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    font-style: italic;
    font-family: 'Dancing Script', cursive; /* Modern cursive font */
    font-weight: 500;
}
/* Mobile View Fixes for Split Image Section Button */
@media (max-width: 768px) {
    .split-button {
        padding: 12px 25px;
        font-size: 16px;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 120px;
    }
}

@media (max-width: 500px) {
    .split-button {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .split-container {
        height: 500px;
    }
    
    .split-content h2 {
        font-size: 36px;
    }
    
    .split-content p {
        font-size: 18px;
    }
    
    .flight-section .text-blur-box {
        padding: 30px;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
        height: auto;
    }
    
    .split-item {
        height: 400px;
    }
    
    .split-item:hover {
        flex: 1;
    }
    
    .split-content h2 {
        font-size: 32px;
    }
    
    .split-content p {
        font-size: 16px;
    }
    
    .flight-section .text-blur-box {
        padding: 25px;
        max-width: 95%;
    }
}

/* White Info Section Styles */
.white-info-section {
    position: relative;
    padding: 100px 0;
    margin: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 10;
    overflow: hidden;
}

.white-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.white-info-content {
    text-align: center;
}

.white-info-content h2 {
    font-size: 42px;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.white-info-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.white-info-section:hover .white-info-content h2::after {
    width: 60%;
}

.white-info-content > p {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
    line-height: 1.6;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.info-item {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.info-icon i {
    font-size: 32px;
    color: var(--gold);
    transition: var(--transition);
}

.info-item:hover .info-icon i {
    transform: scale(1.1);
}

.info-number {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1;
}

.info-label {
    font-size: 18px;
    color: var(--dark);
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
    text-transform: capitalize;
}

.info-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    color: var(--dark);
    line-height: 1.8;
    font-family: 'Playfair Display', serif;
}
.info-description > p {
     font-family: 'Playfair Display', serif;
} 

/* Responsive Design */
@media (max-width: 992px) {
    .white-info-section {
        padding: 80px 0;
    }
    
    .white-info-content h2 {
        font-size: 36px;
    }
    
    .white-info-content > p {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .info-item {
        min-width: 180px;
        max-width: 240px;
        padding: 25px 15px;
    }
    
    .info-number {
        font-size: 42px;
    }
    
    .info-label {
        font-size: 16px;
    }
    
    .info-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .white-info-section {
        padding: 60px 0;
    }
    
    .white-info-content h2 {
        font-size: 32px;
    }
    
    .white-info-content > p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .info-grid {
        gap: 20px;
    }
    
    .info-item {
        min-width: 150px;
        max-width: 200px;
        padding: 20px 15px;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-icon i {
        font-size: 28px;
    }
    
    .info-number {
        font-size: 36px;
    }
    
    .info-label {
        font-size: 14px;
    }
    
    .info-description {
        font-size: 15px;
    }
}
/* Travel Blog Section Styles */
.travel-blog-section {
    position: relative;
    padding: 50px 0;
    background-image: url('images/travel-blog.png');
    z-index: 10;
    overflow: hidden;
}

.travel-blog-container {
    max-width: 1000px;
    max-height: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.travel-blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.travel-blog-header h2 {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.travel-blog-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.travel-blog-section:hover .travel-blog-header h2::after {
    width: 60%;
}

.travel-blog-header p {
    font-size: 20px;
    color: #ddd;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
}

.blog-slider-container {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

.blog-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%; /* Ensure full width */
}

.blog-post {
    background: rgba(22, 22, 22, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

.blog-description {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.5s ease;
    z-index: -1;
}

.read-more-btn:hover::before {
    width: 100%;
}

.read-more-btn:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.blog-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 5;
}

.blog-prev-btn,
.blog-next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

.blog-prev-btn:hover,
.blog-next-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
}

.blog-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.blog-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.blog-indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

.view-all-blogs {
    text-align: center;
    margin-top: 40px;
}

.view-all-blogs-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.view-all-blogs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.5s ease;
    z-index: -1;
}

.view-all-blogs-btn:hover::before {
    width: 100%;
}

.view-all-blogs-btn:hover {
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (min-width: 993px) {
    /* Desktop view - show 3 blogs per slide */
    .blog-post {
        flex: 0 0 calc(33.333% - 20px);
        margin-right: 20px;
    }
}

@media (max-width: 992px) {
    /* Tablet view - show 2 blogs per slide */
    .blog-post {
        flex: 0 0 calc(50% - 15px);
        margin-right: 15px;
    }
    
    .travel-blog-header h2 {
        font-size: 42px;
    }
    
    .travel-blog-header p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    /* Mobile view - show 1 blog per slide */
    .blog-post {
        flex: 0 0 100%;
        margin-right: 0;
    }
    
    .travel-blog-header h2 {
        font-size: 36px;
    }
    
    .travel-blog-header p {
        font-size: 16px;
    }
    
    .blog-slider-controls {
        padding: 0 10px;
    }
    
    .blog-prev-btn,
    .blog-next-btn {
        width: 40px;
        height: 40px;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-link i {
    font-size: 30px;
}

.whatsapp-message {
    background-color: rgba(37, 211, 102, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-message {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-link {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-link i {
        font-size: 24px;
    }
    
    .whatsapp-message {
        display: none; /* Hide message on mobile to save space */
    }
}
/* Tour Types Carousel Section Styles - Updated */

.tour-types-carousel-section {
    position: relative;
    padding: 80px 0;
    margin: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 10;
    overflow: hidden;
    background-image: url('images/dubai-map-dotted.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tour-types-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.tour-types-header {
    text-align: center;
    margin-bottom: 60px;
}

.tour-types-header h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

.tour-types-header h3 {
    font-size: 28px;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.tour-types-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.tour-types-slider-container {
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    padding: 20px 0; /* Added padding to make space for hover effect */
}

.tour-types-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.tour-type-card {
    flex: 0 0 calc(25% - 20px);
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 25px 15px; /* Reduced padding to make cards smaller */
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform-origin: center bottom; /* Changed transform origin for better zoom effect */
}

.tour-type-card:hover {
    transform: translateY(-5px) scale(1.05); /* Reduced transform values to prevent overflow */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 1);
}

.tour-type-icon {
    width: 60px; /* Reduced size */
    height: 60px; /* Reduced size */
    margin: 0 auto 15px; /* Reduced margin */
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.tour-type-card:hover .tour-type-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.tour-type-icon i {
    font-size: 28px; /* Reduced size */
    color: var(--gold);
    transition: var(--transition);
}

.tour-type-card:hover .tour-type-icon i {
    transform: scale(1.1);
}

.tour-type-card h4 {
    font-size: 18px; /* Reduced size */
    color: var(--dark-blue);
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
}

.tour-type-card:hover h4 {
    color: var(--gold);
}

.tour-types-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 5;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease; /* Smooth transition for visibility */
}

.tour-types-slider-container:hover .tour-types-controls {
    opacity: 1; /* Show on hover */
}

.tour-types-prev-btn,
.tour-types-next-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

.tour-types-prev-btn:hover,
.tour-types-next-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
}

.tour-types-indicators {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.tour-types-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.tour-types-indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .tour-types-carousel-section {
        padding: 60px 0;
    }
    
    .tour-types-header h2 {
        font-size: 32px;
    }
    
    .tour-types-header h3 {
        font-size: 24px;
    }
    
    .tour-type-card {
        flex: 0 0 calc(33.333% - 15px);
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .tour-types-carousel-section {
        padding: 40px 0;
    }
    
    .tour-types-header h2 {
        font-size: 28px;
    }
    
    .tour-types-header h3 {
        font-size: 22px;
    }
    
    .tour-type-card {
        flex: 0 0 calc(50% - 10px);
        margin-right: 10px;
        padding: 20px 15px;
    }
    
    .tour-type-icon {
        width: 50px;
        height: 50px;
    }
    
    .tour-type-icon i {
        font-size: 24px;
    }
    
    .tour-type-card h4 {
        font-size: 16px;
    }
    
    .tour-types-controls {
        padding: 0 10px;
    }
    
    .tour-types-prev-btn,
    .tour-types-next-btn {
        width: 40px;
        height: 40px;
    }
}
/* Feedback Section Styles */
/* Feedback Section Styles */
.feedback-section {
    position: relative;
    padding: 100px 0;
    margin: 0;
    width: 100%;
    background-color: #f8f8f8;
    z-index: 10;
    overflow: hidden;
    background-image: url('images/DUBAI.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-color: rgba(248, 248, 248, 0.9);
}
.feedback-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.feedback-card {
    background-color: #0C2340;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 50px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    transform: translateY(0);
    width: 100%;
}

@media (min-width: 1200px) {
    .feedback-card {
        width: 130%;
        margin-left: -15%;
    }
}

@media (min-width: 1400px) {
    .feedback-card {
        width: 150%;
        margin-left: -25%;
    }
}

@media (max-width: 1199px) {
    .feedback-card {
        max-width: 90%;
        margin: 0 auto;
    }
}
.feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.feedback-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.feedback-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.feedback-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: var(--transition);
}

.feedback-card:hover .feedback-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.feedback-icon i {
    font-size: 36px;
    color: #fff;
    transition: var(--transition);
}

.feedback-card:hover .feedback-icon i {
    transform: scale(1.1);
}

.feedback-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.3;
    position: relative;
}

.feedback-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
}

.feedback-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Dancing Script', cursive;
    font-weight: 500;
}

.feedback-submit-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
}

.feedback-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.5s ease;
    z-index: -1;
}

.feedback-submit-btn:hover::before {
    width: 100%;
}

.feedback-submit-btn:hover {
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Decorative elements */
.feedback-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.feedback-card::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .feedback-section {
        padding: 80px 0;
    }
    
    .feedback-card {
        padding: 60px 40px;
    }
    
    .feedback-content h2 {
        font-size: 36px;
    }
    
    .feedback-content p {
        font-size: 18px;
    }
    
    .feedback-submit-btn {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .feedback-section {
        padding: 60px 0;
    }
    
    .feedback-card {
        padding: 50px 30px;
    }
    
    .feedback-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .feedback-icon i {
        font-size: 32px;
    }
    
    .feedback-content h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .feedback-content h2::after {
        bottom: -12px;
        width: 60px;
    }
    
    .feedback-content p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .feedback-submit-btn {
        padding: 14px 35px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .feedback-section {
        padding: 50px 0;
    }
    
    .feedback-card {
        padding: 40px 25px;
    }
    
    .feedback-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feedback-icon i {
        font-size: 28px;
    }
    
    .feedback-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .feedback-content h2::after {
        bottom: -10px;
        width: 50px;
    }
    
    .feedback-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .feedback-submit-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
/* Feedback Form Modal Styles */
.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.feedback-modal.active {
    opacity: 1;
    visibility: visible;
}

.contacts-form-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(12, 35, 64, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 40px;
    transform: scale(0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 0; /* Reset margin */
    /* Remove top, left, and transform properties since we're using flexbox centering */
}

.feedback-modal.active .contacts-form-container {
    transform: scale(1); /* Only scale, no translate needed */
}

/* Rating Styles */
.rating-container {
    margin-top: 8px;
}

.rating-options {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-option {
    position: relative;
    cursor: pointer;
    margin-right: 5px;
}

.rating-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.rating-star {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s;
}

.rating-option input[type="radio"]:checked ~ .rating-star,
.rating-option:hover .rating-star {
    color: var(--gold);
}

/* Recommendation Scale Styles */
.recommendation-container {
    margin-top: 8px;
}

.recommendation-scale {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.scale-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

#feedback-recommend {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    margin: 0 10px;
}

#feedback-recommend::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
}

#feedback-recommend::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: none;
}

.scale-value {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-top: 5px;
}
        /* Contact Form Modal */
        .contact-modal {
     position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
        }

        .contact-modal.active {
             opacity: 1;
    visibility: visible;
        }

        .contact-form-container {
             position: relative;
    width: 90%;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(12, 35, 64, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 40px;
    transform: scale(0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin: 0; /* Reset margin */
    top: 50%; /* Position from top */
    left: 50%; /* Position from left */
    transform: translate(-50%, -50%) scale(0.8); /* Center and scale */
        }

        .contact-modal.active .contact-form-container {
            transform: translate(-50%, -50%) scale(1); 
        }

        .close-contact {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
        }

        .close-contact:hover {
            background: rgba(212, 175, 55, 0.2);
            transform: rotate(90deg);
        }

        .close-contact i {
            color: var(--gold);
            font-size: 18px;
        }

        .contact-form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .contact-form-header h2 {
            font-size: 32px;
            color: var(--gold);
            margin-bottom: 10px;
            font-family: 'Times New Roman', Times, serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-form-header p {
            color: #ddd;
            font-size: 16px;
        }

        .contact-form {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .contact-form-left {
            flex: 1;
            min-width: 300px;
        }

        .contact-form-right {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
        }
        .success-message, .error-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    animation: fadeIn 0.5s ease-in-out;
}

.success-message {
    background-color: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.error-message {
    background-color: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
}

.success-message a {
    color: #4CAF50;
    text-decoration: underline;
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--gold);
            font-weight: 500;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #fff;
            font-size: 14px;
            transition: var(--transition);
        }
         /* .form-group select {
             color: #000000;
             
         } */
         /* .form-group select:focus {
             color: #DBB560;
          
         } */
          .form-group select option {
    background: var(--dark);
    color: #fff;
    padding: 8px;
}

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group .flag-icon {
            position: absolute;
            left: 15px;
            top: 38px;
            width: 20px;
            height: 15px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .form-group .phone-input {
            padding-left: 45px;
        }

        .contact-form-button {
            padding: 15px 30px;
            background: var(--gold);
            color: var(--dark);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            margin-top: auto;
        }

        .contact-form-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s;
        }

        .contact-form-button:hover::before {
            left: 100%;
        }

        .contact-form-button:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-3px);
        }

          /* Add these media queries to your CSS file */



/* Tablet View (768px - 992px) */

@media (max-width: 992px) {

    .contact-form-container {
        max-height: 85vh; /* Reduce height for tablet view */
        overflow-y: auto; /* Enable scrolling if content is too long */
        padding: 30px 25px; /* Reduce padding */
    }
    .contact-form-left, .contact-form-right {
        flex: 100%; /* Stack form columns */
    }
    .contact-form-header h2 {
        font-size: 28px; /* Slightly reduce heading size */
    }
}
/* Mobile View (up to 768px) */
@media (max-width: 768px) {
    .contact-form-container {
        width: 95%; /* Use more screen width */
        max-height: 80vh; /* Further reduce height for mobile */
        padding: 20px 15px; /* Further reduce padding */
        border-radius: 15px; /* Slightly reduce border radius */
    }    
    .contact-form-header h2 {
        font-size: 20px; /* Reduce heading size */
        margin-bottom: 15px; /* Reduce spacing */
    }    
    .contact-form-header p {
        font-size: 14px; /* Reduce text size */
        margin-bottom: 20px; /* Reduce spacing */
    }
    .form-group {
        margin-bottom: 15px; /* Reduce form spacing */
    }

    .form-group label {
        font-size: 13px; /* Reduce label size */
        margin-bottom: 5px; /* Reduce spacing */
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px; /* Reduce input padding */
        font-size: 14px; /* Reduce font size */
    }
    .contact-form-button {
        padding: 12px 20px; /* Reduce button padding */
        font-size: 14px; /* Reduce button font size */
        margin-top: 15px; /* Reduce top margin */
    }    
    .social-links {
        margin-top: 15px; /* Reduce spacing */
    }
    .close-contact {
        top: 15px; /* Adjust close button position */
        right: 15px;
        width: 35px;
        height: 35px;
    }
    .close-contact i {
        font-size: 16px; /* Reduce icon size */
    }
}
/* Add these media queries to your CSS file */
/* Tablet View (768px - 992px) */
@media (max-width: 992px) {
    .contacts-form-container {
        max-height: 85vh; /* Reduce height for tablet view */
        overflow-y: auto; /* Enable scrolling if content is too long */
        padding: 30px 25px; /* Reduce padding */
    }
    .contact-form-left, .contact-form-right {
        flex: 100%; /* Stack form columns */
    }
    .contact-form-header h2 {
        font-size: 28px; /* Slightly reduce heading size */
    }
    .rating-options {
        justify-content: center; /* Center star ratings */
    }
    .recommendation-scale {
        flex-direction: column; /* Stack scale elements */
        align-items: stretch;
    }
    .scale-label {
        margin-bottom: 5px;
    }
}
/* Mobile View (up to 768px) */
@media (max-width: 768px) {
    .contacts-form-container {
        width: 95%; /* Use more screen width */
        max-height: 80vh; /* Further reduce height for mobile */
        padding: 20px 15px; /* Further reduce padding */
        border-radius: 15px; /* Slightly reduce border radius */
    }
    .contact-form-header h2 {
        font-size: 20px; /* Reduce heading size */
        margin-bottom: 15px; /* Reduce spacing */
    }
    .contact-form-header p {
        font-size: 14px; /* Reduce text size */
        margin-bottom: 20px; /* Reduce spacing */
    }
    .form-group {
        margin-bottom: 15px; /* Reduce form spacing */
    }
    .form-group label {
        font-size: 13px; /* Reduce label size */
        margin-bottom: 5px; /* Reduce spacing */
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px; /* Reduce input padding */
        font-size: 14px; /* Reduce font size */
    }

    .contact-form-button {
        padding: 12px 20px; /* Reduce button padding */
        font-size: 14px; /* Reduce button font size */
        margin-top: 15px; /* Reduce top margin */
    }
    .social-links {
        margin-top: 15px; /* Reduce spacing */
    }

    .close-contact {
        top: 15px; /* Adjust close button position */
        right: 15px;
        width: 35px;
        height: 35px;
    }
    .close-contact i {
        font-size: 16px; /* Reduce icon size */
    }

    .rating-star {
        font-size: 20px; /* Reduce star size */
    }
    .recommendation-scale {
        flex-direction: column; /* Stack scale elements */
        align-items: stretch;
    }
    .scale-label {
        margin-bottom: 5px;
        font-size: 11px; /* Reduce label size */
    }
    #feedback-recommend {
        margin: 5px 0;
    }

    .scale-value {
        font-size: 16px; /* Reduce value size */
    }

}
        /* Footer Section Styles */
.footer-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-map {
    flex: 1;
    min-width: 300px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.footer-address h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-address p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #ddd;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

/* Footer Social Icons Hover Animation */
.social-icons a {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.social-icons a:hover::before {
    width: 100%;
    height: 100%;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.social-icons a i {
    transition: transform 0.3s ease;
}

.social-icons a:hover i {
    transform: scale(1.1);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #ddd;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 15px; /* Add some space between copyright and IATA logo */
}

.iata-logo {
    height: 40px;
}

.iata-logo img {
    height: 100%;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.iata-logo img:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: row;
    }
    
    .footer-column {
        min-width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
.about-section {
            position: relative;
            padding: 120px 0 80px;
            margin-top: 130px; /* Account for fixed navbar */
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            z-index: 10;
            overflow: hidden;
        }
        
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .about-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .about-header h1 {
            font-size: 48px;
            color: var(--gold);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .about-header h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            height: 550px;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
           
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-text h2 {
            font-size: 32px;
            color: var(--gold);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }
        
        .about-text p {
            font-size: 18px;
            line-height: 1.8;
            color: #ddd;
            margin-bottom: 20px;
            font-family:"Allura", cursive;
            font-weight: 500;
        }
        
        .values-section {
            margin-top: 80px;
        }
        
        .values-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .value-card {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            background: rgba(22, 22, 22, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
            border-color: var(--gold);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .value-card:hover .value-icon {
            background: rgba(212, 175, 55, 0.2);
            transform: scale(1.1);
        }
        
        .value-icon i {
            font-size: 36px;
            color: var(--gold);
            transition: var(--transition);
        }
        
        .value-card:hover .value-icon i {
            transform: scale(1.1);
        }
        
        .value-card h3 {
            font-size: 24px;
            color: var(--gold);
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }
        
        .value-card p {
            font-size: 16px;
            line-height: 1.6;
            color: #ddd;
        }
        
        .team-section {
            margin-top: 80px;
        }
        
        .team-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .team-header h2 {
            font-size: 36px;
            color: var(--gold);
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .team-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background: rgba(22, 22, 22, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
            border-color: var(--gold);
        }
        
        .member-image {
            height: 250px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.05);
        }
        
        .member-info {
            padding: 20px;
            text-align: center;
        }
        
        .member-info h3 {
            font-size: 20px;
            color: var(--gold);
            margin-bottom: 5px;
            font-family: 'Playfair Display', serif;
        }
        
        .member-info p {
            font-size: 16px;
            color: #ddd;
            margin-bottom: 15px;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .member-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            transition: var(--transition);
        }
        
        .member-social a:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-3px);
        }
         .visas-section {
            position: relative;
            padding: 120px 0 80px;
            margin-top: 130px; /* Account for fixed navbar */
            /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); */
            background-color: #ddd;
            z-index: 10;
            overflow: hidden;
        }
        
        .visa-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 20px;
        }
      .main-content {
    background-image: url('images/travel-blog.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    width: 100%;
    min-height: 500px; /* bigger height */

    border-radius: 25px;  /* smooth curve */

    padding: 40px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);

    animation: floatBG 6s ease-in-out infinite; /* animation */
    transition: all 0.3s ease-in-out;
}

/* Modern floating animation */
@keyframes floatBG {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0px);
    }
}

        
        .visa-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .visa-header h1 {
            font-size: 48px;
            color: var(--gold);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .visa-header h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold);
        }
        
        .visa-toggle {
            display: inline-block;
            padding: 15px 40px;
            background: var(--gold);
            color: var(--dark);
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 8px;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            margin: 0 auto;
            font-family: 'Playfair Display', serif;
            margin-top: 1%;
        }
        
        .visa-toggle::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s;
        }
        
        .visa-toggle:hover::before {
            left: 100%;
        }
        
        .visa-toggle:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
/* Visa Options Container */
.visa-options-container {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
}

.visa-option {
    position: relative;
    width: 18%;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.visa-option:hover {
    transform: translateY(-5px);
}
.visa-option > * {
    pointer-events: none; /* This allows clicks to pass through to parent */
}

.visa-option-image, .visa-overlay, .visa-option-title {
    pointer-events: none;
}

.visa-option-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.visa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.visa-option:hover .visa-overlay {
    opacity: 1;
}

.click-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}

.visa-option-title {
    text-align: center;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

/* Visa Tables Container */
.visa-tables-container {
    margin-top: 20px;
}

.visa-table-container {
    margin-top: 40px;
    display: none;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.visa-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(22, 22, 22, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.visa-table th, .visa-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visa-table th {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visa-table td {
    color: #ddd;
    font-size: 16px;
}

.visa-table tr:last-child td {
    border-bottom: none;
}

.visa-table tr:hover td {
    background: rgba(212, 175, 55, 0.1);
}

.visa-price {
    color: var(--gold);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}
/* Ensure all visa tables are hidden by default */
.visa-table-container {
    display: none;
}

/* Show first table by default */
#visa-table-container {
    display: block;
}



         .visa-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
             /* background-image: url('images/44.jpg'); */

        }
        
        .visa-image {
            flex: 1;
            min-width: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            height: 550px;
        }
        
        .visa-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
           
        }
        
        .visa-image:hover img {
            transform: scale(1.05);
        }
        
        .visa-text {
            flex: 1;
            min-width: 300px;
        }
        
        .visa-text h2 {
            font-size: 32px;
            color: var(--gold);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }
        
        .visa-text p {
            font-size: 22px;
            line-height: 1.8;
            color: #ddd;
            margin-bottom: 20px;
            font-family:'Times New Roman', Times, serif;
            font-weight: 500;
        }
                /* Header Section */
        .page-header {
            background:  url('images/blog4.jpg');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .page-header h1 {
            font-size: 48px;
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #0a0a0a;
        }

        .page-header p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Form Section=visa -ext html */
       /* Form Section */
.forms-section {
    padding: 80px 0;
    position: relative;  
    overflow: hidden;    
}

.forms-section::before {
    content: '';          /* REQUIRED */
    position: absolute;   /* REQUIRED */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/apply-visa-right.jpg');
    background-size: 2000px;
    background-position: center;
    opacity: 0.3;
   
}

      .forms-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
    top: 50%;
    transform: translateY(8%);
}

        .forms-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .forms-title h2 {
            font-size: 36px;
            font-family: 'Playfair Display', serif;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .forms-title p {
            font-size: 16px;
            color: var(--gray);
        }

        .forms-group {
            margin-bottom: 25px;
        }

        .forms-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--gold);
        }

        .forms-group input,
        .forms-group select,
        .forms-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: var(--transition);
            color: #000000;
        }

        .forms-group input:focus,
        .forms-group select:focus,
        .forms-group textarea:focus {
            border-color: var(--gold);
            outline: none;
            box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
        }

        .forms-row {
            display: flex;
            gap: 20px;
        }

        .forms-row .forms-group {
            flex: 1;
        }

        .btn-submit {
            display: inline-block;
            padding: 15px 40px;
            background: var(--gold);
            color: var(--dark);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Playfair Display', serif;
            width: 100%;
        }

        .btn-submit:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        /* Info Section */
        .info-section {
            padding: 80px 0;
            background-color: white;
        }

        .info-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .info-box {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background: #f9f9f9;
            border-radius: 15px;
            text-align: center;
            transition: var(--transition);
        }

        .info-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .info-icon {
            font-size: 40px;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .info-box h3 {
            font-size: 22px;
            font-family: 'Playfair Display', serif;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .info-box p {
          
            line-height: 1.8;
            color: #0a0a0a;
        }
      /* Visa Details Section */
/* Visa Details Section - Enhanced Luxury Design */
.visa-details-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.visa-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/visa-detail.jpg');
    background-size: 2000px;
    opacity: 0.3;
    z-index: 0;
}

.visa-details-container {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.visa-details-box {
    flex: 1;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.4s ease;
    position: relative;
    background-color: aliceblue;
}

.visa-details-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.visa-details-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.visa-details-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
}

.visa-details-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: url('images/gold-pattern.png');
    background-size: 20px;
    opacity: 0.3;
}

.visa-details-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--dark);
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.visa-details-list {
    list-style: none;
    padding: 35px 30px;
    margin: 0;
}

.visa-details-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--dark);
    line-height: 1.6;
    font-weight: 500;
}

.visa-details-list li:last-child {
    margin-bottom: 0;
}

.visa-details-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold);
    font-size: 20px;
}

.visa-content-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.visa-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
}

.visa-content-section p {
    margin-bottom: 25px;
    line-height: 1.9;
    color: #333;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.visa-content-section ul {
    margin: 30px 0;
    padding-left: 30px;
    position: relative;
    z-index: 1;
}

.visa-content-section li {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
    font-size: 18px;
    position: relative;
}

.visa-content-section li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* Add luxury accent elements */
.visa-details-section .section-accent {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.visa-details-section .section-accent h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.visa-details-section .section-accent h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.visa-details-section .section-accent p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
    .visa-details-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .visa-details-box {
        margin-bottom: 20px;
    }
    
    .visa-content-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .visa-details-section {
        padding: 70px 0;
    }
    
    .visa-details-section .section-accent h2 {
        font-size: 36px;
    }
    
    .visa-details-list {
        padding: 25px 20px;
    }
    
    .visa-details-list li {
        font-size: 16px;
        padding-left: 35px;
    }
    
    .visa-content-section {
        padding: 30px 20px;
    }
    
    .visa-content-section p,
    .visa-content-section li {
        font-size: 16px;
    }
}
/* Transfers Inquire Modal Styles */
.transfers-inquire-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.transfers-inquire-form-container {
    position: relative;
    background-color: white;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.transfers-inquire-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
}

.transfers-inquire-close:hover {
    color: var(--dark);
}

.transfers-inquire-form-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 30px;
    text-align: center;
    color: var(--dark);
}

.transfers-inquire-form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.transfers-inquire-form-header p {
    font-size: 16px;
    opacity: 0.9;
}

.transfers-inquire-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transfers-inquire-form-row {
    display: flex;
    gap: 20px;
}

.transfers-inquire-form-group {
    flex: 1;
    margin-bottom: 0;
}

.transfers-inquire-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.transfers-inquire-form input,
.transfers-inquire-form select,
.transfers-inquire-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    color: #0C2340;
}

.transfers-inquire-form input:focus,
.transfers-inquire-form select:focus,
.transfers-inquire-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.transfers-inquire-form-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
    margin-top: 10px;
}

.transfers-inquire-form-button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.transfers-inquire-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 30px;
}

.transfers-inquire-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark);
    border-radius: 50%;
    transition: var(--transition);
}

.transfers-inquire-social-links a:hover {
    background: var(--gold);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .transfers-inquire-form-container {
        margin: 20px;
    }
    
    .transfers-inquire-form {
        padding: 30px 20px;
    }
    
    .transfers-inquire-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .transfers-inquire-form-group {
        margin-bottom: 20px;
    }
}
/* Tours Section */
.tours-section {
    padding: 0 0 100px;
    background-color: #f9f9f9;
    position: relative;
}
/* Form Section */
.tours-section {
    padding: 80px 0;
    position: relative;   /* IMPORTANT */
    overflow: hidden;     /* IMPORTANT */
    margin-top: 6%;
    
}

.tours-section::before {
    content: '';          /* REQUIRED */
    position: absolute;   /* REQUIRED */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/tours-bg.jpg');
    background-size: 2000px;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}


.tours-header {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('images/travel-blog.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.tours-header h2 {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.tours-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.tours-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 30px auto 0;
}

.tour-place {
    display: flex;
    margin-bottom: 80px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.tour-place:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.tour-place.reverse {
    flex-direction: row-reverse;
}

.tour-image {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tour-place:hover .tour-image img {
    transform: scale(1.05);
}

.tour-description {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-description h3 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.tour-description h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--gold);
}

.tour-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.tour-description p:last-of-type {
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--dark);
}

.tour-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn-tour {
    padding: 14px 30px;
    background: var(--gold);
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden;
}

.btn-tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.btn-tour:hover::before {
    left: 100%;
}

.btn-tour:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .tour-place,
    .tour-place.reverse {
        flex-direction: column;
    }
    
    .tour-image {
        height: 300px;
    }
    
    .tour-description {
        padding: 40px 30px;
    }
    
    .tour-description h3 {
        font-size: 28px;
    }
    
    .tour-description p {
        font-size: 16px;
    }
    
    .tour-buttons {
        flex-direction: column;
    }
    
    .btn-tour {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .tours-header {
        padding: 70px 0;
    }
    
    .tours-header h2 {
        font-size: 42px;
    }
    
    .tours-header p {
        font-size: 18px;
    }
    
    .tour-description {
        padding: 30px 20px;
    }
    
    .tour-description h3 {
        font-size: 24px;
    }
}
/* Modal Styles */
/* Tours Contact Modal Styles */
.tours-contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.tours-contact-form-container {
    position: relative;
    background-color: white;
    max-width: 800px;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.tours-contact-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
}

.tours-contact-close:hover {
    color: var(--dark);
}

.tours-contact-form-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 30px;
    text-align: center;
    color: var(--dark);
}

.tours-contact-form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.tours-contact-form-header p {
    font-size: 16px;
    opacity: 0.9;
}

.tours-contact-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tours-contact-form-row {
    display: flex;
    gap: 20px;
}

.tours-contact-form-group {
    flex: 1;
    margin-bottom: 0;
}

.tours-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.tours-contact-form input,
.tours-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    color: #0C2340;
}

.tours-contact-form input:focus,
.tours-contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.tours-contact-form input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.tours-contact-form-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
    margin-top: 10px;
}

.tours-contact-form-button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.tours-contact-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-bottom: 30px;
}

.tours-contact-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--dark);
    border-radius: 50%;
    transition: var(--transition);
}

.tours-contact-social-links a:hover {
    background: var(--gold);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .tours-contact-form-container {
        margin: 20px;
    }
    
    .tours-contact-form {
        padding: 30px 20px;
    }
    
    .tours-contact-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .tours-contact-form-group {
        margin-bottom: 20px;
    }
}
/* Fix for buttons on very small screens (below 500px) */
@media (max-width: 500px) {
    .tour-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-tour {
        padding: 12px 25px;
        font-size: 14px;
        width: auto;
        min-width: 200px;
        text-align: center;
    }
}
/* Luxury Travel Page - Unique Class Names */

/* Page Header */
.luxury-page-header {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('images/car-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
    margin-bottom: 10px;
    margin-top: 6%;
}

.luxury-page-header h1 {
    font-size: 56px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.luxury-page-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.luxury-page-header p {
    font-size: 20px;
    max-width: 700px;
    margin: 30px auto 0;
}

/* Luxury Navigation Section */
.luxury-nav-section {
    background-color: #f9f9f9;
    padding: 30px 0;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.luxury-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.luxury-nav-tab {
    padding: 15px 30px;
    background: white;
    color: var(--dark);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden;
}

.luxury-nav-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.7s;
}

.luxury-nav-tab:hover::before {
    left: 100%;
}

.luxury-nav-tab.active {
    background: var(--gold);
    color: var(--dark);
}

.luxury-nav-tab:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Luxury Section */
.luxury-section {
    display: none;
    padding: 0 0 80px;
}


.luxury-section.active {
    display: block;
}

.luxury-category-header {
    text-align: center;
    margin-bottom: 50px;
}

.luxury-category-header h2 {
    font-size: 42px;
    font-family: 'Playfair Display', serif;
    color:azure;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.luxury-category-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.luxury-category-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 20px auto 0;
}

/* Luxury Grid */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.luxury-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.luxury-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.luxury-image {
    height: 180px;
    overflow: hidden;
}

.luxury-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.luxury-item:hover .luxury-image img {
    transform: scale(1.05);
}

.luxury-info {
    padding: 20px;
    text-align: center;
}

.luxury-info h3 {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin: 0;
}

/* Luxury Grid More (for Show More content) */
.luxury-grid-more {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Luxury Category */
.luxury-category {
    margin-bottom: 80px;
}

/* Show More Button */
.luxury-show-more-container {
    text-align: center;
    margin: 20px 0 50px;
}

.luxury-show-more-btn {
    padding: 12px 30px;
    background: var(--gold);
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden;
}

.luxury-show-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.luxury-show-more-btn:hover::before {
    left: 100%;
}

.luxury-show-more-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Luxury List (for Flights & Jets section) */
.luxury-list {
    max-width: 900px;
    margin: 0 auto;
    
}

.luxury-list-item {
    display: flex;
    margin-bottom: 40px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.luxury-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.luxury-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    background: var(--gold);
    color: var(--dark);
    font-size: 36px;
}

.luxury-list-content {
    flex: 1;
    padding: 30px;
}

.luxury-list-content h3 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    margin: 0 0 15px;
}

.luxury-list-content p {
    font-size: 16px;
    line-height: 1.6;
    color:#0a0a0a;
    margin: 0;
}
/* Luxury Inquire Container */
.luxury-inquire-container {
    text-align: center;
    margin: 40px 0;
}

.luxury-inquire-container p {
    font-size: 18px;
    color:#f8f8f8;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.luxury-inquire-btn {
    padding: 14px 30px;
    background: var(--gold);
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden;
}

.luxury-inquire-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.luxury-inquire-btn:hover::before {
    left: 100%;
}

.luxury-inquire-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .luxury-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .luxury-grid-more {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
    
    .luxury-nav-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .luxury-nav-tab {
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .luxury-page-header {
        padding: 70px 0;
    }
    
    .luxury-page-header h1 {
        font-size: 42px;
    }
    
    .luxury-page-header p {
        font-size: 18px;
    }
    
    .luxury-category-header h2 {
        font-size: 32px;
    }
    
    .luxury-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .luxury-grid-more {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .luxury-list-item {
        flex-direction: column;
    }
    
    .luxury-list-icon {
        width: 100%;
        height: 80px;
    }
    
    .luxury-list-content {
        padding: 20px;
    }
    
    .luxury-list-content h3 {
        font-size: 20px;
    }
}


/* package page section */

/* Package Modal Styles - Unique Names & Centered */
.pkg-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pkg-modal.active {
    opacity: 1;
    visibility: visible;
}

.pkg-form-container {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(12, 35, 64, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    padding: 40px;
    transform: scale(0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Centering adjustments */
    margin: 0;
    top: auto;
    left: auto;
    transform: scale(0.8);
}

.pkg-modal.active .pkg-form-container {
    transform: scale(1);
}

.pkg-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.pkg-close:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
}

.pkg-close i {
    color: var(--gold);
    font-size: 18px;
}

.pkg-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.pkg-form-header h2 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pkg-form-header p {
    color: #ddd;
    font-size: 16px;
}

.pkg-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pkg-form-group {
    margin-bottom: 20px;
    position: relative;
}

.pkg-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-weight: 500;
    font-size: 14px;
}

.pkg-form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.pkg-form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.pkg-form-group input[readonly] {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    font-weight: 500;
}

.pkg-form-button {
    padding: 15px 30px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pkg-form-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s;
}

.pkg-form-button:hover::before {
    left: 100%;
}

.pkg-form-button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Responsive Design for Package Modal */
@media (max-width: 992px) {
    .pkg-form-container {
        max-height: 85vh;
        overflow-y: auto;
        padding: 30px 25px;
    }
    
    .pkg-form-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .pkg-form-container {
        width: 95%;
        max-height: 80vh;
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .pkg-form-header h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .pkg-form-header p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .pkg-form-group {
        margin-bottom: 15px;
    }
    
    .pkg-form-group label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .pkg-form-group input {
        padding: 10px;
        font-size: 14px;
    }
    
    .pkg-form-button {
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 15px;
    }
    
    .pkg-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
    
    .pkg-close i {
        font-size: 16px;
    }
}

/* Additional centering for very small screens */
@media (max-width: 480px) {
    .pkg-form-container {
        width: 90%;
        padding: 15px;
    }
}

 .packages-section {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
        }
        
        .packages-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }
        
        .section-header h1 {
            font-size: 56px;
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-header p {
            font-size: 20px;
            color: #ccc;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .package-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s ease;
            position: relative;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        
        .package-header {
            padding: 30px;
            text-align: center;
            position: relative;
            padding-top: 50px; /* Added more top padding to accommodate badge */
        }
        
        .package-badge {
            position: absolute;
            top: 15px; /* Adjusted position */
            right: 15px; /* Adjusted position */
            background: var(--gold);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
        }
        
        .package-title {
            font-size: 32px;
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }
        
        .package-subtitle {
            color: #ccc;
            font-size: 16px;
            margin-bottom: 20px;
        }
        
        .package-price {
            font-size: 28px;
            color: white;
            font-weight: 600;
        }
        
        .package-price span {
            font-size: 16px;
            color: #aaa;
        }
        
        .package-features {
            padding: 0 30px;
            flex-grow: 1; /* Allows this section to expand and push button down */
        }
        
        .feature-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #ddd;
            display: flex;
            align-items: center;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li i {
            color: var(--gold);
            margin-right: 15px;
            font-size: 18px;
        }
        
        .package-cta {
            text-align: center;
            padding: 0 30px 30px;
            margin-top: auto; /* Pushes button to bottom of card */
        }
        
        .package-button {
            display: inline-block;
            padding: 15px 40px;
            background: var(--gold);
            color: var(--dark);
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border: none;
            width: 100%;
        }
        
        .package-button:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }
        
        /* Basic Package Styling */
        .basic-package .package-header {
            background: linear-gradient(135deg, #1a3a52 0%, #2c5f7c 100%);
        }
        
        .basic-package .package-badge {
            background: #3498db;
        }
        
        /* Standard Package Styling */
        .standard-package .package-header {
            background: linear-gradient(135deg, #4a235a 0%, #7d3c98 100%);
        }
        
        .standard-package .package-badge {
            background: #9b59b6;
        }
        
        /* Premium Package Styling */
        .premium-package .package-header {
            background: linear-gradient(135deg, #784212 0%, #b8860b 100%);
        }
        
        .premium-package .package-badge {
            background: #d4af37;
        }
        
        .premium-package .feature-list li i {
            color: #d4af37;
        }
        
        .premium-package .package-button {
            background: #d4af37;
        }
        
        .premium-package .package-button:hover {
            background: #e6c75c;
        }
        
        /* Decorative elements */
        .decorative-element {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0) 70%);
            z-index: 1;
        }
        
        .decorative-element-1 {
            top: -150px;
            left: -150px;
        }
        
        .decorative-element-2 {
            bottom: -150px;
            right: -150px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .packages-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h1 {
                font-size: 42px;
            }
        }

        
        /* Mobile View Fixes for Index Page */
@media (max-width: 768px) {
    /* Fix for navbar container - remove right-side gaps */
    .navbar-container {
        min-height: 80px;
        width: 100vw; /* Use viewport width instead of percentage */
        left: 0;
        right: 0;
        box-sizing: border-box; /* Include padding and border in element's width */
        overflow: hidden; /* Prevent overflow */
    }

    /* Fix for navigation logo */
    .nav-logo {
        width: 70px;
        height: 70px;
        left: 15px;
        margin-left: 0; /* Remove margin that might be causing gap */
    }
    /* Fix for mobile menu button */
    .mobile-menu-btn {
          position: fixed;
        width: 40px;
        height: 40px;
        left: 15px;
        margin-top: 0; /* Remove margin that might be causing gap */
        top: 80px; /* Adjust position to align with navbar */
    }
    
    /* Fix for logo centering */
    .logo {
        margin-left: 0;
        font-size: 16px;
        padding: 0 15px;
    }
    
    /* Fix for tour details section */
    .tour-details {
        width: 100vw; /* Use viewport width */
        left: 0;
        right: 0;
        box-sizing: border-box;
        padding: 40px 15px; /* Adjust padding */
        margin-top: 0;
    }
    
    .tour-details-container {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .tour-details-box {
        padding: 20px;
    }
    
    /* Fix for national day package section */
    .national-day-package {
        width: 100vw;
        left: 0;
        right: 0;
        box-sizing: border-box;
        padding: 40px 15px;
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }
    
    .national-day-container {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .national-day-box {
        padding: 20px;
    }
    
    /* Fix for split image section */
    .split-image-section {
        width: 100vw;
        left: 0;
        right: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .split-container {
        flex-direction: column;
        height: auto;
    }
    
    .split-item {
        height: 300px;
    }
    
    /* Fix for white info section */
    .white-info-section {
        width: 100vw;
        left: 0;
        right: 0;
        box-sizing: border-box;
        padding: 40px 15px;
        overflow-x: hidden;
    }
    
    .white-info-container {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    /* Fix for travel blog section */
    .travel-blog-section {
        width: 100vw;
        left: 0;
        right: 0;
        box-sizing: border-box;
        padding: 40px 15px;
        overflow-x: hidden;
    }
    
    .travel-blog-container {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    /* Fix for tour types carousel section */
    .tour-types-carousel-section {
        width: 100vw;
        left: 0;
        right: 0;
        box-sizing: border-box;
        padding: 40px 15px;
        overflow-x: hidden;
    }
    
    .tour-types-container {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    /* Fix for feedback section */
    .feedback-section {
        width: 100vw;
        left: 0;
        right: 0;
        box-sizing: border-box;
        padding: 40px 15px;
        overflow-x: hidden;
    }
    
    .feedback-container {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .feedback-card {
        width: 100%;
        padding: 30px 20px;
    }
    
    /* Fix for footer section */
    .footer-section {
        width: 100vw;
        left: 0;
        right: 0;
        box-sizing: border-box;
        padding: 40px 15px;
        overflow-x: hidden;
    }
    
    .footer-container {
        width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    /* Hide dropdown menus in mobile view since they're not accessible */
    nav ul li ul {
        display: none;
    }
    
    /* Fix for nav icons positioning */
    .nav-icons {
        right: 15px;
    }
    
    /* Fix for search box */
    .search-box {
        width: 90%;
        right: 5%;
    }
}

/* Additional fixes for very small mobile devices */
@media (max-width: 500px) {
    .navbar-container {
        min-height: 70px;
    }
    
    .nav-logo {
        width: 60px;
        height: 60px;
        left: 10px;
    }
    .mobile-menu-btn {
        width: 35px;
        height: 35px;
        left: 10px;
        top: 70px;
    }
    .logo {
        font-size: 14px;
        padding: 0 10px;
    }
    .tour-details,
    .national-day-package,
    .white-info-section,
    .travel-blog-section,
    .tour-types-carousel-section,
    .feedback-section,
    .footer-section {
        padding-left: 10px;
        padding-right: 10px;
    }
    .tour-details-box,
    .national-day-box,
    .feedback-card {
        padding: 15px;
    }
    .nav-icons {
        right: 10px;
    }
    
    .nav-icon {
        width: 32px;
        height: 32px;
    }
    
    .nav-icon i {
        font-size: 14px;
    }
    
    .search-box {
        width: 85%;
        right: 7.5%;
    }
}
/* Mobile View Fixes for Services Section */
@media (max-width: 768px) {
    .services-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
        margin: 20px 0;
        overflow: hidden;
    }
    .service-item {
        flex: 1 1 100%;
        width: 100%;
        padding: 20px;
        text-align: center;
        box-sizing: border-box;
    }
    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }

    .service-icon i {
        font-size: 28px;
    }
    .service-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .service-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Additional fixes for very small mobile devices */
@media (max-width: 500px) {
    .services-section {
        padding: 0 10px;
        gap: 15px;
    }
    .service-item {
        padding: 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    .service-icon i {
        font-size: 24px;
    }
    
    .service-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .service-description {
        font-size: 13px;
    }
}
/* Text size adjustments for smaller resolutions */
@media (max-width: 992px) {
    /* Tablet View - Adjust text sizes */
    .logo {
        font-size: 24px;
    }
    
    .logo a {
        font-size: 24px;
    }
    
    nav ul li a {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .submenu-column h4 {
        font-size: 14px;
    }
    
    .submenu-column ul li a {
        font-size: 13px;
    }
    
    .tour-details-header h2 {
        font-size: 32px;
    }
    
    .tour-details-header p {
        font-size: 16px;
    }
    
    .tour-search-field input,
    .tour-search-field select {
        font-size: 14px;
    }
    
    .tour-search-button {
        font-size: 14px;
    }
    
    .national-day-header h2 {
        font-size: 36px;
    }
    
    .price-tag {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .featured-destinations h3 {
        font-size: 28px;
    }
    
    .destination-name {
        font-size: 18px;
    }
    
    .destination-price {
        font-size: 14px;
    }
    
    .split-content h2 {
        font-size: 36px;
    }
    
    .split-content p {
        font-size: 18px;
    }
    
    .split-button {
        font-size: 16px;
        padding: 12px 30px;
    }
    
    .installment-text {
        font-size: 14px;
    }
    
    .white-info-content h2 {
        font-size: 36px;
    }
    
    .white-info-content > p {
        font-size: 18px;
    }
    
    .info-number {
        font-size: 42px;
    }
    
    .info-label {
        font-size: 16px;
    }
    
    .info-description {
        font-size: 16px;
    }
    
    .travel-blog-header h2 {
        font-size: 42px;
    }
    
    .travel-blog-header p {
        font-size: 18px;
    }
    
    .blog-title {
        font-size: 20px;
    }
    
    .blog-description {
        font-size: 14px;
    }
    
    .read-more-btn {
        font-size: 13px;
    }
    
    .tour-types-header h2 {
        font-size: 32px;
    }
    
    .tour-types-header h3 {
        font-size: 24px;
    }
    
    .tour-type-card h4 {
        font-size: 16px;
    }
    
    .feedback-content h2 {
        font-size: 36px;
    }
    
    .feedback-content p {
        font-size: 18px;
    }
    
    .feedback-submit-btn {
        font-size: 16px;
    }
    
    .contact-form-header h2 {
        font-size: 28px;
    }
    
    .contact-form-header p {
        font-size: 14px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }
    
    .contact-form-button {
        font-size: 14px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .contact-info p {
        font-size: 13px;
    }
    
    .copyright p {
        font-size: 13px;
    }
    
    .about-header h1 {
        font-size: 42px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 16px;
    }
    
    .value-card h3 {
        font-size: 22px;
    }
    
    .value-card p {
        font-size: 14px;
    }
    
    .team-header h2 {
        font-size: 32px;
    }
    
    .member-info h3 {
        font-size: 18px;
    }
    
    .member-info p {
        font-size: 14px;
    }
    
    .visa-header h1 {
        font-size: 42px;
    }
    
    .visa-text h2 {
        font-size: 28px;
    }
    
    .visa-text p {
        font-size: 20px;
    }
    
    .visa-toggle {
        font-size: 16px;
    }
    
    .visa-option-title {
        font-size: 14px;
    }
    
    .visa-table th, .visa-table td {
        font-size: 14px;
        padding: 15px;
    }
    
    .forms-title h2 {
        font-size: 32px;
    }
    
    .forms-title p {
        font-size: 14px;
    }
    
    .forms-group label {
        font-size: 14px;
    }
    
    .forms-group input,
    .forms-group select,
    .forms-group textarea {
        font-size: 14px;
    }
    
    .btn-submit {
        font-size: 14px;
    }
    
    .info-box h3 {
        font-size: 20px;
    }
    
    .info-box p {
        font-size: 14px;
    }
    
    .visa-details-header h3 {
        font-size: 24px;
    }
    
    .visa-details-list li {
        font-size: 16px;
    }
    
    .visa-content-section p,
    .visa-content-section li {
        font-size: 16px;
    }
    
    .tours-header h2 {
        font-size: 48px;
    }
    
    .tours-header p {
        font-size: 18px;
    }
    
    .tour-description h3 {
        font-size: 28px;
    }
    
    .tour-description p {
        font-size: 16px;
    }
    
    .btn-tour {
        font-size: 14px;
    }
    
    .luxury-page-header h1 {
        font-size: 48px;
    }
    
    .luxury-page-header p {
        font-size: 18px;
    }
    
    .luxury-nav-tab {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .luxury-category-header h2 {
        font-size: 36px;
    }
    
    .luxury-category-header p {
        font-size: 16px;
    }
    
    .luxury-info h3 {
        font-size: 16px;
    }
    
    .luxury-list-content h3 {
        font-size: 22px;
    }
    
    .luxury-list-content p {
        font-size: 15px;
    }
    
    .luxury-inquire-container p {
        font-size: 16px;
    }
    
    .luxury-inquire-btn {
        font-size: 14px;
    }
    
    .section-header h1 {
        font-size: 48px;
    }
    
    .section-header p {
        font-size: 18px;
    }
    
    .package-title {
        font-size: 28px;
    }
    
    .package-subtitle {
        font-size: 14px;
    }
    
    .package-price {
        font-size: 24px;
    }
    
    .package-price span {
        font-size: 14px;
    }
    
    .feature-list li {
        font-size: 14px;
    }
    
    .package-button {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    /* Mobile View - Further reduce text sizes */
    .logo {
        font-size: 20px;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    nav ul li a {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .submenu-column h4 {
        font-size: 13px;
    }
    
    .submenu-column ul li a {
        font-size: 12px;
    }
    
    .tour-details-header h2 {
        font-size: 28px;
    }
    
    .tour-details-header p {
        font-size: 14px;
    }
    
    .tour-search-field input,
    .tour-search-field select {
        font-size: 13px;
    }
    
    .tour-search-button {
        font-size: 13px;
    }
    
    .national-day-header h2 {
        font-size: 32px;
    }
    
    .price-tag {
        font-size: 24px;
    }
    
    .service-title {
        font-size: 16px;
    }
    
    .service-description {
        font-size: 13px;
    }
    
    .featured-destinations h3 {
        font-size: 24px;
    }
    
    .destination-name {
        font-size: 16px;
    }
    
    .destination-price {
        font-size: 13px;
    }
    
    .split-content h2 {
        font-size: 32px;
    }
    
    .split-content p {
        font-size: 16px;
    }
    
    .split-button {
        font-size: 14px;
        padding: 10px 25px;
    }
    
    .installment-text {
        font-size: 13px;
    }
    
    .white-info-content h2 {
        font-size: 32px;
    }
    
    .white-info-content > p {
        font-size: 16px;
    }
    
    .info-number {
        font-size: 36px;
    }
    
    .info-label {
        font-size: 14px;
    }
    
    .info-description {
        font-size: 14px;
    }
    
    .travel-blog-header h2 {
        font-size: 36px;
    }
    
    .travel-blog-header p {
        font-size: 16px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-description {
        font-size: 13px;
    }
    
    .read-more-btn {
        font-size: 12px;
    }
    
    .tour-types-header h2 {
        font-size: 28px;
    }
    
    .tour-types-header h3 {
        font-size: 22px;
    }
    
    .tour-type-card h4 {
        font-size: 14px;
    }
    
    .feedback-content h2 {
        font-size: 32px;
    }
    
    .feedback-content p {
        font-size: 16px;
    }
    
    .feedback-submit-btn {
        font-size: 14px;
    }
    
    .contact-form-header h2 {
        font-size: 24px;
    }
    
    .contact-form-header p {
        font-size: 13px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 13px;
    }
    
    .contact-form-button {
        font-size: 13px;
    }
    
    .footer-column h4 {
        font-size: 14px;
    }
    
    .footer-column ul li a {
        font-size: 12px;
    }
    
    .contact-info p {
        font-size: 12px;
    }
    
    .copyright p {
        font-size: 12px;
    }
    
    .about-header h1 {
        font-size: 36px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .value-card h3 {
        font-size: 20px;
    }
    
    .value-card p {
        font-size: 13px;
    }
    
    .team-header h2 {
        font-size: 28px;
    }
    
    .member-info h3 {
        font-size: 16px;
    }
    
    .member-info p {
        font-size: 13px;
    }
    
    .visa-header h1 {
        font-size: 36px;
    }
    
    .visa-text h2 {
        font-size: 24px;
    }
    
    .visa-text p {
        font-size: 18px;
    }
    
    .visa-toggle {
        font-size: 14px;
    }
    
    .visa-option-title {
        font-size: 13px;
    }
    
    .visa-table th, .visa-table td {
        font-size: 13px;
        padding: 12px;
    }
    
    .forms-title h2 {
        font-size: 28px;
    }
    
    .forms-title p {
        font-size: 13px;
    }
    
    .forms-group label {
        font-size: 13px;
    }
    
    .forms-group input,
    .forms-group select,
    .forms-group textarea {
        font-size: 13px;
    }
    
    .btn-submit {
        font-size: 13px;
    }
    
    .info-box h3 {
        font-size: 18px;
    }
    
    .info-box p {
        font-size: 13px;
    }
    
    .visa-details-header h3 {
        font-size: 22px;
    }
    
    .visa-details-list li {
        font-size: 14px;
    }
    
    .visa-content-section p,
    .visa-content-section li {
        font-size: 14px;
    }
    
    .tours-header h2 {
        font-size: 42px;
    }
    
    .tours-header p {
        font-size: 16px;
    }
    
    .tour-description h3 {
        font-size: 24px;
    }
    
    .tour-description p {
        font-size: 14px;
    }
    
    .btn-tour {
        font-size: 13px;
    }
    
    .luxury-page-header h1 {
        font-size: 42px;
    }
    
    .luxury-page-header p {
        font-size: 16px;
    }
    
    .luxury-nav-tab {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .luxury-category-header h2 {
        font-size: 32px;
    }
    
    .luxury-category-header p {
        font-size: 14px;
    }
    
    .luxury-info h3 {
        font-size: 14px;
    }
    
    .luxury-list-content h3 {
        font-size: 20px;
    }
    
    .luxury-list-content p {
        font-size: 14px;
    }
    
    .luxury-inquire-container p {
        font-size: 14px;
    }
    
    .luxury-inquire-btn {
        font-size: 13px;
    }
    
    .section-header h1 {
        font-size: 42px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .package-title {
        font-size: 24px;
    }
    
    .package-subtitle {
        font-size: 13px;
    }
    
    .package-price {
        font-size: 20px;
    }
    
    .package-price span {
        font-size: 13px;
    }
    
    .feature-list li {
        font-size: 13px;
    }
    
    .package-button {
        font-size: 13px;
    }
}

@media (max-width: 500px) {
    /* Small Mobile View - Further reduce text sizes */
    .logo {
        font-size: 18px;
    }
    
    .logo a {
        font-size: 18px;
    }
    
    .tour-details-header h2 {
        font-size: 24px;
    }
    
    .tour-details-header p {
        font-size: 13px;
    }
    
    .tour-search-field input,
    .tour-search-field select {
        font-size: 12px;
    }
    
    .tour-search-button {
        font-size: 12px;
    }
    
    .national-day-header h2 {
        font-size: 28px;
    }
    
    .price-tag {
        font-size: 20px;
    }
    
    .service-title {
        font-size: 14px;
    }
    
    .service-description {
        font-size: 12px;
    }
    
    .featured-destinations h3 {
        font-size: 20px;
    }
    
    .destination-name {
        font-size: 14px;
    }
    
    .destination-price {
        font-size: 12px;
    }
    
    .split-content h2 {
        font-size: 28px;
    }
    
    .split-content p {
        font-size: 14px;
    }
    
    .split-button {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .installment-text {
        font-size: 12px;
    }
    
    .white-info-content h2 {
        font-size: 28px;
    }
    
    .white-info-content > p {
        font-size: 14px;
    }
    
    .info-number {
        font-size: 32px;
    }
    
    .info-label {
        font-size: 12px;
    }
    
    .info-description {
        font-size: 12px;
    }
    
    .travel-blog-header h2 {
        font-size: 32px;
    }
    
    .travel-blog-header p {
        font-size: 14px;
    }
    
    .blog-title {
        font-size: 16px;
    }
    
    .blog-description {
        font-size: 12px;
    }
    
    .read-more-btn {
        font-size: 11px;
    }
    
    .tour-types-header h2 {
        font-size: 24px;
    }
    
    .tour-types-header h3 {
        font-size: 20px;
    }
    
    .tour-type-card h4 {
        font-size: 12px;
    }
    
    .feedback-content h2 {
        font-size: 28px;
    }
    
    .feedback-content p {
        font-size: 14px;
    }
    
    .feedback-submit-btn {
        font-size: 12px;
    }
    
    .contact-form-header h2 {
        font-size: 20px;
    }
    
    .contact-form-header p {
        font-size: 12px;
    }
    
    .form-group label {
        font-size: 11px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 12px;
    }
    
    .contact-form-button {
        font-size: 12px;
    }
    
    .footer-column h4 {
        font-size: 12px;
    }
    
    .footer-column ul li a {
        font-size: 11px;
    }
    
    .contact-info p {
        font-size: 11px;
    }
    
    .copyright p {
        font-size: 11px;
    }
    
    .about-header h1 {
        font-size: 32px;
    }
    
    .about-text h2 {
        font-size: 20px;
    }
    
    .about-text p {
        font-size: 13px;
    }
    
    .value-card h3 {
        font-size: 18px;
    }
    
    .value-card p {
        font-size: 12px;
    }
    
    .team-header h2 {
        font-size: 24px;
    }
    
    .member-info h3 {
        font-size: 14px;
    }
    
    .member-info p {
        font-size: 12px;
    }
    
    .visa-header h1 {
        font-size: 32px;
    }
    
    .visa-text h2 {
        font-size: 20px;
    }
    
    .visa-text p {
        font-size: 16px;
    }
    
    .visa-toggle {
        font-size: 12px;
    }
    
    .visa-option-title {
        font-size: 12px;
    }
    
    .visa-table th, .visa-table td {
        font-size: 12px;
        padding: 10px;
    }
    
    .forms-title h2 {
        font-size: 24px;
    }
    
    .forms-title p {
        font-size: 12px;
    }
    
    .forms-group label {
        font-size: 12px;
    }
    
    .forms-group input,
    .forms-group select,
    .forms-group textarea {
        font-size: 12px;
    }
    
    .btn-submit {
        font-size: 12px;
    }
    
    .info-box h3 {
        font-size: 16px;
    }
    
    .info-box p {
        font-size: 12px;
    }
    
    .visa-details-header h3 {
        font-size: 20px;
    }
    
    .visa-details-list li {
        font-size: 13px;
    }
    
    .visa-content-section p,
    .visa-content-section li {
        font-size: 13px;
    }
    
    .tours-header h2 {
        font-size: 36px;
    }
    
    .tours-header p {
        font-size: 14px;
    }
    
    .tour-description h3 {
        font-size: 20px;
    }
    
    .tour-description p {
        font-size: 13px;
    }
    
    .btn-tour {
        font-size: 12px;
    }
    
    .luxury-page-header h1 {
        font-size: 36px;
    }
    
    .luxury-page-header p {
        font-size: 14px;
    }
    
    .luxury-nav-tab {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .luxury-category-header h2 {
        font-size: 28px;
    }
    
    .luxury-category-header p {
        font-size: 12px;
    }
    
    .luxury-info h3 {
        font-size: 12px;
    }
    
    .luxury-list-content h3 {
        font-size: 18px;
    }
    
    .luxury-list-content p {
        font-size: 13px;
    }
    
    .luxury-inquire-container p {
        font-size: 12px;
    }
    
    .luxury-inquire-btn {
        font-size: 12px;
    }

    
    .section-header h1 {
        font-size: 36px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .package-title {
        font-size: 20px;
    }
    
    .package-subtitle {
        font-size: 12px;
    }
    
    .package-price {
        font-size: 18px;
    }
    
    .package-price span {
        font-size: 12px;
    }
    
    .feature-list li {
        font-size: 12px;
    }
    
    .package-button {
        font-size: 12px;
    }
}

.whatsapp-button {
    background-color: #25D366; /* WhatsApp green */
    margin-top: 10px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .form-actions {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .contact-form-button {
        width: 48%;
    }
}
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .form-actions {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .contact-form-button {
        width: 48%;
    }
        .transfers-inquire-form-button {
        width: 48%;
    }
       .btn-submit {
        width: 48%;
    }
        .tours-contact-form-button {
        width: 48%;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateX(150%);
    transition: transform 0.5s ease;
    overflow: hidden;
}

.notification.show {
    transform: translateX(0);
}

.notification.fade-out {
    transform: translateX(150%);
    opacity: 0;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 20px;
    color: white;
}

.notification.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.9) 0%, rgba(56, 142, 60, 0.9) 100%);
}

.notification.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.9) 0%, rgba(211, 47, 47, 0.9) 100%);
}

.notification i {
    font-size: 24px;
    margin-right: 15px;
}

.notification p {
    margin: 0;
    flex: 1;
    font-size: 16px;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}

/* Animation for notification */
@keyframes slideIn {
    from {
        transform: translateX(150%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification {
    animation: slideIn 0.5s ease forwards;
}