/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header.transparent {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.header-content {
    width: 100%;
    margin: 0;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: nowrap;
}

/* Mobile header layout */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
        justify-content: space-between;
        gap: 20px;
    }
    
    .center-nav {
        position: relative;
        order: 3;
        left: auto;
        transform: none;
        display: flex;
        flex: 1;
        justify-content: flex-end;
        align-items: center;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .social-icons {
        display: none;
    }
}

.logo {
    text-decoration: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}


/* Navigation Styles */
.center-nav {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d4af37;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1002;
    min-width: 48px;
    min-height: 48px;
    justify-content: center;
    align-items: center;
    transform: scale(1);
    pointer-events: auto;
    user-select: none;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    transform-origin: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle.active {
    background: rgba(212, 175, 55, 0.5);
    border-color: #d4af37;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    animation: pulse 2s infinite;
}

.mobile-menu-toggle.active span {
    background: #d4af37;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.6);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.6);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(30px) scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    }
    50% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.8), 0 0 0 10px rgba(212, 175, 55, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    }
}

/* Book Your Stay Button */
/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    z-index: 10;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #d4af37;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Hero Background Images */
.hero-bg-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Fix for mobile devices - remove fixed attachment */
@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    
    /* Ensure hero section has proper height on mobile */
    .hero-section {
        min-height: 100vh;
        height: 100vh;
    }
    
    /* Optimize background images for mobile */
    .hero-bg-images {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
}

/* Additional fixes for smaller mobile screens */
@media (max-width: 480px) {
    .hero-bg {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        /* Ensure images are properly sized on small screens */
        min-height: 100vh;
    }
    
    .hero-section {
        min-height: 100vh;
        height: 100vh;
        overflow: hidden;
    }
    
    .hero-bg-images {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
}

.hero-bg.active {
    opacity: 1;
}

/* Image Overlay */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    bottom: 120px;
    right: 2rem;
    display: flex;
    gap: 1rem;
    pointer-events: none;
    z-index: 5;
}

.carousel-nav button {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    pointer-events: auto;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.carousel-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}


/* Hero Content */
.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #d4af37;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    line-height: 1.2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    line-height: 1.1;
    color: #fff;
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0;
}

.cta-button {
    display: inline-block;
    background: #d4af37;
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.cta-button:hover {
    background: transparent;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Review Widget */
.review-widget {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: 95%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 30px;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.aggregate-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 200px;
}

.main-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.rating-details {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.rating-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.review-count {
    font-size: 0.85rem;
    color: rgba(51, 51, 51, 0.7);
}

.platform-ratings {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.platform-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.platform-name {
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.6);
    font-weight: 500;
}

.platform-score {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.rating-separator {
    width: 1px;
    height: 40px;
    background: rgba(51, 51, 51, 0.2);
}

.book-now-button {
    background: #000;
    color: white;
    border: 1px solid #000;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 140px;
}

.book-now-button:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design - Enhanced for All Devices */

/* Extra Large Screens (1400px and above) */
@media (min-width: 1400px) {
    .header-content {
        padding: 0 80px;
    }
    
    .immerse-container,
    .about-container,
    .exciting-container,
    .adventures-container,
    .faq-container {
        padding: 0 80px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .immerse-title {
        font-size: 3.8rem;
    }
    
    .about-title {
        font-size: 3.2rem;
    }
    
    .exciting-title {
        font-size: 2.8rem;
    }
    
    .adventures-title {
        font-size: 3.2rem;
    }
}

/* Large Desktops (1201px - 1399px) */
@media (min-width: 1201px) and (max-width: 1399px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    .social-icons {
        display: flex;
    }
    
    .nav-menu {
        display: flex;
    }
    
    .header-content {
        padding: 0 60px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .immerse-title {
        font-size: 3.5rem;
    }
    
    .about-title {
        font-size: 2.9rem;
    }
    
    .exciting-title {
        font-size: 2.6rem;
    }
    
    .adventures-title {
        font-size: 2.9rem;
    }
}

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) and (min-width: 769px) {
    .header-content {
        padding: 0 40px;
    }
    
    .nav-menu {
        gap: 1.8rem;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .social-icons {
        display: flex;
    }
    
    .hero-content {
        max-width: 800px;
        margin-top: 100px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .immerse-container,
    .about-container,
    .exciting-container,
    .adventures-container,
    .faq-container {
        padding: 0 30px;
    }
    
    .review-widget {
        max-width: 1000px;
        gap: 25px;
    }
    
    .immerse-content,
    .about-content,
    .exciting-content,
    .adventures-content {
        gap: 40px;
    }
    
    .immerse-title {
        font-size: 3rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .exciting-title {
        font-size: 2.3rem;
    }
    
    .adventures-title {
        font-size: 2.5rem;
    }
    
    .adventures-grid {
        height: 450px;
        gap: 15px;
    }
}

/* Tablets (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .header-content {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .social-icons {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .immerse-content,
    .about-content,
    .exciting-content,
    .adventures-content {
        gap: 30px;
    }
    
    .immerse-title {
        font-size: 2.8rem;
    }
    
    .about-title {
        font-size: 2.4rem;
    }
    
    .exciting-title {
        font-size: 2.2rem;
    }
    
    .adventures-title {
        font-size: 2.4rem;
    }
    
    .adventures-grid {
        height: 450px;
        gap: 15px;
    }
    
    .review-widget {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        width: 95%;
        bottom: 25px;
    }
    
    .platform-ratings {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .immerse-container,
    .about-container,
    .exciting-container,
    .adventures-container,
    .faq-container {
        padding: 0 25px;
    }
    
    .image-collage {
        height: 600px;
    }
    
    .profile-video {
        height: 450px;
    }
    
    .image-gallery {
        height: 350px;
    }
}

/* Mobile Landscape and Small Tablets (768px and below) */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
        max-width: 100%;
        height: 60px;
        justify-content: center;
    }
    
    .logo-image {
        height: 45px;
    }
    
    /* Hide navigation completely on mobile */
    .nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .center-nav {
        display: none !important;
    }
    
    .social-icons {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
    
    .carousel-nav {
        bottom: 120px;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .carousel-nav button {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .hero-content {
        margin-top: -40px;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .review-widget {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        width: 95%;
        bottom: 20px;
    }
    
    .aggregate-rating {
        justify-content: center;
        min-width: auto;
    }
    
    .platform-ratings {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .rating-separator {
        display: none;
    }
    
    .book-now-button {
        width: 100%;
        min-width: auto;
    }
    
    /* Immerse Section Mobile */
    .immerse-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        justify-content: center;
        align-items: center;
        min-height: 80vh;
        padding: 20px 0;
    }
    
    .content-left {
        padding-left: 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .content-left::before {
        display: none;
    }
    
    .content-wrapper {
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    
    .immerse-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .immerse-logo-image {
        height: 200px;
        max-width: 100%;
        width: auto;
    }
    
    .immerse-title {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .immerse-subtitle {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .immerse-description {
        text-align: center;
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .image-collage {
        display: none;
    }
    
    .content-right {
        display: none;
    }
    
    
    /* About Section Mobile */
    .about-content {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .about-video {
        max-width: 100%;
        order: 1;
        justify-content: center;
        padding-right: 0;
    }
    
    .profile-video {
        height: 350px;
        max-width: 500px;
    }
    
    .about-text {
        max-width: 100%;
        text-align: center;
        padding-left: 0;
        order: 2;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-features {
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    /* Exciting Happenings Mobile */
    .exciting-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .exciting-left {
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .exciting-left::after {
        display: none;
    }
    
    .exciting-nav {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .nav-item::after {
        bottom: -10px;
    }
    
    .nav-description {
        padding: 0 15px;
    }
    
    .nav-description.active {
        margin-top: 10px;
        padding: 0 15px;
    }
    
    .nav-description p {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .exciting-title {
        font-size: 1.8rem;
    }
    
    .image-gallery {
        height: 300px;
    }
    
    .image-set {
        flex-direction: column;
        gap: 15px;
    }
    
    .image-item {
        height: 50%;
    }
    
    /* Show only one image item on mobile for better view */
    .image-item:last-child {
        display: none;
    }
    
    .image-item:first-child {
        height: 100%;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }
    
/* Adventures Section Mobile */
.adventures-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 0 20px;
}

.adventures-right {
    padding-left: 0;
    order: 2;
}

.adventures-left {
    order: 1;
}

.adventures-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.adventures-subtitle {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #666;
}

.adventures-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.adventures-grid {
    height: 280px;
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
}

.adventure-slider-container {
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.adventure-features {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    margin-top: 25px !important;
    padding: 0 20px !important;
    border-top: 1px solid #e5e5e5 !important;
}

.adventure-feature {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
}

/* Left column items */
.adventure-feature:nth-child(odd) {
    border-right: 1px solid #e5e5e5;
    padding-right: 20px;
}

/* Right column items */
.adventure-feature:nth-child(even) {
    padding-left: 20px;
}

/* Remove bottom border from last row */
.adventure-feature:nth-child(5),
.adventure-feature:nth-child(6) {
    border-bottom: none;
}

.adventure-feature:hover {
    background: rgba(212, 175, 55, 0.02);
}

.adventure-feature i {
    font-size: 1.2rem;
    color: #d4af37;
    width: 24px;
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adventure-feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    flex: 1;
    text-align: left;
}
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 20px 0 !important;
        min-height: auto !important;
    }
    
    .faq-container {
        padding: 0 10px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .faq-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
        text-align: center;
        max-width: 100% !important;
        width: 100% !important;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .faq-left {
        padding-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 5px !important;
        text-align: center;
        margin: 0 !important;
    }
    
    .faq-right {
        display: none;
    }
    
    .faq-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center;
    }
    
    .faq-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .faq-list {
        gap: 15px;
        max-width: 100%;
        width: 100%;
        text-align: left;
    }
    
    .faq-item {
        padding-bottom: 10px;
        margin: 0 5px;
    }
    
    .faq-question {
        padding: 10px 0;
        text-align: left;
    }
    
    .faq-question span {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        margin-top: 5px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: left;
    }
    
    .faq-image-grid {
        display: none;
    }
    
    /* Force full width usage for FAQ on mobile */
    .faq-section * {
        box-sizing: border-box;
    }
    
    .faq-section,
    .faq-container,
    .faq-content,
    .faq-left,
    .faq-wrapper {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Force hide FAQ images on all mobile devices */
    .faq-right,
    .faq-image-grid {
        display: none !important;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-engagement {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Medium Mobile Devices (481px - 600px) */
@media (max-width: 600px) and (min-width: 481px) {
    .header-content {
        padding: 0 18px;
        height: 65px;
    }
    
    .logo-image {
        height: 42px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.8px;
    }
    
    .hero-content {
        margin-top: -35px;
        padding: 0 12px;
    }
    
    .review-widget {
        width: 96%;
        bottom: 15px;
        padding: 18px;
        gap: 14px;
    }
    
    .rating-score {
        font-size: 1.5rem;
    }
    
    .rating-text {
        font-size: 0.85rem;
    }
    
    .review-count {
        font-size: 0.8rem;
    }
    
    .platform-ratings {
        gap: 12px;
    }
    
    .platform-name {
        font-size: 0.7rem;
    }
    
    .platform-score {
        font-size: 0.8rem;
    }
    
    .book-now-button {
        padding: 11px 20px;
        font-size: 0.85rem;
    }
    
    .immerse-container,
    .about-container,
    .exciting-container,
    .adventures-container,
    .faq-container {
        padding: 0 18px;
    }
    
    .immerse-logo-image {
        height: 180px;
    }
    
    .immerse-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 1.9rem;
    }
    
    .exciting-title {
        font-size: 1.7rem;
    }
    
    .adventures-title {
        font-size: 1.9rem;
    }
    
    .image-collage {
        height: 350px;
    }
    
    
    .profile-video {
        height: 300px;
    }
    
    .image-gallery {
        height: 280px;
    }
    
    .adventures-grid {
        height: 280px;
        gap: 12px;
    }
    
    .adventure-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
        margin-top: 22px !important;
        padding: 0 16px !important;
        border-top: 1px solid #e5e5e5 !important;
    }
    
    .adventure-feature {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 17px 0;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .adventure-feature:nth-child(odd) {
        border-right: 1px solid #e5e5e5;
        padding-right: 16px;
    }
    
    .adventure-feature:nth-child(even) {
        padding-left: 16px;
    }
    
    .adventure-feature:nth-child(5),
    .adventure-feature:nth-child(6) {
        border-bottom: none;
    }
    
    .adventure-feature i {
        font-size: 1.05rem;
        color: #d4af37;
        width: 21px;
        text-align: center;
        margin-right: 11px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .adventure-feature span {
        font-size: 0.87rem;
        line-height: 1.3;
        flex: 1;
    }
    
    .faq-image-grid {
        display: none;
    }
    
    .faq-right {
        display: none;
    }
}

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
    .header-content {
        height: 60px;
        padding: 0 15px;
        max-width: 100%;
        justify-content: center;
    }
    
    .logo-image {
        height: 40px;
    }
    
    /* Hide navigation completely on mobile */
    .nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .center-nav {
        display: none !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 0 10px;
        text-align: center;
        margin-top: -30px;
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-nav {
        bottom: 100px;
        right: 0.5rem;
        gap: 0.3rem;
    }
    
    .carousel-nav button {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
    
    .review-widget {
        width: 98%;
        bottom: 10px;
        padding: 15px;
        gap: 12px;
    }
    
    .rating-score {
        font-size: 1.3rem;
    }
    
    .rating-text {
        font-size: 0.8rem;
    }
    
    .review-count {
        font-size: 0.75rem;
    }
    
    .platform-ratings {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .platform-name {
        font-size: 0.6rem;
    }
    
    .platform-score {
        font-size: 0.7rem;
    }
    
    .book-now-button {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    /* Container padding for mobile */
    .immerse-container,
    .about-container,
    .exciting-container,
    .adventures-container,
    .faq-container {
        padding: 0 15px;
    }
    
    /* Immerse Section Mobile Portrait */
    .immerse-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        justify-content: center;
        align-items: center;
        min-height: 70vh;
        padding: 15px 0;
    }
    
    .content-left {
        padding-left: 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .content-left::before {
        display: none;
    }
    
    .content-wrapper {
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 15px;
    }
    
    .immerse-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 25px;
    }
    
    .immerse-logo-image {
        height: 150px;
        max-width: 100%;
        width: auto;
    }
    
    .immerse-title {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .immerse-subtitle {
        font-size: 0.8rem;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .immerse-description {
        text-align: center;
        font-size: 0.9rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .image-collage {
        display: none;
    }
    
    .content-right {
        display: none;
    }
    
    /* Hide all image containers on smaller screens */
    .image-container-1,
    .image-container-2,
    .image-container-3,
    .image-container-4 {
        display: none;
    }
    
    /* About Section Mobile Portrait */
    .about-experience-section {
        padding: 40px 0;
    }
    
    .about-content {
        gap: 20px;
    }
    
    .profile-video {
        height: 250px;
        max-width: 100%;
    }
    
    .about-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .about-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .feature-item {
        padding: 10px 0;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    /* Exciting Happenings Mobile Portrait */
    .exciting-happenings-section {
        padding: 40px 0;
    }
    
    .exciting-content {
        gap: 20px;
    }
    
    .exciting-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-item span {
        font-size: 0.8rem;
    }
    
    .exciting-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .exciting-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .image-gallery {
        height: 250px;
    }
    
    /* Show only one image item on mobile portrait for better view */
    .image-item:last-child {
        display: none;
    }
    
    .image-item:first-child {
        height: 100%;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }
    
    /* Adventures Section Mobile Portrait */
    .adventures-section {
        padding: 40px 0;
    }
    
    .adventures-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .adventures-title {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .adventures-subtitle {
        font-size: 0.8rem;
        margin-bottom: 6px;
        color: #666;
    }
    
    .adventures-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #555;
    }
    
    .adventures-grid {
        height: 220px;
        gap: 8px;
        max-width: 100%;
    }
    
    .adventure-slider-container {
        border-radius: 6px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    }
    
    .adventure-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
        margin-top: 20px !important;
        padding: 0 15px !important;
        border-top: 1px solid #e5e5e5 !important;
    }
    
    .adventure-feature {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 18px 0;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .adventure-feature:nth-child(odd) {
        border-right: 1px solid #e5e5e5;
        padding-right: 15px;
    }
    
    .adventure-feature:nth-child(even) {
        padding-left: 15px;
    }
    
    .adventure-feature:nth-child(5),
    .adventure-feature:nth-child(6) {
        border-bottom: none;
    }
    
    .adventure-feature i {
        font-size: 1.1rem;
        color: #d4af37;
        width: 22px;
        text-align: center;
        margin-right: 12px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .adventure-feature span {
        font-size: 0.9rem;
        line-height: 1.3;
        flex: 1;
    }
    
    /* FAQ Section Mobile Portrait */
    .faq-section {
        padding: 15px 0 !important;
        min-height: auto !important;
    }
    
    .faq-container {
        padding: 0 8px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .faq-content {
        gap: 15px;
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        min-height: auto;
    }
    
    .faq-left {
        max-width: 100%;
        width: 100%;
        padding-right: 0;
        padding: 0 3px;
        text-align: center;
    }
    
    .faq-right {
        display: none;
    }
    
    .faq-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .faq-title {
        font-size: 1.2rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 15px;
        padding: 0 8px;
    }
    
    .faq-list {
        gap: 12px;
        max-width: 100%;
        width: 100%;
        text-align: left;
    }
    
    .faq-item {
        padding-bottom: 8px;
        margin: 0 3px;
    }
    
    .faq-question {
        padding: 8px 0;
        text-align: left;
    }
    
    .faq-question span {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        margin-top: 3px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: left;
    }
    
    .faq-image-grid {
        display: none;
    }
    
    /* Footer Mobile Portrait */
    .footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-logo {
        max-width: 120px;
    }
    
    .column-title {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .footer-engagement {
        gap: 15px;
        padding: 20px 0;
    }
    
    .social-media {
        gap: 15px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom-content {
        gap: 10px;
    }
    
    .legal-links {
        gap: 8px;
    }
    
    .legal-links a {
        font-size: 0.7rem;
    }
    
    .copyright p,
    .developer-credit p {
        font-size: 0.7rem;
    }
}

/* Small Mobile Devices (321px - 400px) */
@media (max-width: 400px) and (min-width: 321px) {
    .header-content {
        padding: 0 12px;
        height: 58px;
    }
    
    .logo-image {
        height: 38px;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .hero-content {
        margin-top: -25px;
        padding: 0 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .review-widget {
        width: 97%;
        bottom: 12px;
        padding: 12px;
        gap: 10px;
    }
    
    .rating-score {
        font-size: 1.2rem;
    }
    
    .rating-text {
        font-size: 0.75rem;
    }
    
    .review-count {
        font-size: 0.7rem;
    }
    
    .platform-ratings {
        gap: 8px;
    }
    
    .platform-name {
        font-size: 0.6rem;
    }
    
    .platform-score {
        font-size: 0.7rem;
    }
    
    .book-now-button {
        padding: 9px 16px;
        font-size: 0.8rem;
    }
    
    .immerse-container,
    .about-container,
    .exciting-container,
    .adventures-container,
    .faq-container {
        padding: 0 12px;
    }
    
    .immerse-logo-image {
        height: 140px;
    }
    
    .immerse-title {
        font-size: 1.7rem;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .exciting-title {
        font-size: 1.4rem;
    }
    
    .adventures-title {
        font-size: 1.6rem;
    }
    
    .image-collage {
        height: 280px;
    }
    
    
    .profile-video {
        height: 250px;
    }
    
    .image-gallery {
        height: 240px;
    }
    
    .adventures-grid {
        height: 220px;
        gap: 8px;
    }
    
    .faq-image-grid {
        display: none;
    }
    
    .faq-right {
        display: none;
    }
}

/* Very Small Screens (320px and below) */
@media (max-width: 320px) {
    .header-content {
        padding: 0 10px;
        justify-content: center;
    }
    
    /* Hide navigation completely on very small screens */
    .nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .center-nav {
        display: none !important;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .review-widget {
        width: 99%;
        padding: 10px;
    }
    
    .rating-score {
        font-size: 1.1rem;
    }
    
    .platform-ratings {
        gap: 5px;
    }
    
    .platform-name {
        font-size: 0.55rem;
    }
    
    .platform-score {
        font-size: 0.65rem;
    }
    
    .immerse-container,
    .about-container,
    .exciting-container,
    .adventures-container,
    .faq-container {
        padding: 0 10px;
    }
    
    .immerse-content {
        min-height: 60vh;
        padding: 10px 0;
    }
    
    .content-wrapper {
        padding: 0 10px;
    }
    
    .immerse-logo {
        margin-bottom: 20px;
    }
    
    .immerse-logo-image {
        height: 120px;
        max-width: 100%;
        width: auto;
    }
    
    .immerse-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .immerse-subtitle {
        margin-bottom: 8px;
    }
    
    .about-title {
        font-size: 1.4rem;
    }
    
    .exciting-title {
        font-size: 1.3rem;
    }
    
    .adventures-title {
        font-size: 1.3rem;
    }
    
    .faq-section {
        padding: 10px 0 !important;
        min-height: auto !important;
    }
    
    .faq-container {
        padding: 0 5px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .faq-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
        text-align: center;
        padding: 0 5px;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        gap: 10px;
        min-height: auto;
    }
    
    .faq-left {
        max-width: 100%;
        width: 100%;
        padding-right: 0;
        padding: 0 2px;
        text-align: center;
    }
    
    .faq-right {
        display: none;
    }
    
    .faq-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .faq-list {
        gap: 10px;
        max-width: 100%;
        width: 100%;
        text-align: left;
    }
    
    .faq-item {
        padding-bottom: 6px;
        margin: 0 2px;
    }
    
    .faq-question {
        padding: 6px 0;
        text-align: left;
    }
    
    .faq-question span {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .faq-answer {
        margin-top: 2px;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
        line-height: 1.3;
        text-align: left;
    }
    
    .faq-image-grid {
        display: none;
    }
    
    .image-collage {
        display: none;
    }
    
    .content-right {
        display: none;
    }
    
    /* Hide all image containers on very small screens */
    .image-container-1,
    .image-container-2,
    .image-container-3,
    .image-container-4 {
        display: none;
    }
    
    .adventures-grid {
        height: 180px;
        gap: 6px;
        max-width: 100%;
    }
    
    .adventure-slider-container {
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }
    
    .adventures-content {
        gap: 25px;
        padding: 0 10px;
    }
    
    .adventures-title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .adventures-subtitle {
        font-size: 0.75rem;
        margin-bottom: 5px;
        color: #666;
    }
    
    .adventures-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 18px;
        color: #555;
    }
    
    .adventure-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
        margin-top: 18px !important;
        padding: 0 12px !important;
        border-top: 1px solid #e5e5e5 !important;
    }
    
    .adventure-feature {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 16px 0;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .adventure-feature:nth-child(odd) {
        border-right: 1px solid #e5e5e5;
        padding-right: 12px;
    }
    
    .adventure-feature:nth-child(even) {
        padding-left: 12px;
    }
    
    .adventure-feature:nth-child(5),
    .adventure-feature:nth-child(6) {
        border-bottom: none;
    }
    
    .adventure-feature i {
        font-size: 1rem;
        color: #d4af37;
        width: 20px;
        text-align: center;
        margin-right: 10px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .adventure-feature span {
        font-size: 0.85rem;
        line-height: 1.3;
        flex: 1;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
    }
    
    .hero-content {
        margin-top: -80px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .review-widget {
        bottom: 15px;
        padding: 15px 20px;
        flex-direction: row;
        gap: 20px;
    }
    
    .platform-ratings {
        flex-wrap: nowrap;
        gap: 15px;
    }
    
    .rating-separator {
        display: block;
    }
    
    /* Hide navigation completely on mobile landscape */
    .nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
    
    .center-nav {
        display: none !important;
    }
    
    .immerse-content,
    .about-content,
    .exciting-content,
    .adventures-content {
        gap: 20px;
    }
    
    .image-collage {
        display: none;
    }
    
    .content-right {
        display: none;
    }
    
    .immerse-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-content: center;
        align-items: center;
        min-height: 70vh;
        padding: 15px 0;
    }
    
    .content-left {
        padding-left: 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .content-wrapper {
        max-width: 100%;
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }
    
    .immerse-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 25px;
    }
    
    .immerse-logo-image {
        max-width: 100%;
        height: auto;
    }
    
    
    .profile-video {
        height: 400px;
    }
    
    .image-gallery {
        height: 350px;
    }
    
    .adventures-grid {
        height: 350px;
        gap: 12px;
        max-width: 100%;
    }
    
    .adventure-slider-container {
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .adventures-content {
        gap: 35px;
        padding: 0 20px;
    }
    
    .adventures-title {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    
    .adventures-subtitle {
        font-size: 0.85rem;
        margin-bottom: 7px;
        color: #666;
    }
    
    .adventures-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 22px;
        color: #555;
    }
    
    .adventure-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
        margin-top: 22px !important;
        padding: 0 18px !important;
        border-top: 1px solid #e5e5e5 !important;
    }
    
    .adventure-feature {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 19px 0;
        border-bottom: 1px solid #e5e5e5;
    }
    
    .adventure-feature:nth-child(odd) {
        border-right: 1px solid #e5e5e5;
        padding-right: 18px;
    }
    
    .adventure-feature:nth-child(even) {
        padding-left: 18px;
    }
    
    .adventure-feature:nth-child(5),
    .adventure-feature:nth-child(6) {
        border-bottom: none;
    }
    
    .adventure-feature i {
        font-size: 1.15rem;
        color: #d4af37;
        width: 23px;
        text-align: center;
        margin-right: 13px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .adventure-feature span {
        font-size: 0.92rem;
        line-height: 1.35;
        flex: 1;
    }
    
    .faq-section {
        padding: 15px 0 !important;
        min-height: auto !important;
    }
    
    .faq-container {
        padding: 0 12px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        gap: 18px;
        min-height: auto;
    }
    
    .faq-left {
        max-width: 100%;
        width: 100%;
        padding-right: 0;
        padding: 0 6px;
        text-align: center;
    }
    
    .faq-right {
        display: none;
    }
    
    .faq-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .faq-title {
        margin-bottom: 20px;
        text-align: center;
        padding: 0 12px;
        font-size: 1.3rem;
    }
    
    .faq-list {
        gap: 15px;
        max-width: 100%;
        width: 100%;
        text-align: left;
    }
    
    .faq-item {
        padding-bottom: 12px;
        margin: 0 6px;
    }
    
    .faq-question {
        padding: 10px 0;
        text-align: left;
    }
    
    .faq-question span {
        font-size: 0.92rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        margin-top: 6px;
    }
    
    .faq-answer p {
        font-size: 0.88rem;
        line-height: 1.4;
        text-align: left;
    }
    
    .faq-image-grid {
        display: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image,
    .immerse-logo-image,
    .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a,
    .book-now-button,
    .carousel-nav button,
    .slider-btn,
    .filter-btn,
    .gallery-close-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Ensure background images work properly on touch devices */
    .hero-bg {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    
    .hero-bg-images {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    
    .carousel-nav button {
        width: 44px;
        height: 44px;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
    }
    
    .nav-menu a {
        padding: 20px 40px;
        min-height: 60px;
    }
    
    .book-now-button {
        padding: 12px 24px;
    }
    
    .mobile-menu-toggle {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        pointer-events: auto;
        user-select: none;
        cursor: pointer;
    }
    
    .mobile-menu-toggle span {
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    }
    
    .mobile-menu-toggle.active span {
        box-shadow: 0 2px 4px rgba(212, 175, 55, 0.6);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        box-shadow: 0 2px 4px rgba(212, 175, 55, 0.6);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        box-shadow: 0 2px 4px rgba(212, 175, 55, 0.6);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .mobile-menu-toggle.active {
        background: rgba(212, 175, 55, 0.5);
        border-color: #d4af37;
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        transform: scale(1.05);
        animation: pulse 2s infinite;
    }
    
    /* Remove hover effects on touch devices */
    .image-container-1:hover,
    .image-container-2:hover,
    .image-container-3:hover,
    .image-container-4:hover,
    .image-item:hover,
    .adventure-slider-container:hover,
    .grid-item:hover {
        transform: none;
        box-shadow: inherit;
    }
    
    .image-container-1:hover .collage-image,
    .image-container-2:hover .collage-image,
    .image-container-3:hover .collage-image,
    .image-container-4:hover .collage-image,
    .image-item:hover .gallery-image,
    .image-item:hover .gallery-video,
    .grid-item:hover .grid-image {
        transform: none;
    }
    
    /* Improve touch targets for mobile */
    .faq-question {
        min-height: 50px;
        padding: 15px 0;
    }
    
    .nav-item {
        min-height: 50px;
        padding: 15px 0;
    }
    
    .feature-item,
    .adventure-feature {
        min-height: 50px;
        padding: 15px 0;
    }
    
    /* Better spacing for touch devices */
    .immerse-content,
    .about-content,
    .exciting-content,
    .adventures-content,
    .faq-content {
        gap: 25px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-engagement {
        gap: 20px;
        padding: 25px 0;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg {
        transition: none;
    }
    
    .sliding-images .gallery-image {
        transition: none;
    }
    
    .adventure-slide {
        transition: none;
    }
}

/* Immerse Yourself Section */
.immerse-section {
    background: #fff;
    padding: 40px 0 20px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}


.immerse-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.immerse-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    align-items: center;
    min-height: 600px;
}

.content-left {
    position: relative;
    padding-left: 20px;
}

.content-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

/* Hide the vertical line on mobile devices */
/* Tablet breakpoint - hide all image containers and adjust layout */
@media (max-width: 1024px) and (min-width: 769px) {
    .image-container-1,
    .image-container-2,
    .image-container-3,
    .image-container-4 {
        display: none;
    }
    
    .content-right {
        display: none;
    }
    
    .immerse-content {
        grid-template-columns: 1fr;
        text-align: center;
        justify-content: center;
        align-items: center;
        min-height: 80vh;
    }
    
    .content-left {
        max-width: 100%;
        padding-left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .content-wrapper {
        max-width: 800px;
        width: 100%;
        text-align: center;
    }
    
    .immerse-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .immerse-logo-image {
        max-width: 100%;
        height: auto;
    }
    
    /* FAQ Section Tablet */
    .faq-section {
        padding: 25px 0 !important;
        min-height: auto !important;
    }
    
    .faq-container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        gap: 25px;
        min-height: auto;
    }
    
    .faq-left {
        max-width: 100%;
        width: 100%;
        padding-right: 0;
        padding: 0 8px;
        text-align: center;
    }
    
    .faq-right {
        display: none;
    }
    
    .faq-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .faq-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
        text-align: center;
        padding: 0 15px;
    }
    
    .faq-list {
        gap: 20px;
        max-width: 100%;
        width: 100%;
        text-align: left;
    }
    
    .faq-item {
        padding-bottom: 15px;
        margin: 0 8px;
    }
    
    .faq-question {
        padding: 12px 0;
        text-align: left;
    }
    
    .faq-question span {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        margin-top: 8px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: left;
    }
    
    .faq-image-grid {
        display: none;
    }
}

@media (max-width: 768px) {
    .content-left::before {
        display: none !important;
    }
}

.content-wrapper {
    max-width: 500px;
}

.immerse-logo {
    margin-bottom: 30px;
    text-align: center;
}

.immerse-logo-image {
    height: 250px;
    width: auto;
    max-width: 1000px;
    object-fit: contain;
}

.immerse-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.immerse-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.title-indent {
    display: block;
    margin-left: 20px;
}

.immerse-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin: 0;
    margin-top: -30px;
}

.highlight {
    color: #6b73ff;
    font-weight: 500;
}

.content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-collage {
    position: relative;
    width: 100%;
    height: 700px;
    max-width: 600px;
}

/* Static Image Container Styles */
.image-container-1 {
    position: absolute;
    width: 47%;
    height: 47%;
    top: 2%;
    left: 2%;
    z-index: 4;
    overflow: hidden;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.image-container-2 {
    position: absolute;
    width: 47%;
    height: 47%;
    top: 2%;
    right: 2%;
    z-index: 3;
    overflow: hidden;
    border-radius: 70% 30% 40% 60% / 50% 40% 60% 30%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.image-container-3 {
    position: absolute;
    width: 47%;
    height: 47%;
    bottom: 2%;
    left: 2%;
    z-index: 2;
    overflow: hidden;
    border-radius: 50% 50% 30% 70% / 40% 60% 70% 30%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.image-container-4 {
    position: absolute;
    width: 47%;
    height: 47%;
    bottom: 2%;
    right: 2%;
    z-index: 1;
    overflow: hidden;
    border-radius: 40% 60% 70% 30% / 70% 40% 30% 60%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.image-container-1:hover,
.image-container-2:hover,
.image-container-3:hover,
.image-container-4:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.collage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container-1:hover .collage-image,
.image-container-2:hover .collage-image,
.image-container-3:hover .collage-image,
.image-container-4:hover .collage-image {
    transform: scale(1.05);
}








.image-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.collage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    border-radius: inherit;
}

.image-container:hover .collage-image {
    transform: scale(1.05);
}

/* About Experience Section */
.about-experience-section {
    background: #fff;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 70px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 600px;
    gap: 5px;
}

.about-video {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-right: 5px;
}

.profile-video {
    width: 100%;
    max-width: 650px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-video:-webkit-full-screen {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.profile-video:-moz-full-screen {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.profile-video:fullscreen {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
}

.about-text {
    flex: 1;
    max-width: 50%;
    text-align: left;
    padding-left: 20px;
}

.about-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.about-title {
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.about-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    font-family: 'Arial', sans-serif;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    padding-left: 10px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
}

.feature-item i {
    font-size: 1.2rem;
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    font-family: 'Arial', sans-serif;
}

/* Responsive Design for About Experience Section */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
    
    .about-video {
        max-width: 100%;
        order: 1;
        justify-content: center;
        padding-right: 0;
    }
    
    .profile-video {
        height: 450px;
        max-width: 500px;
    }
    
    .about-text {
        max-width: 100%;
        text-align: center;
        padding-left: 0;
        order: 2;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-features {
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-experience-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-content {
        gap: 10px;
    }
    
    .profile-video {
        height: 300px;
        max-width: 100%;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
}

/* Additional Content Section */
section {
    scroll-behavior: smooth;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Loading animation for better UX */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating animation for hero section */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}


.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

/* Focus styles for accessibility - removed yellow outline */
button:focus,
a:focus {
    outline: none;
}

/* Exciting Happenings Section */
.exciting-happenings-section {
    background: #fff;
    padding: 40px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 70px;
}

.exciting-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.exciting-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    min-height: 600px;
}

.exciting-left {
    position: relative;
    padding-right: 40px;
}

.exciting-left::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e0e0e0;
}

.exciting-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-item {
    cursor: pointer;
    padding: 15px 0;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item span {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.nav-item.active span {
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.nav-item.active::after {
    width: 100%;
}

.nav-item:hover span {
    color: #000;
}

.nav-description {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    margin-top: 0;
    padding: 0 20px;
}

.nav-description.active {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
    padding: 0 20px;
}

.nav-description p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Inter', sans-serif;
    margin: 0;
    text-align: left;
}

.exciting-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.exciting-text {
    max-width: 600px;
}

.exciting-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.exciting-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.exciting-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    font-family: 'Arial', sans-serif;
    margin: 0;
}

.exciting-images {
    width: 100%;
}

.image-gallery {
    position: relative;
    width: 100%;
    height: 400px;
}

.image-set {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    gap: 20px;
}

.image-set.active {
    display: flex;
}

.image-item {
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-video:-webkit-full-screen {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
}

.gallery-video:-moz-full-screen {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
}

.gallery-video:fullscreen {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
}


.image-item:hover .gallery-image {
    transform: scale(1.05);
}

.image-item:hover .gallery-video {
    transform: scale(1.05);
}

/* Sliding Container Styles */
.sliding-container {
    position: relative;
    overflow: hidden;
}

.sliding-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.sliding-images .gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.sliding-images .gallery-image.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
}

.slider-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn i {
    font-size: 14px;
}


/* Responsive Design for Exciting Happenings */
@media (max-width: 768px) {
    .exciting-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .exciting-left {
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .exciting-left::after {
        display: none;
    }
    
    .exciting-nav {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .nav-item::after {
        bottom: -10px;
    }
    
    .nav-description {
        padding: 0 15px;
    }
    
    .nav-description.active {
        margin-top: 10px;
        padding: 0 15px;
    }
    
    .nav-description p {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .exciting-title {
        font-size: 2rem;
    }
    
    .image-gallery {
        height: 300px;
    }
    
    .image-set {
        flex-direction: column;
        gap: 15px;
    }
    
    .image-item {
        height: 50%;
    }
    
    /* Show only one image item on mobile for better view */
    .image-item:last-child {
        display: none;
    }
    
    .image-item:first-child {
        height: 100%;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .exciting-happenings-section {
        padding: 60px 0;
    }
    
    .exciting-container {
        padding: 0 20px;
    }
    
    .exciting-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-description {
        padding: 0 10px;
    }
    
    .nav-description.active {
        margin-top: 8px;
        padding: 0 10px;
    }
    
    .nav-description p {
        font-size: 0.75rem;
        text-align: left;
    }
    
    .exciting-title {
        font-size: 1.8rem;
    }
    
    .image-gallery {
        height: 250px;
    }
    
    /* Show only one image item on small mobile for better view */
    .image-item:last-child {
        display: none;
    }
    
    .image-item:first-child {
        height: 100%;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }
}

/* Adventures Section */
.adventures-section {
    background: #fff;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 70px;
}

.adventures-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.adventures-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.adventures-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.adventures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    height: 500px;
}

.adventure-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.adventure-slider-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.adventure-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.adventure-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.adventure-slide.active {
    opacity: 1;
}

.adventures-right {
    padding-left: 40px;
}

.adventures-text {
    max-width: 100%;
}

.adventures-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.adventures-title {
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.adventures-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    font-family: 'Arial', sans-serif;
    margin-bottom: 20px;
}

.adventure-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

/* Desktop styles - 2 columns */
@media (min-width: 769px) {
    .adventure-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 30px;
    }
}

.adventure-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.adventure-feature:last-child {
    border-bottom: none;
}

.adventure-feature:hover {
    padding-left: 10px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
}

.adventure-feature i {
    font-size: 1.2rem;
    color: #d4af37;
    width: 20px;
    text-align: center;
}

.adventure-feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    font-family: 'Arial', sans-serif;
}

/* Responsive Design for Adventures Section */
@media (max-width: 780px) {
    .adventures-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .adventures-right {
        padding-left: 0;
    }
    
    .adventures-title {
        font-size: 2.2rem;
    }
    
    .adventures-grid {
        height: 400px;
        gap: 15px;
    }
    
    .adventure-features {
        grid-template-columns: 1fr 1fr !important;
        gap: 0 !important;
        margin-top: 20px !important;
        padding: 0 15px !important;
        border-top: 1px solid #e5e5e5 !important;
    }
    
    .adventure-feature {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .adventures-section {
        padding: 60px 0;
    }
    
    .adventures-container {
        padding: 0 20px;
    }
    
    .adventures-title {
        font-size: 1.8rem;
    }
    
    .adventures-description {
        font-size: 0.95rem;
    }
    
    .adventures-grid {
        height: 300px;
        gap: 5px;
    }
    
    .adventure-feature span {
        font-size: 0.9rem;
    }
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 70px;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
   
    align-items: start;
    min-height: 600px;
}

.faq-left {
    padding-right: 50px;
}

.faq-right {
    padding-left: 30px;
}

.faq-wrapper {
    max-width: 100%;
}

.faq-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    font-family: 'Arial', sans-serif;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: #000;
}

.faq-question:hover span {
    color: #000;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-answer.active {
    max-height: 200px;
    opacity: 1;
    padding-top: 15px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.faq-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    height: 700px;
    margin: 0 auto;
}

.grid-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-item:hover .grid-image {
    transform: scale(1.05);
}

/* Clickable Gallery Trigger */
.clickable-gallery-trigger {
    position: relative;
    cursor: pointer;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 8px;
    color: white;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-overlay span {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.clickable-gallery-trigger:hover .gallery-overlay {
    opacity: 1;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.gallery-modal-content {
    position: relative;
    background-color: #fff;
    margin: 2% auto;
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

.gallery-modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
}

.gallery-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-close-btn:hover {
    background-color: #e9ecef;
    color: #333;
    transform: scale(1.1);
}

.gallery-modal-body {
    flex: 1;
    overflow: hidden;
    padding: 0;
}

.gallery-scroll-container {
    height: 100%;
    overflow-y: auto;
    padding: 20px 30px;
}

.gallery-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.gallery-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.gallery-scroll-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.gallery-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding-bottom: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f8f9fa;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-popup-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-popup-image {
    transform: scale(1.05);
}

.gallery-item-overlay {
    display: none;
}

.gallery-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gallery-folder {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-filename {
    font-size: 0.75rem;
    opacity: 0.9;
    word-break: break-word;
}

.gallery-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    flex-shrink: 0;
}

.gallery-stats {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.filter-btn:hover {
    background: #e9ecef;
    border-color: #bbb;
}

.filter-btn.active {
    background: #333;
    color: white;
    border-color: #333;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-modal-content {
        margin: 5% auto;
        width: 95%;
        height: 85vh;
    }
    
    .gallery-modal-header,
    .gallery-modal-footer {
        padding: 15px 20px;
    }
    
    .gallery-scroll-container {
        padding: 15px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .gallery-popup-image {
        height: 150px;
    }
    
    .gallery-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}



/* Footer Section */
.footer {
    background: #000;
    color: #fff;
    padding: 40px 0 15px 0;
    font-family: 'Arial', sans-serif;
    scroll-margin-top: 70px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Footer Logo */
.footer-logo {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo-icon i {
    font-size: 24px;
    color: #000;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin: 0;
}

/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

/* Contact Information */
.contact-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 8px;
}

.contact-info .address {
    font-weight: 500;
    color: #fff;
}

.contact-info .phone {
    color: #fff;
}

.contact-info .email {
    color: #ccc;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}


/* Footer Engagement */
.footer-engagement {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.newsletter-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    white-space: nowrap;
}

.newsletter-line {
    width: 200px;
    height: 1px;
    background: #333;
}

.social-media {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #d4af37;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

.legal-links span {
    color: #666;
    font-size: 0.8rem;
}

.copyright p {
    font-size: 0.8rem;
    color: #ccc;
    margin: 0;
}

.developer-credit p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Footer Logo Section */
.footer-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding: 5px 0;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Footer Booking Section */
.footer-booking-section {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-header h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.feature-item i {
    color: #4CAF50;
    width: 20px;
    text-align: center;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pricing-option {
    background: rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.pricing-option:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.option-header h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.main-price {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: 700;
}

.taxes {
    color: #ccc;
    font-size: 0.9rem;
}

.option-features {
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.feature i {
    width: 16px;
    text-align: center;
}

.feature i.fa-check {
    color: #4CAF50;
}

.feature i.fa-times {
    color: #f44336;
}

/* Footer Policies Section */
.footer-policies-section {
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.footer-policies-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.policy-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Compact Policies Styles */
.policies-info-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policies-info-compact p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

/* Inline Location Info Styles */
.location-info-inline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.location-info-inline p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.payment-methods-inline p {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 4px 8px;
    margin: 2px 4px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.payment-label:hover {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
    transform: translateY(-1px);
}

.policy-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    color: #4CAF50;
    font-size: 1.2rem;
}

.policy-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.policy-content p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer Location Section */
.footer-location-section {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.location-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    color: #4CAF50;
    font-size: 1.5rem;
}

.location-details h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.location-details p {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 10px;
}

.show-map-link {
    color: #4CAF50;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.show-map-link:hover {
    color: #66BB6A;
}

/* Footer Special Requests */
.footer-special-requests {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.footer-special-requests p {
    color: #4CAF50;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Footer Social */
.footer-social {
    text-align: center;
    margin-bottom: 30px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}


/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .footer-engagement {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-line {
        width: 150px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .footer-logo-section {
        margin-bottom: 15px;
        padding: 8px 0;
    }
    
    .newsletter-line {
        width: 100px;
    }
    
    /* New Footer Responsive Styles */
    .footer-booking-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .booking-header h2 {
        font-size: 1.5rem;
    }
    
    .room-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .policies-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .policy-item {
        padding: 15px;
    }
    
    .location-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-media {
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-logo {
        max-width: 150px;
    }
    
    .footer-logo-section {
        margin-bottom: 15px;
        padding: 8px 0;
    }
    
    .newsletter-line {
        width: 100px;
    }
    
    /* New Footer Mobile Styles */
    .footer-booking-section {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .booking-header h2 {
        font-size: 1.3rem;
    }
    
    .room-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .feature-item {
        font-size: 0.8rem;
    }
    
    .pricing-option {
        padding: 20px;
    }
    
    .option-header h3 {
        font-size: 1.1rem;
    }
    
    .main-price {
        font-size: 1.3rem;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .policy-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .policies-info-compact p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .policies-info-compact {
        gap: 6px;
    }
    
    .location-info-inline {
        gap: 6px;
    }
    
    .location-info-inline p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .payment-label {
        font-size: 0.75rem;
        padding: 3px 6px;
        margin: 1px 2px;
    }
    
    .policy-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-location-section {
        padding: 20px;
    }
    
    .location-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .footer-special-requests {
        padding: 15px;
    }
    
    .footer-special-requests p {
        font-size: 0.9rem;
    }
    
    .social-media {
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Print styles */
@media print {
    .header,
    .carousel-nav,
    .cta-button {
        display: none;
    }
    
    .hero-section {
        height: auto;
        background: none;
        color: #000;
    }
}
