/* ===== BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0A0A0F;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0A0F;
}
::-webkit-scrollbar-thumb {
    background: #FF6B35;
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #E85D2A;
}

/* ===== NAV LINK - DARK ===== */
.nav-dark {
    position: relative;
    font-weight: 600;
    font-size: 14px;
    color: #94A3B8;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    padding: 4px 0;
}

.nav-dark::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, #FF6B35, #6C5CE7);
    transition: width 0.3s ease;
    border-radius: 999px;
}

.nav-dark:hover::after {
    width: 100%;
}

.nav-dark:hover {
    color: #FFFFFF;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(-5deg); }
}

@keyframes float-slower {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(15deg); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 6s ease-in-out infinite;
}

.animate-float-slower {
    animation: float-slower 8s ease-in-out infinite;
}

@keyframes barEntrance {
    from {
        transform: translateY(100%);
        opacity: 0;
        filter: blur(10px);
    }
    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

.animate-bar {
    animation: barEntrance 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes loading-bar {
    0% {
        width: 0%;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0%;
        left: 100%;
    }
}

@keyframes bounce-short {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.animate-loading-bar {
    animation: loading-bar 2s infinite ease-in-out;
}

.animate-bounce-short {
    animation: bounce-short 2s infinite ease-in-out;
}

/* ===== BUTTON SHINE ===== */
.btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.group:hover .btn-shine {
    transform: translateX(100%);
}

/* ===== INPUT DATE ===== */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    filter: invert(0.8);
}

/* ===== DROPDOWN SCROLL ===== */
#fromDropdown::-webkit-scrollbar,
#toDropdown::-webkit-scrollbar,
#travelerDropdown::-webkit-scrollbar {
    width: 6px;
}

#fromDropdown::-webkit-scrollbar-track,
#toDropdown::-webkit-scrollbar-track,
#travelerDropdown::-webkit-scrollbar-track {
    background: #0A0A0F;
    border-radius: 999px;
}

#fromDropdown::-webkit-scrollbar-thumb,
#toDropdown::-webkit-scrollbar-thumb,
#travelerDropdown::-webkit-scrollbar-thumb {
    background: #2A2A3A;
    border-radius: 999px;
}

#fromDropdown::-webkit-scrollbar-thumb:hover,
#toDropdown::-webkit-scrollbar-thumb:hover,
#travelerDropdown::-webkit-scrollbar-thumb:hover {
    background: #FF6B35;
}

/* ===== SWIPER ===== */
.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.luxury-swiper .swiper-pagination-bullet {
    background: #2A2A3A;
    opacity: 0.5;
}

.luxury-swiper .swiper-pagination-bullet-active {
    background: #FF6B35;
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

/* ===== MOBILE MENU ===== */
#mobileMenu {
    transition: all 0.3s ease;
}

/* ===== POPUP OVERLAY ===== */
#popupOverlay {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

/* ===== NAVBAR - ORIGINAL STYLE + NEW COLORS ===== */

/* Nav Link - Original Style */
.nav-link-original {
    position: relative;
    font-weight: 600;
    font-size: 14px;
    color: #94A3B8;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

/* Underline Effect - Same as Original */
.nav-link-original::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.nav-link-original:hover::after {
    width: 100%;
}

.nav-link-original:hover {
    color: #FFFFFF;
}

/* Mobile Link - Original Style */
.mobile-link-original {
    transition: all 0.3s ease;
}

/* Button Shine - Original Style */
.btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.group:hover .btn-shine {
    transform: translateX(100%);
}

/* ===== SCROLL EFFECT - ORIGINAL ===== */
#siteNav.scrolled {
    top: 0;
}

#siteNav.scrolled .max-w-\[1450px\] {
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    #siteNav .max-w-\[1450px\] {
        background: rgba(20, 20, 30, 0.98);
    }
}

/* ===== FOOTER - EXTRA STYLING ===== */

/* Social Icons Hover */
footer .rounded-full {
    transition: all 0.3s ease;
}

footer .rounded-full:hover {
    transform: translateY(-2px);
}

/* Quick Links Hover */
footer ul li a {
    position: relative;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    padding-left: 4px;
}

/* Contact Cards Hover */
footer .group {
    transition: all 0.3s ease;
}

footer .group:hover {
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    footer .grid {
        gap: 2rem;
    }
}

/* ===== MOBILE MENU ANIMATIONS ===== */

/* Menu Container Animation */
#mobileMenu {
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: top center;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

#mobileMenu.open {
    max-height: 800px;
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: auto;
}

/* Menu Items Stagger Animation */
.mobile-link-animated {
    transform: translateX(-15px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

#mobileMenu.open .mobile-link-animated:nth-child(1) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.05s;
}

#mobileMenu.open .mobile-link-animated:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.10s;
}

#mobileMenu.open .mobile-link-animated:nth-child(3) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.15s;
}

#mobileMenu.open .mobile-link-animated:nth-child(4) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.20s;
}

#mobileMenu.open .mobile-link-animated:nth-child(5) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.25s;
}

#mobileMenu.open .mobile-link-animated:nth-child(6) {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.30s;
}

/* Hamburger to X Animation */
#mobileMenuBtn.active #menuLine1 {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobileMenuBtn.active #menuLine2 {
    opacity: 0;
    transform: scaleX(0);
}

#mobileMenuBtn.active #menuLine3 {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Link Hover Effect */
.mobile-link-animated {
    position: relative;
    overflow: hidden;
}

.mobile-link-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #FF6B35;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-link-animated:hover::before {
    transform: scaleY(1);
}