 
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Comfortaa:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

@font-face {
    font-family: 'Mamzelle ExtExp';
    src: url(Mamzelle-ExtraExpanded.woff2) format('woff2'), url(Mamzelle-ExtraExpanded.woff) format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Mamzelle Exp';
    src: url('Mamzelle-ExpandedItalic.woff2') format('woff2'),
        url('Mamzelle-ExpandedItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mamzelle Exp';
    src: url('Mamzelle-Expanded.woff2') format('woff2'),
        url('Mamzelle-Expanded.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mamzelle ExtExp';
    src: url('Mamzelle-ExtraExpanded.woff2') format('woff2'),
        url('Mamzelle-ExtraExpanded.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mamzelle ExtExp';
    src: url('Mamzelle-ExtraExpandedItalic.woff2') format('woff2'),
        url('Mamzelle-ExtraExpandedItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mamzelle';
    src: url('Mamzelle-Italic.woff2') format('woff2'),
        url('Mamzelle-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mamzelle';
    src: url('Mamzelle-Regular.woff2') format('woff2'),
        url('Mamzelle-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mamzelle SemExp';
    src: url('Mamzelle-SemiExpanded.woff2') format('woff2'),
        url('Mamzelle-SemiExpanded.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mamzelle SemExp';
    src: url('Mamzelle-SemiExpandedItalic.woff2') format('woff2'),
        url('Mamzelle-SemiExpandedItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Mamzelle ExtExp';
    src: url('Mamzelle-ExtraExpanded.woff2') format('woff2'),
        url('Mamzelle-ExtraExpanded.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #FFD23F;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --success: #27AE60;
            --text: #2C3E50;
        }

        body {
            font-family: "Arimo", sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
             font-family: 'Mamzelle ExtExp';
            font-weight: 900;
        }

        /* Header & Navigation */
        header {
            top: 0;
            width: 100%;
            background: rgb(255 255 255 / 70%);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 5%;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            animation: slideDown 0.6s ease-out;
        }


.day-expand-inner ul li { font-size: 20px;  }

        @keyframes slideDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        nav {
            
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: 800;
            font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo span {
            font-size: 2.5rem;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .book-btn {
            background: linear-gradient(135deg, #667eea, #004e89);
            color: white !important;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .book-btn::after {
            display: none;
        }

        .book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
        }

        /* Mobile Menu */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 0.4rem;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--dark);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Container */
        .hero-slider {
            width: 100%;
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* Slides */
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 2s ease, visibility 2s ease;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        /* Background Image */
        .slide-bg {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .slide-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
            transition: transform 8s ease-out;
        }

        .slide.active .slide-bg img {
            transform: scale(1.1);
        }

        /* Gradient Overlay */
        .slide-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.7) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.6) 100%
            );
            z-index: 1;
        }

        /* Top Navigation */
        .top-nav {
            top: 0;
            left: 0;
            width: 100%;
            padding: 40px 80px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: linear-gradient(to bottom, rgb(0 0 0 / 77%), transparent);
            position: absolute;
        }

        .logo {
            font-size: 2em;
            font-weight: 900;
            letter-spacing: -1px;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .nav-links {
            display: flex;
            gap: 50px;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95em;
            letter-spacing: 0.5px;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #fff;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-icon {
            display: none;
            font-size: 1.8em;
            cursor: pointer;
            z-index: 1001;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 100px 40px 40px;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .mobile-menu-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1.5em;
            font-weight: 600;
            transition: all 0.3s ease;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-links a:hover {
            color: rgba(255, 255, 255, 0.6);
            transform: translateX(10px);
        }

        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 2.5em;
            color: #fff;
            cursor: pointer;
            background: none;
            border: none;
            line-height: 1;
            transition: transform 0.3s ease;
        }

        .close-menu:hover {
            transform: rotate(90deg);
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            transition: all 0.4s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Slide Content */
        .slide-content {
            position: absolute;
            top: 50%;
            left: 80px;
            transform: translateY(-50%);
            z-index: 10;
            max-width: 700px;
        }

        .slide-tag {
            display: inline-block;
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-size: 0.85em;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
            color: #fff;
        }

        .slide.active .slide-tag {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.3s;
        }

        .slide-title {
            
font-size: 116px;
            
font-weight: bolder;
            
line-height: 1.1;
            
margin-bottom: 30px;
            
transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            
color: #fff;
            
font-family: "Montserrat", sans-serif;
            
text-transform: uppercase;
        }

        .slide.active .slide-title {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .slide-subtitle {
            font-size: 1.4em;
            font-weight: 400;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 45px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .slide.active .slide-subtitle {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.7s;
        }

        .slide-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .slide.active .slide-buttons {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.9s;
        }

        .btn {
            padding: 18px 45px;
            font-size: 1em;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: #fff;
            color: #000;
            box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .play-video {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            margin-left: 20px;
            transition: all 0.3s ease;
        }

        .play-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3em;
            transition: all 0.3s ease;
        }

        .play-video:hover .play-icon {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        /* Slide Navigation */
        .slide-nav {
            position: absolute;
            bottom: 60px;
            left: 80px;
            display: flex;
            align-items: center;
            gap: 40px;
            z-index: 100;
        }

        .slide-counter {
            font-size: 1.2em;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .counter-current {
            font-size: 2.5em;
            font-weight: 700;
            color: #fff;
        }

        .counter-divider {
            color: rgba(255, 255, 255, 0.4);
            margin: 0 10px;
        }

        .counter-total {
            color: rgba(255, 255, 255, 0.6);
        }

        .nav-dots {
            display: flex;
            gap: 15px;
        }

        .dot {
            width: 50px;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            position: relative;
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .dot::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: #fff;
            transition: width 0.4s ease;
        }

        .dot.active {
            background: rgba(255, 255, 255, 0.5);
        }

        .dot.active::before {
            width: 100%;
            animation: progress 5s linear;
        }

        @keyframes progress {
            from { width: 0; }
            to { width: 100%; }
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.6);
        }

        /* Arrow Navigation */
        .arrow-nav {
            position: absolute;
            bottom: 60px;
            right: 80px;
            display: flex;
            gap: 15px;
            z-index: 100;
        }

        .arrow-btn {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: #fff;
            font-size: 1.8em;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .arrow-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Social Links */
        .social-links {
            position: absolute;
            right: 80px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 25px;
            z-index: 100;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            font-size: 1.2em;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateX(-5px);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            z-index: 100;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85em;
            letter-spacing: 2px;
            font-weight: 600;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        .scroll-line {
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
        }

        /* Decorative Elements */
        .deco-circle {
            position: absolute;
            width: 500px;
            height: 500px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: 50%;
            right: -200px;
            transform: translateY(-50%);
            z-index: 1;
        }

        .deco-circle-2 {
            position: absolute;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            bottom: -100px;
            left: 100px;
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .slide-title {
                font-size: 5em;
            }

            .slide-content {
                max-width: 600px;
                left: 60px;
            }

            .top-nav {
                padding: 30px 60px;
            }

            .arrow-nav {
                right: 60px;
            }

            .social-links {
                right: 60px;
            }
        }

        @media (max-width: 1024px) {
            .slide-title {
                font-size: 4.5em;
            }

            .slide-content {
                left: 40px;
                max-width: 550px;
            }

            .top-nav {
                padding: 25px 40px;
            }

            .slide-nav {
                left: 40px;
            }

            .arrow-nav {
                right: 40px;
            }

            .social-links {
                right: 40px;
            }
        }

        @media (max-width: 768px) {
            .top-nav {
                padding: 20px 25px;
            }

            .nav-links {
                display: none;
            }

            .menu-icon {
                display: block;
            }

            .logo {
                font-size: 1.4em;
            }

            .slide-content {
                left: 25px;
                right: 25px;
                max-width: none;
                width: calc(100% - 50px);
            }

            .slide-title {
                font-size: 3.5em;
                margin-bottom: 20px;
            }

            .slide-subtitle {
                font-size: 1.1em;
                margin-bottom: 30px;
            }

            .slide-tag {
                font-size: 0.75em;
                padding: 10px 20px;
                margin-bottom: 20px;
            }

            .slide-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .play-video {
                margin-left: 0;
                margin-top: 10px;
            }

            .slide-nav {
                left: 25px;
                bottom: 120px;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .slide-counter {
                font-size: 1em;
            }

            .counter-current {
                font-size: 2em;
            }

            .nav-dots {
                gap: 12px;
            }

            .dot {
                width: 40px;
            }

            .arrow-nav {
                right: 25px;
                bottom: 25px;
            }

            .arrow-btn {
                width: 55px;
                height: 55px;
                font-size: 1.5em;
            }

            .social-links {
                display: none;
            }

            .scroll-indicator {
                display: none;
            }

            .deco-circle,
            .deco-circle-2 {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .slide-title {
                font-size: 2.8em;
            }

            .slide-subtitle {
                font-size: 1em;




                line-height: 1.6;
            }

            .slide-content {
                top: 45%;
            }
			.rv.rr {
    transform: translateX(-24px);
}
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 1.2em;
            }

            .slide-title {
                font-size: 2.2em;
                margin-bottom: 15px;
            }

            .slide-subtitle {
                font-size: 0.95em;
                margin-bottom: 25px;
            }

            .btn {
                padding: 14px 30px;
                font-size: 0.85em;
            }

            .slide-tag {
                font-size: 0.7em;
                padding: 8px 18px;
                letter-spacing: 2px;
            }

            .play-video {
                font-size: 0.9em;
            }

            .play-icon {
                width: 50px;
                height: 50px;
                font-size: 1.1em;
            }

            .slide-nav {
                bottom: 100px;
            }

            .arrow-btn {
                width: 50px;
                height: 50px;
                font-size: 1.3em;
            }
        }

        @media (max-width: 380px) {
            .top-nav {
                padding: 18px 20px;
            }

            .slide-content {
                left: 20px;
                right: 20px;
                width: calc(100% - 40px);
            }

            .slide-title {
                font-size: 1.9em;
            }

            .slide-subtitle {
                font-size: 0.9em;
            }

            .btn {
                padding: 12px 25px;
                font-size: 0.8em;
            }

            .slide-nav {
                left: 20px;
            }

            .arrow-nav {
                right: 20px;
            }
        }
        .btn-primary, .btn-secondary {
            padding: 18px 42px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before,
        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before,
        .btn-secondary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
            color: white;
            border: none;
            box-shadow: 0 15px 35px rgba(255, 216, 155, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 45px rgba(255, 216, 155, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .btn-secondary:hover {
            background: white;
            color: #667eea;
            transform: translateY(-4px);
            box-shadow: 0 20px 45px rgba(255, 255, 255, 0.3);
        }

        /* Slider Navigation Dots */
        .slider-nav {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 16px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            padding: 16px 24px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
        }

        .slider-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 2px solid white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .slider-dot.active {
            background: white;
            transform: scale(1.4);
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
        }

        .slider-dot.active::before {
            opacity: 1;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.3);
                opacity: 0;
            }
        }

        .slider-dot:hover:not(.active) {
            background: rgba(255, 255, 255, 0.7);
            transform: scale(1.2);
        }

        /* Arrow Navigation */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .slider-arrow.prev {
            left: 50px;
        }

        .slider-arrow.next {
            right: 50px;
        }

        .slider-arrow svg {
            width: 28px;
            height: 28px;
            fill: white;
            transition: transform 0.3s ease;
        }

        .slider-arrow:hover svg {
            transform: scale(1.2);
        }

        /* Animated Background Particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            animation: float 25s infinite ease-in-out;
        }

        .particle-1 {
            width: 400px;
            height: 400px;
            top: -10%;
            left: -5%;
            animation-delay: 0s;
            animation-duration: 30s;
        }

        .particle-2 {
            width: 300px;
            height: 300px;
            top: 50%;
            right: -10%;
            animation-delay: 5s;
            animation-duration: 25s;
        }

        .particle-3 {
            width: 250px;
            height: 250px;
            bottom: -5%;
            left: 40%;
            animation-delay: 10s;
            animation-duration: 28s;
        }

        .particle-4 {
            width: 180px;
            height: 180px;
            top: 20%;
            right: 30%;
            animation-delay: 3s;
            animation-duration: 22s;
        }

        .particle-5 {
            width: 150px;
            height: 150px;
            bottom: 30%;
            left: 15%;
            animation-delay: 7s;
            animation-duration: 26s;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(50px, -50px) rotate(90deg);
            }
            50% {
                transform: translate(-30px, -100px) rotate(180deg);
            }
            75% {
                transform: translate(30px, -50px) rotate(270deg);
            }
        }

        /* Progress Bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, #ffd89b 0%, #19547b 100%);
            z-index: 4;
            animation: progress 5s linear;
        }

        @keyframes progress {
            from {
                width: 0%;
            }
            to {
                width: 100%;
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content {
                padding: 0 30px;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .slider-arrow {
                width: 60px;
                height: 60px;
            }

            .slider-arrow.prev {
                left: 20px;
            }

            .slider-arrow.next {
                right: 20px;
            }

            .slider-nav {
                bottom: 30px;
            }
        }

        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 2.2rem;
                letter-spacing: -1px;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .slider-arrow {
                display: none;
            }

            .btn-primary, .btn-secondary {
                padding: 14px 32px;
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .slider-nav {
                padding: 12px 20px;
                gap: 12px;
            }

            .slider-dot {
                width: 12px;
                height: 12px;
            }
        }

        .btn-primary {
            background: var(--accent);
            color: var(--dark);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(255, 210, 63, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 210, 63, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            border: 2px solid white;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--secondary);
        }

        .hero-search {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            animation: fadeInRight 1s ease-out;
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .search-tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .search-tab {
            flex: 1;
            padding: 0.8rem;
            border: none;
            background: #f8f9fa;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .search-tab.active {
            background: var(--primary);
            color: white;
        }

        .search-form {
            display: grid;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 0;
            color: #000000;
            margin-top: 13px;
        }

        .form-group input,
        .form-group select {
            padding: 1rem;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .search-submit {
            background: var(--secondary);
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .search-submit:hover {
            background: #003a6b;
            transform: translateY(-2px);
        }

        /* Stats Section */
        .stats {
            background: var(--dark);
            padding: 3rem 5%;
            color: white;
        }

        .stats-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            animation: fadeInUp 0.8s ease-out both;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            font-family: "Comfortaa", sans-serif;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Popular Destinations */
        .destinations {
            padding: 5rem 4%;
            background: #f8f9fa;
            margin-bottom: -6%;
        }

        .section-header {
            text-align: center;
            max-width: max-content;
            margin: 0 auto 4rem;
        }



        .section-header h2 {
            font-size: 60px;
            margin-bottom: 0rem;
            color: var(--dark);
            font-weight: bolder;
            font-family: 'Mamzelle';
            font-weight: bold;
            font-style: italic;
            letter-spacing: -1px;
        }

        .section-header p {
            font-size: 25px;
            color: #666;
        }

        .destinations-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .destination-card {
            position: relative;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .destination-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        }

        .destination-card::before {
            content: '';

            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
            z-index: 1;
        }

        .destination-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .destination-card:hover .destination-image {
            transform: scale(1.1);
        }

        .destination-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            color: white;
            z-index: 2;
        }

        .destination-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .destination-tours {
            opacity: 0.9;
        }

        .destination-price {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: var(--dark);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            z-index: 2;
        }

        /* Tours Section */
        .tours {
            padding: 6rem 5%;
            background: white;
        }

        .tours-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .tour-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .tour-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .tour-image {
            height: 250px;
            width: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
        }

        .tour-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--success);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .tour-content {
            padding: 2rem;
        }

        .tour-meta {
            display: flex;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1rem;
        }

        .tour-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .tour-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .tour-description {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .tour-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid #e9ecef;
        }

        .tour-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            font-family: "Comfortaa", sans-serif;
        }

        .tour-price span {
            font-size: 0.9rem;
            color: #666;
            font-weight: 400;
            font-family: 'Outfit', sans-serif;
        }

        .tour-link {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

        .tour-link:hover {
            gap: 1rem;
        }

        /* Features Section */
        .features {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--secondary) 0%, #003a6b 100%);
            color: white;
        }

        .features-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            text-align: center;
        }

        .feature-item {
            animation: fadeInUp 0.8s ease-out both;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 210, 63, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
        }

        .feature-item h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }

        .feature-item p {
            opacity: 0.9;
            line-height: 1.8;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 5%;
            background: #f8f9fa;
        }

        .testimonials-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #666;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: var(--dark);
        }

        .author-info p {
            font-size: 0.9rem;
            color: #666;
        }

        .rating {
            color: var(--accent);
            margin-top: 1rem;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta {
            padding: 6rem 5%;
            background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            bottom: -100px;
            right: -100px;
            border-radius: 50%;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 5% 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            font-family: "Comfortaa", sans-serif;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-search {
                margin-top: 2rem;
            }

            .stats-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .destinations-grid,
            .tours-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                gap: 1.5rem;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            nav ul.active {
                transform: translateX(0);
            }

            .mobile-toggle {
                display: flex;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .stats-grid,
            .destinations-grid,
            .tours-grid,
            .testimonials-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .cta-content h2 {
                font-size: 2rem;
            }
        }

.packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 40px;
            margin-bottom: 120px;
        }

        .package-card {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            height: 500px;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            background: #fff;
        }

        .package-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
            opacity: 0;
            transition: opacity 0.5s;
            z-index: 1;
        }

        .package-card:hover::before {
            opacity: 1;
        }

        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
        }

        .package-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .package-card:hover img {
            transform: scale(1.15);
        }

        .package-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.5), transparent);
            padding: 50px 30px 30px;
            color: white;
            z-index: 2;
        }

        .package-tag {
            position: absolute;
            top: 25px;
            left: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            z-index: 3;
            color: white;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
            animation: slideInLeft 0.6s ease;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .package-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        }

        .package-subtitle {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .package-subtitle span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .package-info {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .info-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .package-price {
            font-size: 28px;
            font-weight: 700;
            color: #ffd89b;
            margin-bottom: 15px;
        }

        .book-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 14px 35px;
            border: none;
            border-radius: 25px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
            font-family: 'Poppins', sans-serif;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .package-card:hover .book-button {
            opacity: 5;
            transform: translateY(0);
        }

        .book-button:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.6);
        }

        .features-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: #ffffff;
            border: 2px solid #f0f0f0;
            padding: 45px 35px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.4s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
            border-color: #667eea;
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
        }

        .feature-icon {
            font-size: 55px;
            margin-bottom: 20px;
            display: inline-block;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .feature-card h3 {
            font-size: 24px;
            margin-bottom: 12px;
            font-weight: 700;
            color: #333;
        }

        .feature-card p {
            color: #666;
            font-size: 15px;
            line-height: 1.7;
        }

        @media (max-width: 1024px) {
            .packages-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .packages-grid {
                grid-template-columns: 1fr;
            }

            .section-header h2 {
                font-size: 38px;
            }

            .section-header p {
                font-size: 17px;
            }

            .package-card {
                height: 450px;
            }
        }



/* Hero with Image Split */

.hero {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 90vh;
    margin-bottom: 0px;
    background-image: url("../images/auli-hero.jpg");
}


.hero1 {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 90vh;
    margin-bottom: 0px;
    background-image: url("../images/do-dham.jpg");
}


.hero1 h1 {
           font-family: 'Mamzelle';
           font-weight: bold;
           font-style: italic;
           font-size: 86px;
           line-height: 1.1;
           color: #000000;
           margin-bottom: 30px;
        }

.hero1 p {
            font-size: 20px;
            color: #000000;
            line-height: 1.7;
            margin-bottom: 40px;
        }


.hero2 {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 90vh;
    margin-bottom: 0px;
    background-image: url("../images/tungnath-banner.jpg");
}


.hero2 h1 {
           font-family: 'Mamzelle';
           font-weight: bold;
           font-style: italic;
           font-size: 86px;
           line-height: 1.1;
           color: #000000;
           margin-bottom: 30px;
        }

.hero2 p {
            font-size: 20px;
            color: #000000;
            line-height: 1.7;
            margin-bottom: 40px;
        }


.hero4 {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 90vh;
    margin-bottom: 0px;
    background-image: url("../images/badrinath-1.jpg");
}


.hero4 h1 {
           font-family: 'Mamzelle';
           font-weight: bold;
           font-style: italic;
           font-size: 86px;
           line-height: 1.1;
           color: #000000;
           margin-bottom: 30px;
        }

.hero4 p {
            font-size: 20px;
            color: #000000;
            line-height: 1.7;
            margin-bottom: 40px;
        }

.hero3 {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 90vh;
    margin-bottom: 0px;
    background-image: url("../images/mussoorie1.jpg");
}


.hero3 h1 {
           font-family: 'Mamzelle';
           font-weight: bold;
           font-style: italic;
           font-size: 86px;
           line-height: 1.1;
           color: #000000;
           margin-bottom: 30px;
        }

.hero3 p {
            font-size: 20px;
            color: #000000;
            line-height: 1.7;
            margin-bottom: 40px;
        }
        
        
        .hero-content {
            padding: 100px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #fff;
        }

        .hero-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #ff6b35;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero h1 {
           font-family: 'Mamzelle';
           font-weight: bold;
           font-style: italic;
           font-size: 86px;
           line-height: 1.1;
           color: #000000;
           margin-bottom: 30px;
        }

        .hero p {
            font-size: 20px;
            color: #000000;
            line-height: 1.7;
            margin-bottom: 40px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 20px;
        }

        .stat-mini {
            flex: 1;
        }

        .stat-mini .num {
            font-size: 32px;
            font-weight: 700;
            color: #ff6b35;
            margin-bottom: 5px;
        }

        .stat-mini .label {
            font-size: 13px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-image {
            background: url("../images/aymyogaschool-rishikesh.jpg") center/cover;
            position: relative;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
        }

        .hero-badge {
            position: absolute;
            bottom: 40px;
            left: 40px;
            background: #fff;
            padding: 20px 30px;
            border-radius: 10px;
            z-index: 1;
        }

        .hero-badge .badge-text {
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }

        .hero-badge .badge-title {
            font-size: 18px;
            font-weight: 700;
            color: #000;
        }

        /* Story Section with Offset Image */
        .story-section {
            padding: 0 80px 100px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .story-content h2 {font-family: 'Mamzelle';
            font-weight: bold;
            font-style: italic;
            font-size: 52px;
            line-height: 1.2;
            color: #000;
            margin-bottom: 30px;
        }

        .story-content p {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
        }

        .story-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .story-img {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

        .story-img.tall {
            grid-row: span 2;
        }

        .story-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s;
        }

        .story-img:hover img {
            transform: scale(1.05);
        }

        /* Values Cards */
        .values {
            padding: 100px 80px;
            background: #fff;
        }

        .values h2 {
           font-family: 'Mamzelle';
            font-weight: bold;
            font-style: italic;
            font-size: 52px;
            text-align: center;
            margin-bottom: 80px;
            color: #000;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
        }

        .value-box {
            position: relative;
            padding: 50px 40px;
            background: #f8f6f3;
            border-radius: 15px;
            transition: transform 0.3s;
        }

        .value-box:hover {
            transform: translateY(-10px);
        }

        .value-box::before {
            content: attr(data-number);
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 72px;
            font-weight: 700;
            color: rgba(255, 107, 53, 0.1);font-family: 'Mamzelle';
            font-weight: bold;
            font-style: italic;
        }

        .value-icon {
            font-size: 48px;
            margin-bottom: 25px;
            display: block;
        }

        .value-box h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #000;
        }

        .value-box p {
            font-size: 16px;
            line-height: 1.7;
            color: #666;
        }

        /* Full Width Image Banner */
        .image-banner {
            height: 500px;
            background: url('https://images.unsplash.com/photo-1609137144813-7d9921338f24?w=1600&h=600&fit=crop') center/cover;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 100px 0;
        }

        .image-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .banner-text {
            position: relative;
            text-align: center;
            color: #fff;
            z-index: 1;
        }

        .banner-text h2 {font-family: 'Mamzelle';
            font-weight: bold;
            font-style: italic;
            font-size: 56px;
            margin-bottom: 20px;
        }

        .banner-text p {
            font-size: 22px;
            opacity: 0.9;
        }

        /* Team Section */
        .team {
            padding: 100px 80px;
        }

        .team h2 {font-family: 'Mamzelle';
            font-weight: bold;
            font-style: italic;
            font-size: 52px;
            text-align: center;
            margin-bottom: 20px;
            color: #000;
        }

        .team-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 80px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .team-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .team-card:hover {
            transform: translateY(-10px);
        }

        .team-photo {
            width: 100%;
            aspect-ratio: 1;
            background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop') center/cover;
        }

        .team-card:nth-child(2) .team-photo {
            background: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop') center/cover;
        }

        .team-card:nth-child(3) .team-photo {
            background: url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=400&fit=crop') center/cover;
        }

        .team-card:nth-child(4) .team-photo {
            background: url('https://images.unsplash.com/photo-1534528741775-53994a69daeb?w=400&h=400&fit=crop') center/cover;
        }

        .team-info {
            padding: 25px;
            text-align: center;
        }

        .team-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
            color: #000;
        }

        .team-role {
            font-size: 14px;
            color: #ff6b35;
            font-weight: 600;
        }

        /* CTA Section */
        .cta {
            margin: 100px 80px 80px;
            padding: 80px;
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            border-radius: 20px;
            text-align: center;
            color: #fff;
        }

        .cta h2 {font-family: 'Mamzelle';
            font-weight: bold;
            font-style: italic;
            font-size: 48px;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: #fff;
            color: #ff6b35;
            text-decoration: none;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 700;
            transition: transform 0.3s;
        }

        .cta-button:hover {
            transform: scale(1.05);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero,
            .story-section {
                grid-template-columns: 1fr;
            }

            .hero-content {
                padding: 60px 40px;
            }

            .hero-image {
                min-height: 500px;
            }

            .values-grid,
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .story-section,
            .values,
            .team,
            .cta {
                padding: 60px 40px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 42px;
            }

            .hero p {
                font-size: 17px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }

            .story-content h2,
            .values h2,
            .team h2 {
                font-size: 36px;
            }

            .story-image-grid {
                grid-template-columns: 1fr;
            }

            .story-img.tall {
                grid-row: auto;
            }

            .values-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .image-banner {
                height: 400px;
            }

            .banner-text h2 {
                font-size: 36px;
            }

            .cta {
                margin: 60px 20px 40px;
                padding: 50px 30px;
            }
        }


/* Main Section */
        .why-section {
            position: relative;
            padding: 100px 80px;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            border-radius: 30px;
            overflow: hidden;
        }

        /* Decorative Shapes */
        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
        }

        .shape1 {
            width: 400px;
            height: 400px;
            background: #ff6b35;
            top: -200px;
            right: -100px;
        }

        .shape2 {
            width: 300px;
            height: 300px;
            background: #fdc830;
            bottom: -150px;
            left: -100px;
        }

        .shape3 {
            width: 200px;
            height: 200px;
            background: #4ecdc4;
            top: 50%;
            left: 10%;
        }

        /* Header */
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }

       

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 50px 35px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(253, 200, 48, 0.1));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 107, 53, 0.3);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
        }

        .icon-wrapper {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #ff6b35, #fdc830);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            position: relative;
            transition: transform 0.4s;
        }

        .feature-card:hover .icon-wrapper {
            transform: rotate(360deg) scale(1.1);
        }

        .feature-card h3 {
            font-size: 22px;
            color: #fff;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .feature-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* Alternative Design - Card Style */
        .why-section-alt {
            padding: 100px 80px;
            background: #fff;
            border-radius: 30px;
        }

        .section-header-alt h2 {font-family: 'Mamzelle';
            font-weight: bold;
            font-style: italic;
            font-size: 64px;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 800;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-header-alt h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #ff6b35, #fdc830);
            border-radius: 3px;
        }

        .section-header-alt p {
            font-size: 20px;
            color: #666;
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.6;
            text-align: center;
        }

        .features-grid-alt {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
            margin-top: 80px;
        }

        .feature-card-alt {
            background: #f8f8f8;
            border-radius: 20px;
            padding: 45px 30px;
            text-align: center;
            transition: all 0.4s;
            border: 2px solid transparent;
        }

        .feature-card-alt:hover {
            background: #fff;
            border-color: #ff6b35;
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .icon-circle {
            width: 90px;
            height: 90px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #ff6b35, #fdc830);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 42px;
            transition: transform 0.3s;
        }

        .feature-card-alt:hover .icon-circle {
            transform: scale(1.15);
        }

        .feature-card-alt h3 {
            font-size: 22px;
            color: #1a1a1a;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .feature-card-alt p {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }

        /* Split Design */
        .why-section-split {
            display: grid;
            grid-template-columns: 40% 60%;
            gap: 0;
            border-radius: 30px;
            overflow: hidden;
            background: #fff;
        }

        .split-left {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            padding: 80px 60px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .split-left h2 {font-family: 'Mamzelle';
            font-weight: bold;
            font-style: italic;
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .split-left p {
            font-size: 18px;
            line-height: 1.7;
            opacity: 0.95;
        }

        .split-right {
            padding: 80px 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .feature-item .icon {
            font-size: 48px;
        }

        .feature-item h3 {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
        }

        .feature-item p {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .features-grid,
            .features-grid-alt {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-section-split {
                grid-template-columns: 1fr;
            }

            .split-right {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .why-section,
            .why-section-alt,
            .split-left,
            .split-right {
                padding: 60px 30px;
            }

            .section-header h2,
            .section-header-alt h2,
            .split-left h2 {
                font-size: 42px;
            }

            .features-grid,
            .features-grid-alt,
            .split-right {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

:root{
  --bg:#0b0f1a;
  --sky1:#0b0f1a;
  --sky2:#1a2744;
  --sky3:#2d4a7a;
  --sky4:#e8935a;
  --snow:#e8eef2;
  --accent:#e8935a;
  --teal:#4a9b8e;
  --mint:#a8d4cc;
  --text:#f0f4f8;
  --muted:#7a8fa6;
  --paper:#f4f0ea;
  --ink:#1a1a1a;
}


/* CURSOR */



/* SKY CANVAS */
#mountain-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:0;
	background-image: url("../images/auli-hero.jpg");
}

/* Hero text overlay */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:5;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:0 8%;
  pointer-events:none;
}

.h-tag{
  
font-weight:300;
  
font-size: 0.9rem;
  
letter-spacing:.4em;
  
text-transform:uppercase;
  
color: #ffffff;
  
margin-bottom:20px;
  
opacity:0;
  
animation:fadeSlide .8s ease .5s forwards;
  
display:flex;
  
align-items:center;
  
gap:12px;
}
.h-tag::before{content:'';width:36px;height:1px;background:var(--accent);}

.h-title{
 
  font-weight:800;
  font-size:clamp(5rem,13vw,12rem);
  line-height:.88;
  letter-spacing:-.03em;
  color:var(--snow);
  opacity:0;
  animation:fadeSlide .9s ease .7s forwards;
}
.h-title .thin{font-weight:200;color: rgb(255 255 255);}
.h-sub{
 
  font-weight:300;
  font-size:clamp(.9rem,1.5vw,1.2rem);
  color:rgba(240,244,248,.55);
  max-width:440px;
  line-height:1.7;
  margin-top:20px;
  opacity:0;
  animation:fadeSlide .9s ease .9s forwards;
}

/* Stats band */
.hero-stats{
  position:absolute;
  bottom:0;left:0;right:0;
  z-index:6;
  display:flex;
  background:rgba(11,15,26,.6);
  backdrop-filter:blur(12px);
  border-top:1px solid rgba(232,147,90,.15);
  pointer-events:auto;
}
.stat-cell{
  flex:1;
  padding:20px 28px;
  border-right:1px solid rgba(255,255,255,.06);
  display:flex;align-items:center;gap:14px;
}
.stat-cell:last-child{border-right:none}
.stat-ico{font-size:1.4rem;flex-shrink:0}
.stat-n{font-weight:700;font-size:1.4rem;color:var(--snow);line-height:1}
.stat-l{font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted);margin-top:3px}
.cta-cell{
  padding:0 36px;
  display:flex;align-items:center;
  background:var(--accent);
  cursor:pointer;
  pointer-events:auto;
}
.cta-cell a{
  font-weight:600;
  font-size:.8rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--ink);text-decoration:none;white-space:nowrap;
}

@keyframes fadeSlide{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}

/* ═══ MARQUEE ═══ */
.marquee-strip{
  background: #2a3382;
  overflow:hidden;
  padding:13px 0;
  white-space:nowrap;
}
.marquee-track{display:inline-flex;animation:mq 24s linear infinite}
.mq-item{
  display:inline-flex;
  align-items:center;
  gap:18px;
  padding:0 28px;
  font-weight:400;
  font-size:.78rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color: rgb(240 244 248);
}
.mq-dot{width:4px;height:4px;border-radius:50%;background:rgba(240,244,248,.4);flex-shrink:0}
@keyframes mq{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ═══ ABOUT ═══ */
.about-wrap{
  background:var(--bg);
  padding:120px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.about-bg-num{
  position:absolute;right:5%;top:50%;transform:translateY(-50%);
  font-weight:800;
  font-size:clamp(10rem,22vw,24rem);
  color:rgba(255,255,255,.025);
  line-height:1;pointer-events:none;user-select:none;letter-spacing:-.05em;
}
.section-label{
  font-weight:400;
  font-size:.65rem;letter-spacing:.4em;text-transform:uppercase;
  color:var(--accent);margin-bottom:16px;
  display:flex;align-items:center;gap:12px;
}
.section-label::before{content:'';width:28px;height:1px;background:var(--accent)}
.section-title{
  font-weight:700;
  font-size:clamp(2rem,4.5vw,4rem);
  line-height:1.05;color:var(--snow);margin-bottom:24px;
  letter-spacing:-.02em;
}
.section-title em{font-style:normal;color:var(--mint)}
.body-text{
  font-size:.98rem;line-height:1.9;color:var(--muted);margin-bottom:20px;
}
.about-num-row{
  display:flex;gap:40px;padding-top:28px;
  border-top:1px solid rgba(255,255,255,.07);margin-top:10px;
}
.an-block .n{
  font-weight:700;
  font-size:2.5rem;color:var(--snow);line-height:1;
}
.an-block .l{
  font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--muted);margin-top:5px;
}

/* Mini mountain card */
.mini-mountain-card{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  max-height: 633px;
}
#mini-canvas{width:100%;height:100%;display:block}

/* ═══ ITINERARY ═══ */
.itin-section{
  background:var(--paper);
  color:var(--ink);
  padding:100px 0;
}
.itin-head{
  padding:0 8%;margin-bottom:60px;
  display:flex;justify-content:space-between;align-items:flex-end;
  flex-wrap:wrap;gap:20px;
}
.itin-title{
  font-weight:800;
  font-size:clamp(2.5rem,6vw,5.5rem);
  line-height:.9;letter-spacing:-.03em;color:var(--ink);
	font-family: 'Mamzelle ExtExp';
}
.itin-label-dark{
  font-size:.65rem;letter-spacing:.35em;text-transform:uppercase;
  color:var(--accent);margin-bottom:14px;
  display:flex;align-items:center;gap:10px;
}
.itin-label-dark::before{content:'';width:24px;height:1px;background:var(--accent)}
.itin-hint{
  font-size:.85rem;color:#7a7060;max-width:240px;line-height:1.6;
  font-weight:300;
}

.days-list{padding:0 8%;display:flex;flex-direction:column}

.day-row{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:0;
  border-top:1px solid rgba(26,26,26,.1);
  overflow:hidden;
}
.day-row:last-child{border-bottom:1px solid rgba(26,26,26,.1)}

.day-num-col{
  padding:32px 0;
  display:flex;flex-direction:column;align-items:center;
  gap:8px;
  border-right:1px solid rgba(26,26,26,.08);
}
.d-n{
  font-weight:800;
  font-size:1.8rem;color:rgba(26,26,26,.12);
  line-height:1;writing-mode:vertical-lr;
  text-orientation:mixed;letter-spacing:.05em;
}
.day-connector{flex:1;width:1px;background:rgba(26,26,26,.07);margin:0 auto}

.day-body-col{padding:32px 0 32px 36px;cursor:pointer}

.day-hd{
  display:flex;justify-content:space-between;align-items:center;
  gap:20px;
}
.day-route{
  font-weight:600;
  font-size: clamp(1rem,2.5vw,20px);
  color:var(--ink);
  margin-bottom:5px;
  letter-spacing:-.01em;
}
.day-sub{
  font-size: 17px;
  letter-spacing: 0px;
  text-transform:uppercase;
  color: #e8935a;
  font-weight: 600;
}
.day-plus{
  width:36px;height:36px;border-radius:50%;
  border:1px solid rgba(26,26,26,.2);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;color:var(--ink);flex-shrink:0;
  transition:all .35s ease;
}
.day-row.open .day-plus{background:var(--accent);border-color:var(--accent);color:white;transform:rotate(45deg)}

.day-expand{max-height:0;overflow:hidden;transition:max-height .55s cubic-bezier(.16,1,.3,1)}
.day-row.open .day-expand{max-height: 457px;}
.day-expand-inner{padding: 20px 0 0px;}
.day-desc{
  font-size: 20px;
  line-height:1.85;
  color:#4a4540;
  font-weight:300;
  margin-bottom:18px;
}
.day-tags{display:flex;flex-wrap:wrap;gap:8px}
.tag{
  padding:5px 14px;
  border:1px solid rgba(26,26,26,.15);
  font-size:.62rem;letter-spacing:.15em;text-transform:uppercase;
  color:var(--ink);
  transition:all .2s;
}
.tag:hover{background:var(--accent);border-color:var(--accent);color:white}

/* ═══ HIGHLIGHTS ═══ */
.hl-section{
  background:#0d1520;
  padding:100px 8%;
  position:relative;overflow:hidden;
}
.hl-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  margin-top:64px;
}
.hl-card{
  background:#0d1520;
  padding:44px 36px;
  position:relative;
  transition:background .3s;
}
.hl-card:hover{background:#121d2e}
.hl-card::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:2px;
  background:var(--accent);transform:scaleX(0);transform-origin:left;
  transition:transform .4s cubic-bezier(.16,1,.3,1);
}
.hl-card:hover::after{transform:scaleX(1)}
.hl-ico{font-size:1.8rem;margin-bottom:20px}
.hl-n{
  font-weight:700;
  font-size:1.15rem;color:var(--snow);margin-bottom:10px;
}
.hl-d{font-size:.88rem;line-height:1.75;color:var(--muted)}
.hl-num{
  position:absolute;top:24px;right:28px;
  font-weight:800;
  font-size:3rem;color:rgba(255,255,255,.04);
  line-height:1;
}

/* ═══ INCLUSIONS ═══ */
.inc-section{
  background:var(--snow);
  color:var(--ink);
  padding:100px 8%;
}
.inc-top{
  display:grid;grid-template-columns:1fr 1fr;
  gap:80px;margin-bottom:70px;align-items:start;
}
.inc-title{
  font-weight:800;
  font-size:clamp(2.5rem,5vw,5rem);
  line-height:.9;letter-spacing:-.03em;color:var(--ink);
}
.inc-title em{font-style:normal;color:var(--accent)}
.inc-intro{font-size:.95rem;line-height:1.85;color:#5a5048;font-weight:300;padding-top:8px}
.inc-cols{display:grid;grid-template-columns:1fr 1fr;gap:60px}
.inc-col-h{
  font-weight:600;
  font-size:.7rem;letter-spacing:.3em;text-transform:uppercase;
  color:var(--ink);margin-bottom:24px;
  padding-bottom:14px;border-bottom:2px solid var(--ink);
}
.inc-item{
  display:flex;align-items:flex-start;gap:14px;
  padding:14px 0;border-bottom:1px solid rgba(26,26,26,.08);
  font-size:.9rem;color:#3a3028;line-height:1.5;font-weight:300;
}
.inc-item:last-child{border-bottom:none}
.ic{
  width:20px;height:20px;border-radius:50%;
  flex-shrink:0;display:flex;align-items:center;justify-content:center;
  font-size:.6rem;font-weight:600;margin-top:2px;
}
.ic.y{background:#2d6a4f;color:white}
.ic.n{background:rgba(26,26,26,.1);color:rgba(26,26,26,.4)}

/* ═══ ENQUIRY ═══ */
.enquiry-section{
  position:relative;
  background: #f4f0ea;
  padding:100px 8%;
  overflow:hidden;
}
#enq-canvas{
  position:absolute;inset:0;width:100%;height:100%;
  pointer-events:none;z-index:0;opacity:.35;
}
.enq-layout{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr;
  gap:80px;align-items:start;
}
.enq-title{
  font-weight:800;
  font-size:clamp(2.5rem,5vw,4.5rem);
  line-height:.95;
  letter-spacing:-.02em;
  color: #000000;
  margin-bottom:28px;
}
.enq-body{font-size: 20px;line-height:1.85;color: #e49159;margin-bottom:44px}
.contact-row{display:flex;align-items:center;gap:14px;margin-bottom:18px}
.c-ico{font-size:1.2rem}
.c-sub{font-size: 17px;letter-spacing: 3px;text-transform:uppercase;color: #000000;}
.c-val{font-size: 29px;color: #000000;margin-top: 0px;font-weight: 600;}

/* Form */
.form-grid{display:flex;flex-direction:column;gap:0}
.frow{display:grid;grid-template-columns:1fr 1fr;gap:24px;margin-bottom:0}
.fg{
  display:flex;flex-direction:column;gap:6px;
  padding:18px 0;border-bottom:1px solid rgba(255,255,255,.08);
}
.fg.full{grid-column:1/-1}
.fl{font-size: .8rem;letter-spacing:.25em;text-transform:uppercase;color: #ffffff;}
.fl sup{color:var(--accent)}
.fi,.fs,.fta{
  background:transparent;border:none;
  color:var(--snow);
  font-size:.95rem;font-weight:300;
  outline:none;width:100%;
  -webkit-appearance:none;appearance:none;border-radius:0;
  transition:color .2s;
}
.fi::placeholder,.fta::placeholder{color:rgba(122,143,166,.35);font-style:italic}
.fi:focus,.fs:focus,.fta:focus{color:var(--snow)}
.fg:focus-within{border-bottom-color:var(--accent)}
.fta{resize:none;min-height:80px}
.fs{cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e8935a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 0 center;padding-right:22px}
.fs option{background:#1a2232}
.submit-btn{
  margin-top:28px;
  background:var(--accent);color:var(--ink);
  border:none;padding:17px 36px;
  font-weight:600;
  font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;
  cursor:pointer;display:flex;align-items:center;justify-content:center;gap:14px;
  width:100%;transition:all .3s;
}
.submit-btn:hover{filter:brightness(1.12);transform:translateY(-3px);box-shadow:0 14px 40px rgba(232,147,90,.3)}
.s-arrow{font-size:1rem;transition:transform .3s}
.submit-btn:hover .s-arrow{transform:translateX(6px)}

/* FOOTER */
footer{
  background:#070a10;
  padding:44px 8%;
  display:flex;justify-content:space-between;align-items:center;
  border-top:1px solid rgba(255,255,255,.05);
}
.f-brand{font-weight:800;font-size:1.4rem;color:var(--snow);letter-spacing:-.02em}
.f-sub{font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--muted);margin-top:4px}
.f-links{display:flex;gap:28px}
.f-links a{font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;color:var(--muted);text-decoration:none;transition:color .2s}
.f-links a:hover{color:var(--accent)}

/* Reveal */
.rv{transform:translateY(44px);transition:opacity .9s cubic-bezier(.16,1,.3,1),transform .9s cubic-bezier(.16,1,.3,1)}
.rv.vx{opacity:1;transform:none}
.rv.rl{transform: translateX(0px);}
.rv.rr{transform:translateX(44px)}
.rv.vx.rl,.rv.vx.rr{transform:none}
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}

@media(max-width:900px){
  .about-wrap,.inc-top,.inc-cols,.enq-layout{grid-template-columns:1fr;gap:40px}
  .hl-grid{grid-template-columns:1fr 1fr}
  .frow{grid-template-columns:1fr}
  .fg.full{grid-column:1}
  .hero-stats{flex-wrap:wrap}
  .stat-cell{min-width:50%}
  .day-row{grid-template-columns:48px 1fr}
  footer{flex-direction:column;gap:20px;text-align:center}
  .f-links{flex-wrap:wrap;justify-content:center}
  body{cursor:auto}
  .cur,.cur-ring{display:none}
}
@media(max-width:600px){
  .hl-grid{grid-template-columns:1fr}
  .about-wrap,.itin-head,.hl-section,.inc-section,.enquiry-section{padding-left:6%;padding-right:6%}
  .days-list{padding:0 6%}.rv.rr {
    transform: translateX(5px);
}
}

/* ── MOUNTAIN DIVIDER ── */
    .mountain-divider { width: 100%; line-height: 0; }
    .mountain-divider svg { width: 100%; height: 90px; display: block; }

    /* ── GALLERY META ── */
    .gallery-top-meta {
      padding: 2.5rem 3rem 1.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .gallery-top-meta h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-style: italic;
      font-size: 1.1rem;
      color: #5a5550;
    }

    .gallery-top-meta span {
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #b0aba4;
    }

    /* ── ZERO-GAP EQUAL GRID ── */
    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }

    /* ── TILE (shared for both image & video) ── */
    .gallery-item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      cursor: pointer;
      background: #1a1a1a;
      opacity: 0;
      transform: scale(0.97);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .gallery-item.show { opacity: 1; transform: scale(1); }

    /* thumbnail covers the tile */
    .gallery-item img,
    .gallery-item .vid-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(0.72) brightness(0.93);
      transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.75s ease;
    }

    .gallery-item:hover img,
    .gallery-item:hover .vid-thumb {
      transform: scale(1.08);
      filter: saturate(1) brightness(1.05);
    }

    /* hairline cell separator */
    .gallery-item::before {
      content: '';
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 0 1px rgba(245,243,239,0.22);
      z-index: 2;
      pointer-events: none;
    }

    /* hover gradient overlay */
    .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(10,8,4,0.65) 100%);
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: 1;
    }

    .gallery-item:hover .overlay { opacity: 1; }

    /* caption */
    .caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1rem 1rem 0.9rem;
      z-index: 3;
      transform: translateY(8px);
      opacity: 0;
      transition: all 0.4s ease;
    }

    .gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

    .caption-name {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 1.05rem;
      color: #f0ece6;
      letter-spacing: 0.05em;
      display: block;
    }

    .caption-sub {
      font-size: 0.58rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #c8b99a;
      margin-top: 3px;
      display: block;
    }

    /* ── VIDEO TILE SPECIFIC ── */
    .vid-thumb {
      position: relative;
    }

    /* Play button badge — always visible on video tiles */
    .play-badge {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) scale(1);
      width: 48px; height: 48px;
      border-radius: 50%;
      background: rgba(245,243,239,0.18);
      border: 1.5px solid rgba(245,243,239,0.55);
      display: flex; align-items: center; justify-content: center;
      z-index: 3;
      transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
                  background 0.3s ease;
      backdrop-filter: blur(4px);
    }

    .play-badge svg { width: 18px; height: 18px; margin-left: 3px; }

    .gallery-item:hover .play-badge {
      transform: translate(-50%, -50%) scale(1.12);
      background: rgba(245,243,239,0.28);
    }

    /* VIDEO TYPE label */
    .type-label {
      position: absolute;
      top: 12px; left: 12px;
      font-size: 0.55rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #f0ece6;
      background: rgba(10,8,4,0.45);
      border: 1px solid rgba(245,243,239,0.2);
      padding: 0.2rem 0.55rem;
      border-radius: 2px;
      z-index: 3;
      backdrop-filter: blur(4px);
    }

    /* ── LIGHTBOX ── */
    .lb {
      position: fixed;
      inset: 0;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }

    .lb.open { opacity: 1; pointer-events: all; }

    .lb-bg {
      position: absolute;
      inset: 0;
      background: rgba(12, 10, 8, 0.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    /* mountain silhouette watermark */
    .lb-bg::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 140px;
      opacity: 0.07;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 140'%3E%3Cpath fill='%23f5f3ef' d='M0,140 L0,95 L100,52 L200,82 L300,32 L400,68 L520,12 L640,62 L760,22 L880,70 L1000,38 L1120,82 L1240,48 L1440,88 L1440,140Z'/%3E%3C/svg%3E") bottom / cover no-repeat;
    }

    .lb-body {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      max-width: 90vw;
    }

    /* ── IMAGE frame ── */
    .lb-frame {
      position: relative;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 70px rgba(0,0,0,0.4);
      cursor: zoom-in;
      overflow: hidden;
      transform: scale(0.94);
      opacity: 0;
      transition: transform 0.5s cubic-bezier(0.34,1.2,0.64,1), opacity 0.4s ease;
      display: none;
    }

    .lb.open .lb-frame { transform: scale(1); opacity: 1; }

    .lb-frame img {
      display: block;
      max-width: 84vw;
      max-height: 70vh;
      object-fit: contain;
      transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
      user-select: none;
      pointer-events: none;
    }

    .lb-frame.zoomed     { cursor: zoom-out; }
    .lb-frame.zoomed img { transform: scale(2.2); }

    .lb-zoom-tag {
      position: absolute;
      top: 12px; right: 12px;
      font-size: 0.56rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #9a9590;
      background: rgba(12,10,8,0.7);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 0.22rem 0.6rem;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .lb-frame.zoomed .lb-zoom-tag { opacity: 0; }

    /* ── VIDEO frame ── */
    .lb-video {
      position: relative;
      width: 84vw;
      max-width: 960px;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 70px rgba(0,0,0,0.4);
      background: #000;
      transform: scale(0.94);
      opacity: 0;
      transition: transform 0.5s cubic-bezier(0.34,1.2,0.64,1), opacity 0.4s ease;
      display: none;
    }

    .lb.open .lb-video { transform: scale(1); opacity: 1; }

    .lb-video video {
      width: 100%;
      max-height: 70vh;
      display: block;
      outline: none;
    }

    /* ── INFO BELOW ── */
    .lb-info {
      margin-top: 1.3rem;
      text-align: center;
      opacity: 0;
      transform: translateY(8px);
      transition: all 0.4s ease 0.15s;
    }

    .lb.open .lb-info { opacity: 1; transform: translateY(0); }

    .lb-info-name {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 1.45rem;
      color: #f0ece6;
      letter-spacing: 0.06em;
    }

    .lb-info-sub {
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: #7a8c6e;
      margin-top: 5px;
    }

    /* ── CONTROLS ── */
    .lb-close {
      position: fixed;
      top: 1.5rem; right: 1.8rem;
      background: none;
      border: 1px solid rgba(255,255,255,0.15);
      font-size: 0.9rem;
      color: #9a9590;
      cursor: pointer;
      z-index: 10;
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }

    .lb-close:hover { color: #f0ece6; border-color: rgba(255,255,255,0.4); }

    .lb-prev, .lb-next {
      position: fixed;
      top: 50%; transform: translateY(-50%);
      background: none;
      border: 1px solid rgba(255,255,255,0.12);
      color: #9a9590;
      width: 40px; height: 40px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
      z-index: 10;
    }

    .lb-prev { left: 1.5rem; }
    .lb-next { right: 1.5rem; }
    .lb-prev:hover, .lb-next:hover { color: #f0ece6; border-color: rgba(255,255,255,0.4); }

    .lb-count {
      position: fixed;
      bottom: 1.8rem; left: 50%; transform: translateX(-50%);
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      color: #5a5550;
      z-index: 10;
    }

    /* zoom buttons — only for images */
    .lb-zoom-btns {
      position: fixed;
      bottom: 1.8rem; right: 1.8rem;
      display: flex; gap: 6px;
      z-index: 10;
    }

    .lb-zoom-btns button {
      width: 32px; height: 32px;
      background: none;
      border: 1px solid rgba(255,255,255,0.12);
      color: #9a9590;
      cursor: pointer;
      font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
      line-height: 1;
    }

    .lb-zoom-btns button:hover { border-color: rgba(255,255,255,0.4); color: #f0ece6; }

    .lb.closing .lb-frame,
    .lb.closing .lb-video { transform: scale(0.96); opacity: 0; }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid #dedad4;
      padding: 2rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    footer p {
      font-size: 0.6rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #c0bbb4;
    }

    footer svg { width: 90px; opacity: 0.15; }

    @media (max-width: 900px) {
      .gallery { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 580px) {
      .gallery { grid-template-columns: repeat(2, 1fr); }
      header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .gallery-top-meta { padding: 2rem 1.5rem 1.5rem; }
      .lb-video { width: 94vw; }
      .lb-frame img { max-width: 94vw; }
    }


/* Mobile Fixed Footer Buttons */
        .mobile-footer-actions {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
            padding: 0.8rem;
            z-index: 999;
            gap: 0.8rem;
        }

        .mobile-footer-btn {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 19PX;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .btn-enquire {
            background: linear-gradient(135deg, var(--primary), #FF8C42);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-enquire:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .btn-call {
            background: linear-gradient(135deg, var(--success), #1e8449);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
        }

        .btn-call:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .mobile-footer-actions {
                display: flex;
            }

            body {
                padding-bottom: 80px;
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-search {
                margin-top: 2rem;
            }

            .stats-grid,
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .destinations-grid,
            .tours-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                gap: 1.5rem;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            nav ul.active {
                transform: translateX(0);
            }

            .mobile-toggle {
                display: flex;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .section-header h2 {
                font-size: 2.2rem;
            }

            .stats-grid,
            .destinations-grid,
            .tours-grid,
            .testimonials-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .cta-content h2 {
                font-size: 2rem;
            }
        } 
