
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f0f0f0; /* Fallback background color */
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
            backdrop-filter: blur(10px); /* Frosted glass effect */
            z-index: 100;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: background 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.9); /* Darker background when scrolled */
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }

        .navbar-brand {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            letter-spacing: 1px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 500;
            padding: 5px 0;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #ff6b6b;
            left: 0;
            bottom: 0;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #ff6b6b;
        }

        .hamburger-menu {
            display: none;
            font-size: 2rem;
            color: white;
            cursor: pointer;
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }

        .slide {
            flex: 0 0 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 8s ease;
            transform: scale(1.1);
        }

        .slide.active img {
            transform: scale(1);
        }

        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                45deg,
                rgba(0, 0, 0, 0.6) 0%,
                rgba(0, 0, 0, 0.2) 50%,
                rgba(0, 0, 0, 0.7) 100%
            );
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            z-index: 2;
        }

        .slide-title {
            font-size: 4.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
            letter-spacing: 3px;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .slide-subtitle {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            font-weight: 300;
            letter-spacing: 2px;
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
        }

        .slide-description {
            font-size: 1.3rem;
            max-width: 700px;
            line-height: 1.8;
            margin-bottom: 3rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
        }

        .explore-btn {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 15px 35px rgba(238, 90, 36, 0.4);
            transform: translateY(50px);
            opacity: 0;
        }

        .slide.active .slide-title,
        .slide.active .slide-subtitle,
        .slide.active .slide-description,
        .slide.active .explore-btn {
            transform: translateY(0);
            opacity: 1;
        }

        .slide.active .explore-btn {
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s;
        }

        .explore-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(238, 90, 36, 0.6);
            background: linear-gradient(45deg, #ee5a24, #ff6b6b);
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            backdrop-filter: blur(15px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: bold;
            user-select: none;
        }

        .nav-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .prev { left: 30px; }
        .next { right: 30px; }

        .slide-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            z-index: 10;
        }

        .indicator {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 2px solid rgba(255, 255, 255, 0.6);
        }

        .indicator.active {
            background: white;
            transform: scale(1.4);
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
        }

        /* Scroll Down Arrow */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2rem;
            cursor: pointer;
            animation: bounce 2s infinite;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .scroll-down:hover {
            transform: translateX(-50%) scale(1.2);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-20px) translateX(-50%); }
            60% { transform: translateY(-10px) translateX(-50%); }
        }

        /* Content Sections */
        .content-section {
            min-height: 100vh;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            color: white; 
        }

        /* SECTION BACKGROUNDS */
        .destinations {
            background: linear-gradient(rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%),
                        url('https://images.unsplash.com/photo-1475924156734-496f6cac6ec1?w=1920&h=1080&fit=crop'); /* Changed image */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .experiences {
            background: linear-gradient(rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%),
                        url('https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05?w=1920&h=1080&fit=crop'); /* Changed image */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .gallery {
            background: linear-gradient(rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%),
                        url('https://images.unsplash.com/photo-1501785888041-af3ba6f60060?w=1920&h=1080&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
         .about { /* "Why Choose Us" section */
            background: linear-gradient(rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%),
                        url('https://images.unsplash.com/photo-1447752875215-b2761acb3c5d?w=1920&h=1080&fit=crop'); /* Changed image */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .testimonials {
            background: linear-gradient(rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%);
                        
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .faq {
            background: linear-gradient(rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%);
                        
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .contact {
            background: linear-gradient(rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.5) 100%),
                        url('https://images.unsplash.com/photo-1419833173245-f59e1b93f9ee?w=1920&h=1080&fit=crop'); /* Changed image */
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }
       

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            transform: translateY(100px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative; 
            z-index: 2; 
        }

        .container.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .section-title {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 3rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
        }

        .section-content {
            font-size: 1.3rem;
            line-height: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); 
        }

        .cards-grid { 
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted for 4 cards */
            gap: 30px; 
            margin-top: 4rem;
        }
        /* Special grid for 3 cards in About Us */
        .about .cards-grid {
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        }


        .card { 
            background: rgba(255, 255, 255, 0.15); 
            backdrop-filter: blur(10px); 
            border-radius: 20px;
            padding: 30px; 
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.25);
            transform: translateY(50px);
            opacity: 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            color: #333; 
            display: flex; 
            flex-direction: column; 
        }
         .card h3, .card p { 
            color: #fefefe; 
        }
        .card p {
            flex-grow: 1; 
        }
         
        .testimonials .card h3, .testimonials .card p, .testimonials .card .author,
        .faq-item h3, .faq-item p, 
        .contact-form label, .contact-info h3, .contact-info ul li { 
             color: white; 
             text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }


        .card.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 0.25);
        }

        .card img {
            width: 100%; 
            height: 180px; 
            object-fit: cover;
            border-radius: 15px; 
            margin-bottom: 1.2rem; 
            border: 2px solid rgba(255, 255, 255, 0.5); 
        }

        .card h3 {
            font-size: 1.8rem; 
            margin-bottom: 1rem; 
            font-weight: bold;
        }

        .card p {
            font-size: 1rem; 
            line-height: 1.7; 
        }

        /* Unique Experiences Section - Zigzag Layout */
        .experiences-zigzag-layout {
            display: flex;
            flex-direction: column;
            gap: 50px; 
            margin-top: 4rem;
        }

        .experience-item {
            display: flex;
            align-items: center; 
            gap: 30px; 
            background: rgba(255, 255, 255, 0.1); 
            backdrop-filter: blur(8px);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden; 
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .experience-item.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .experience-item .experience-image {
            flex: 0 0 40%; 
            max-width: 40%;
        }

        .experience-item .experience-image img {
            width: 100%;
            height: 300px; 
            object-fit: cover;
            border-radius: 10px;
            display: block;
        }

        .experience-item .experience-content {
            flex: 1; 
            padding-left: 20px; 
        }
        
        .experience-item:nth-child(even) .experience-content {
            padding-left: 0;
            padding-right: 20px; 
        }


        .experience-item:nth-child(even) { 
            flex-direction: row-reverse; 
        }

        .experience-item .experience-content h3 {
            font-size: 2.2rem; 
            margin-bottom: 1rem; 
            font-weight: bold;
            color: white;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }

        .experience-item .experience-content p {
            font-size: 1.15rem; 
            line-height: 1.8;
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
        }


        /* Gallery specific styles */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 4rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .gallery-item.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease-in-out;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6); 
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease-in-out;
            padding: 20px;
            text-align: center;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .gallery-item-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .gallery-item-overlay p {
            font-size: 1rem;
        }

        /* Testimonial specific styles */
        .testimonial-card { 
            background: rgba(255, 255, 255, 0.15); 
            backdrop-filter: blur(10px);
        }
        .testimonial-card p, .testimonial-card .author, .testimonial-card h3 {
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }


        .testimonial-card.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 0.25);
        }

        .testimonial-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border: 3px solid white; 
        }

        /* FAQ specific styles */
        .faq-item {
            background: rgba(255, 255, 255, 0.15); 
            backdrop-filter: blur(10px);
            border-radius: 15px;
            margin-bottom: 20px;
            padding: 25px 30px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .faq-item.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .faq-item h3 { 
            font-size: 1.6rem;
            margin-bottom: 1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item h3::after {
            content: '+';
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active h3::after {
            transform: rotate(45deg);
        }

        .faq-item p { 
            font-size: 1.1rem;
            line-height: 1.8;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding-top 0.5s ease-out;
            opacity: 0;
        }

        .faq-item.active p {
            max-height: 200px; 
            opacity: 1;
            padding-top: 10px;
        }

        /* Contact form styles */
        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: flex-start;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.15); 
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px;
            max-width: 700px;
            flex: 1 1 450px; 
            border: 1px solid rgba(255, 255, 255, 0.25);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .contact-form.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .contact-form label { 
            display: block;
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .contact-form input,
        .contact-form textarea {
            width: calc(100% - 20px); 
            padding: 15px;
            margin-bottom: 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.1); 
            color: white; 
            font-size: 1.1rem;
            transition: border-color 0.3s ease, background 0.3s ease;
        }
         .contact-form input::placeholder,
         .contact-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.7); 
        }


        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #ff6b6b;
            background: rgba(255, 255, 255, 0.15);
            outline: none;
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-form button {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 20px rgba(238, 90, 36, 0.3);
            display: block;
            width: fit-content;
            margin: 0 auto;
        }

        .contact-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(238, 90, 36, 0.5);
            background: linear-gradient(45deg, #ee5a24, #ff6b6b);
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.15); 
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 50px;
            flex: 1 1 350px; 
            border: 1px solid rgba(255, 255, 255, 0.25);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transform: translateY(50px);
            opacity: 0;
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s; 
        }

        .contact-info.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .contact-info h3 { 
            font-size: 2.2rem;
            margin-bottom: 25px;
            font-weight: bold;
            text-align: center;
        }

        .contact-info ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-info ul li { 
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .contact-info ul li i {
            font-size: 1.8rem;
            margin-right: 20px;
            color: #ff6b6b; 
            width: 30px; 
            text-align: center;
        }

        .social-media-links {
            margin-top: 40px;
            margin-bottom: 30px; 
            text-align: center;
        }

        .social-media-links a {
            display: inline-block;
            color: white;
            font-size: 2.5rem;
            margin: 0 15px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .social-media-links a:hover {
            transform: scale(1.2);
            color: #ff6b6b;
        }

        .map-container {
            width: 100%;
            height: 250px; 
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }


        /* Parallax Background Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1; 
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.05); 
            border-radius: 50%;
            animation: float 8s ease-in-out infinite alternate; 
            backdrop-filter: blur(3px); 
        }

        .floating-element:nth-child(1) {
            width: 80px; height: 80px; top: 15%; left: 10%; animation-delay: 0s; animation-duration: 10s;
        }
        .floating-element:nth-child(2) {
            width: 120px; height: 120px; top: 65%; right: 12%; animation-delay: -2s; animation-duration: 12s;
        }
        .floating-element:nth-child(3) {
            width: 60px; height: 60px; top: 75%; left: 25%; animation-delay: -4s; animation-duration: 8s;
        }
        .floating-element:nth-child(4) {
            width: 100px; height: 100px; top: 30%; right: 25%; animation-delay: -1s; animation-duration: 9s;
        }
        .floating-element:nth-child(5) { 
            width: 50px; height: 50px; top: 50%; left: 40%; animation-delay: -3s; animation-duration: 7s;
        }


        @keyframes float {
            0% { transform: translateY(0px) translateX(0px) rotate(0deg) scale(1); opacity: 0.7; }
            50% { transform: translateY(-25px) translateX(15px) rotate(90deg) scale(1.1); opacity: 0.4; }
            100% { transform: translateY(0px) translateX(0px) rotate(180deg) scale(1); opacity: 0.7; }
        }
        
        /* Footer Credits */
        .footer-credits {
            text-align: center;
            padding: 40px 20px;
            background: rgba(0,0,0,0.8);
            color: #ccc;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .footer-credits p {
            margin-bottom: 10px;
        }
        .footer-credits a {
            color: #ff6b6b;
            text-decoration: none;
        }
        .footer-credits a:hover {
            text-decoration: underline;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 15px 20px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
                padding: 20px 0;
                z-index: 99;
                transition: transform 0.3s ease-in-out, max-height 0.3s ease-in-out;
                transform: translateY(-100%);
                max-height: 0;
                overflow: hidden;
            }
            .nav-links.active {
                display: flex;
                transform: translateY(0);
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }
            .nav-links li {
                text-align: center;
                margin: 10px 0;
            }
            .nav-links a {
                padding: 10px 0;
                display: block;
                font-size: 1.3rem;
            }
            .hamburger-menu {
                display: block;
            }
            .slide-title {
                font-size: 2.5rem;
            }
            .slide-subtitle {
                font-size: 1.3rem;
            }
            .slide-description {
                font-size: 1rem;
                max-width: 90%;
            }
            .explore-btn {
                padding: 15px 35px;
                font-size: 1rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .section-content {
                font-size: 1rem;
            }
            .nav-button {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            .prev { left: 15px; }
            .next { right: 15px; }
            .slide-indicators { bottom: 20px; gap: 15px;}
            .indicator { width: 10px; height: 10px; border-width: 1px;}

            .cards-grid, .about .cards-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .card {
                padding: 25px;
            }
            .card h3 {
                font-size: 1.6rem;
            }
            .card p {
                font-size: 1rem;
            }
            .card img {
                height: 160px;
            }

            /* For Unique Experiences */
            .experiences-zigzag-layout {
                gap: 25px;
            }
            .experience-item, .experience-item:nth-child(even) {
                flex-direction: column;
                padding: 20px;
            }
            .experience-item .experience-image {
                flex: 0 0 auto;
                width: 100%;
                max-width: 100%;
                margin-bottom: 20px;
            }
            .experience-item .experience-image img {
                max-height: 220px;
            }
            .experience-item .experience-content {
                flex: 1;
                text-align: center;
                padding-left: 0;
                padding-right: 0;
            }
            .experience-item .experience-content h3 {
                font-size: 1.8rem;
            }
            .experience-item .experience-content p {
                font-size: 1rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .testimonial-card, .faq-item, .contact-form, .contact-info {
                padding: 25px;
            }

            .contact-content {
                flex-direction: column;
                gap: 30px;
            }
            .contact-form, .contact-info {
                padding: 30px;
                flex: 1 1 100%;
            }
            .contact-form input, .contact-form textarea {
                width: calc(100% - 10px);
            }
            .contact-info ul li {
                font-size: 1rem;
            }
            .contact-info ul li i {
                font-size: 1.3rem;
                margin-right: 10px;
            }
            .social-media-links a {
                font-size: 1.8rem;
                margin: 0 8px;
            }
            .map-container {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .slide-title {
                font-size: 2rem;
            }
            .slide-subtitle {
                font-size: 1.1rem;
            }
            .explore-btn {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .contact-form, .contact-info, .card, .testimonial-card, .faq-item, .experience-item {
                padding: 20px;
            }
            .experience-item .experience-image img {
                max-height: 180px;
            }
            .experience-item .experience-content h3 {
                font-size: 1.6rem;
            }
            .card img {
                height: 150px;
            }
        }