/* Base & Resets */
html {
    font-size: 90%;
}

body {
    background-color: #f5f5f5;
    color: #333333;
    overflow-x: hidden;
}

body.scroll-lock {
    overflow: hidden !important;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

.nav-link {
    /* -webkit-text-stroke: 0.50px #0c0845; */
    transition: all 0.3s ease;
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.active-link,
.active-link .mobile-link-text,
.active-link .mobile-link-number {
    color: #F5811E !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0c0845;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F5811E;
}

/* Lenis Smooth Scroll */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Subtle Noise Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}


/* Hero Slider */
.hero-slider {
    z-index: 5;
}

.slider-container {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 2s ease-in-out, visibility 2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide.active .hero-bg-img {
    transform: scale(1.1);
}

.hero-slide.active .hero-title {
    animation: slideInTitle 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes slideInTitle {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-title {
    transform: translateY(100%);
    display: inline-block;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 12s ease-out;
    transform: scale(1);
}

/* Corner Borders for Hero */
.corner-border {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #F5811E;
    border-style: solid;
    border-width: 2px;
}

.corner-border.top-left {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

.corner-border.bottom-right {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
}

.hero-scroll-indicator .hero-dot {
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-indicator .hero-dot.active {
    background-color: #F5811E;
    box-shadow: 0 0 10px rgba(245, 129, 30, 0.5);
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0c0845;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Hover Zoom */
.img-zoom-container {
    overflow: hidden;
}

.img-zoom-container img {
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-zoom-container:hover img {
    transform: scale(1.08);
}

/* Text Outline */
.text-outline-orange {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #F5811E;
}

/* UI Overrides */
.glass-nav {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

@media (min-width: 1024px) {
    #navbar .max-w-\[1400px\] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Dropdown Menu Customization */
.dropdown-menu {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.group:hover .dropdown-menu {
    transform: translateY(0);
}

.btn-gradient {
    background: linear-gradient(135deg, #F5811E, #ff6b00);
    box-shadow: 0 4px 10px rgba(245, 129, 30, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-gradient:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(245, 129, 30, 0.4);
    background: linear-gradient(135deg, #ff6b00, #F5811E);
}

/* Logo Text Styles */
.logo-tagline {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    letter-spacing: 0.5px;
    margin-top: -1px;
    text-align: right;
    width: 100%;
}

.dropdown-blur-70 {
    backdrop-filter: blur(70px) !important;
    -webkit-backdrop-filter: blur(70px) !important;
}

#explore {
    background-image: url('../assets/images/popular_dest.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

#cruises {
    background-image: url('../assets/images/bg2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

#india {
    background-image: url('../assets/images/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Section Blend Overlays — Seamless transitions between background images */
#india::before,
#explore::before,
#cruises::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    z-index: 5;
    pointer-events: none;
}

#india::after,
#explore::after,
#cruises::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 5;
    pointer-events: none;
}

/* Original Package Card Overrides */
.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.package-card:hover::before {
    left: 100%;
}

/* Horizontal Scroll Specifics */
.horizontal-section-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Promo Banner Styles */
.promo-banner {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #c2410c 100%);
    position: relative;
    overflow: hidden;
    min-height: 100px;
    height: auto;
    display: flex;
    align-items: center;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(2px);
}

.promo-banner::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 100px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(1px);
}

.circle-1 {
    position: absolute;
    top: -30px;
    right: 50px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    filter: blur(3px);
}

.circle-2 {
    position: absolute;
    bottom: -40px;
    right: 100px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    filter: blur(4px);
}

.circle-3 {
    position: absolute;
    top: 30px;
    right: 200px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(1px);
}

.circle-4 {
    position: absolute;
    bottom: 20px;
    left: 50px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(2px);
}

.circle-5 {
    position: absolute;
    top: 10px;
    left: 200px;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    filter: blur(1px);
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to right, rgba(180, 60, 20, 0.4), rgba(160, 50, 15, 0.3));
    clip-path: polygon(0 100%, 100% 100%, 100% 60%, 85% 80%, 70% 50%, 55% 70%, 40% 40%, 25% 60%, 10% 30%, 0 50%);
}

/* Testimonials Section */
.testimonials-section {
    background: url('../assets/images/mountainsbg.png') no-repeat center center/cover;
    background-attachment: fixed;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.testimonial-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding: 0 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 1);
}

.client-avatar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #0c0845;
    line-height: 1.6;
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #F5811E;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(245, 129, 30, 0.5);
}

/* Auth Modal Base */
/* ==========================================
   PREMIUM AUTH MODAL
   ========================================== */
.auth-modal {
    display: none !important;
    position: fixed;
    z-index: 2147483647;
    inset: 0;
    background-color: rgba(12, 8, 69, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-modal.active {
    display: flex !important;
    animation: fadeInOverlay 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.auth-modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    padding: 24px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalContentAppear 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* Modal Decorative Background */
.auth-modal-content::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(245, 129, 30, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.auth-modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #0c0845;
    font-weight: 700;
    margin-bottom: 2px;
}

.auth-modal-header p {
    color: #64748b;
    font-size: 0.75rem;
}

.auth-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 3px;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.auth-slider {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 3px;
    width: calc(50% - 3px);
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.auth-tab {
    flex: 1;
    padding: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    border-radius: 6px;
    transition: color 0.3s ease;
    border: none;
    background: transparent;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 1;
}

.auth-tab.active {
    color: #0c0845;
}

.auth-form-container {
    position: relative;
    z-index: 1;
}

.auth-form-container.active {
    animation: authFormFadeIn 0.3s ease-out forwards;
}

@keyframes authFormFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-group {
    margin-bottom: 12px;
}

.input-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 3px;
    margin-left: 1px;
}

.auth-input {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8125rem;
    color: #0f172a;
    transition: all 0.2s ease;
    outline: none;
}

.auth-input:focus {
    background: #ffffff;
    border-color: #F5811E;
    box-shadow: 0 0 0 2px rgba(245, 129, 30, 0.1);
}

.otp-digit {
    width: 44px;
    height: 52px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c0845;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s ease;
    outline: none;
    padding: 0;
}

.otp-digit:focus {
    background: #ffffff;
    border-color: #F5811E;
    box-shadow: 0 0 0 2px rgba(245, 129, 30, 0.1);
}

.btn-auth-submit {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #F5811E 0%, #ff6b1a 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.8125rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 10px -2px rgba(245, 129, 30, 0.25);
}

.btn-auth-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 16px -4px rgba(245, 129, 30, 0.35);
}

.btn-auth-submit:active {
    transform: translateY(0);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 16px 0;
    color: #94a3b8;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    padding: 0 10px;
}

.btn-google-auth {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #334155;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.btn-google-auth:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    z-index: 10;
}

.close-modal:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalContentAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* India Tour Section Grid & Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* WhatsApp Radio Selection */
.radio-container input[type="radio"]:checked+div {
    border-color: #25D366;
}

/* Custom Scrollbars */
.chat-scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.chat-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.chat-scroll::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.chat-scroll::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

.package-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    aspect-ratio: 4/5;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.package-card:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 20;
}

.package-overlay h3 {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2px;
    color: white;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tour-type {
    font-size: 0.85rem;
    font-style: italic;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.price-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    border: 1px solid white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #F5811E;
    border-color: #F5811E;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
        padding: 10px 10px !important;
    }

    .package-card {
        height: 180px !important;
        aspect-ratio: auto !important;
    }

    .package-overlay {
        padding: 8px 5px !important;
    }

    .package-overlay h3 {
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 2px !important;
    }

    .package-overlay .tour-type {
        display: none !important;
    }

    .package-overlay .price-tag {
        font-size: 0.45rem !important;
        padding: 3px 6px !important;
        margin-bottom: 4px !important;
    }

    .package-overlay .btn-book {
        padding: 3px 8px !important;
        font-size: 0.55rem !important;
        gap: 3px !important;
    }

    .package-overlay .btn-book i {
        font-size: 0.5rem !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    body {
        cursor: auto;
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

/* ==========================================
   PREMIUM MOBILE MENU
   ========================================== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(12, 8, 69, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    cursor: pointer;
}

.mobile-menu-overlay.active {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    background: rgba(12, 8, 69, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    padding: 100px 30px 40px;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 15px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-content {
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    overflow: hidden;
}

.mobile-nav-link {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    transform: translateX(-60px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity 0.5s ease;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(1) .mobile-nav-link {
    transition-delay: 0.15s;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(2) .mobile-nav-link {
    transition-delay: 0.2s;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(3) .mobile-nav-link {
    transition-delay: 0.25s;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(4) .mobile-nav-link {
    transition-delay: 0.3s;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(5) .mobile-nav-link {
    transition-delay: 0.35s;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-overlay.active .mobile-nav-item:nth-child(6) .mobile-nav-link {
    transition-delay: 0.4s;
    transform: translateX(0);
    opacity: 1;
}

.mobile-link-number {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: rgba(245, 129, 30, 0.6);
    letter-spacing: 0.1em;
    min-width: 20px;
}

.mobile-link-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-nav-link:hover .mobile-link-text,
.mobile-nav-link:active .mobile-link-text {
    color: #F5811E;
    transform: translateX(6px);
}

.mobile-menu-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(245, 129, 30, 0.4), transparent);
    margin: 24px 0;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0.4s,
        opacity 0.4s ease 0.4s;
}

.mobile-menu-overlay.active .mobile-menu-divider {
    opacity: 1;
    transform: scaleX(1);
}

.mobile-secondary-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.45s, transform 0.4s ease 0.45s;
}

.mobile-menu-overlay.active .mobile-secondary-links {
    opacity: 1;
    transform: translateY(0);
}

.mobile-secondary-links a {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.mobile-secondary-links a:hover {
    color: #F5811E;
}

.mobile-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 30px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #F5811E, #ff6b00);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 129, 30, 0.3);
}

.mobile-menu-overlay.active .mobile-login-btn {
    opacity: 1;
    transform: translateY(0);
}

.mobile-login-btn:hover {
    box-shadow: 0 6px 30px rgba(245, 129, 30, 0.5);
}

/* Hamburger to X Animation */
.menu-open .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-open .hamburger-line:nth-child(3) {
    width: 100%;
    transform: translateY(-10px) rotate(-45deg);
}