* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.4;
color: #333;
overflow-x: hidden;

}

/* Smooth scrolling */
html {
scroll-behavior: smooth;
}



/* ========================================
   CONTAINER SYSTEM FOR LARGE SCREENS
   Prevents content stretching on 2K/4K/Ultrawide monitors
   ======================================== */

/* Main content areas */
.main-content,
.main-content1,
.accommodation-content,
.activities,
.about-content,
.pillars-container,
.experiences-section,
.content-wrapper2,
.obc-content-section,
.section-content,
.section-content,
.cta-section {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}



/* ========================================
   HERO-SLIDESHOW FOR ALL PAGES 
   ======================================== */




        .hero {
            height: 100vh;
            /* height:calc(100vh - 50px); */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
            margin-top: 50px;
            
        }

        .hero-content1 {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-in-out;
        }

        .hero-description {
            font-size: 1rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            opacity: 0.9;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        /* FIXED: Slideshow Background Container */
        .slideshow-container {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
            overflow: hidden;

        }

        /* FIXED: Individual Slides */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-position: center center !important;
            background-repeat: no-repeat !important;
            background-size: cover !important;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(238, 90, 111, 0.6);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }






/* Navigation - prevent floating */
.navlogo {
    max-width: 1920px;
    margin: 0 auto;
}

/* Grid layouts - prevent items getting too wide */
.accommodation-grid,
.activities-grid,
.gallery-grid,
.obc-gallery-grid,
.pillars {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer-content-modern {
    max-width: 1600px;
    margin: 0 auto;
}

/* Contact section */
.contact-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* About section wrapper */
.about-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* ======================================== */








/* Navigation styles */
        /* Logo styles */
        .logo img {
            height: 80px;
            width: auto;
            margin-right: 130px;
        }

        /* Navigation container */
        .navlogo {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 10px 30px;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease, transform 0.3s ease-in-out;
        }

        /* Navigation menu */
        .topnav {
            display: flex;
            gap: 50px;
            margin-left: 30px;
            align-items: center;
        }

        /* Regular navigation links */
        .topnav > a {
            color: #D4A574;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            padding: 12px 16px;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .topnav > a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s;
        }

        .topnav > a:hover::before {
            left: 100%;
        }

        .topnav > a:hover {
            color: #f47C20;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(244, 124, 32, 0.2);
        }

        .topnav > a.active {
            color: #f47C20;
            background: rgba(244, 124, 32, 0.1);
        }

        /* DROPDOWN CONTAINER */
        .booking-dropdown {
            position: relative;
            display: inline-block;
        }

        /* DROPDOWN TRIGGER */
        .booking-trigger {
            color: #D4A574;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            padding: 12px 20px;
            border-radius: 25px;
            background: linear-gradient(135deg, #D4A574, #B8956A);
            color: white !important;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            border: none;
            font-family: inherit;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            overflow: hidden;
        }

        .booking-trigger::after {
            content: '▼';
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .booking-trigger.active::after {
            transform: rotate(180deg);
        }

        .booking-trigger:hover {
            background: linear-gradient(135deg, #f47C20, #e55a00);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(244, 124, 32, 0.4);
        }

        .booking-trigger::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .booking-trigger:hover::before {
            left: 100%;
        }

        /* DROPDOWN MENU */
        .booking-menu {
            position: absolute;
            top: calc(100% + 10px);
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            padding: 8px 0;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) translateY(-20px) scale(0.9);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 999;
            border: 1px solid rgba(212, 165, 116, 0.2);
        }

        .booking-menu.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0) scale(1);
        }

        /* Dropdown menu items */
        .booking-item {
            display: flex;
            align-items: center;
            padding: 16px 24px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .booking-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #f47C20;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .booking-item:hover::before {
            transform: scaleY(1);
        }

        .booking-item:hover {
            background: rgba(244, 124, 32, 0.05);
            color: #f47C20;
            /* padding-left: 32px; */
        }

        .booking-icon {
            font-size: 18px;
            margin-right: 12px;
            width: 24px;
            text-align: center;
        }

        .booking-text {
            display: flex;
            flex-direction: column;
        }

        .booking-title {
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 2px;
        }

        .booking-subtitle {
            font-size: 12px;
            color: #666;
            opacity: 0.8;
        }

        /* Dropdown arrow pointer */
        .booking-menu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 16px;
            background: white;
            border: 1px solid rgba(212, 165, 116, 0.2);
            border-bottom: none;
            border-right: none;
            transform: translateX(-50%) rotate(45deg);
        }

        /* HAMBURGER MENU STYLES */
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            width: 44px;
            height: 44px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hamburger:hover {
            background: rgba(212, 165, 116, 0.1);
        }

        .hamburger span {
            width: 24px;
            height: 3px;
            background: #D4A574;
            transition: all 0.3s ease;
            border-radius: 2px;
            margin: 2px 0;
        }

        /* Hamburger Animation */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: #f47C20;
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
            background: #f47C20;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 999;
            padding: 7rem 2rem 2rem;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
            border-left: 1px solid rgba(212, 165, 116, 0.2);
            overflow-y: auto;
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
        }

        .mobile-menu.active {
            right: 0;
        }

        /* Mobile Menu Items */
        .mobile-menu-item {
            display: block;
            padding: 1.2rem 0;
            color: #D4A574;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            border-bottom: 1px solid rgba(212, 165, 116, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mobile-menu-item::before {
            content: '';
            position: absolute;
            left: -100%;
            top: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(244, 124, 32, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .mobile-menu-item:hover::before {
            left: 100%;
        }

        .mobile-menu-item:hover {
            color: #f47C20;
            transform: translateX(5px);
        }

        .mobile-menu-item.active {
            color: #f47C20;
            background: rgba(244, 124, 32, 0.1);
        }

        .mobile-menu-item:last-child {
            border-bottom: none;
        }

        /* Mobile Booking Section */
        .mobile-booking-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(212, 165, 116, 0.3);
        }

        .mobile-booking-title {
            color: #D4A574;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 1rem;
            text-align: center;
        }

        .mobile-booking-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            margin-bottom: 0.5rem;
            background: rgba(244, 124, 32, 0.05);
            border-radius: 12px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 165, 116, 0.2);
        }

        .mobile-booking-item:hover {
            background: rgba(244, 124, 32, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(244, 124, 32, 0.2);
        }

        .mobile-booking-icon {
            font-size: 20px;
            margin-right: 12px;
            width: 30px;
            text-align: center;
        }

        .mobile-booking-text {
            display: flex;
            flex-direction: column;
        }

        .mobile-booking-text-title {
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 2px;
            color: #333;
        }

        .mobile-booking-text-subtitle {
            font-size: 12px;
            color: #666;
            opacity: 0.8;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 998;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Animation for mobile menu items */
        .mobile-menu-item, .mobile-booking-item {
            opacity: 0;
            transform: translateX(20px);
            animation: none;
        }

        .mobile-menu.active .mobile-menu-item,
        .mobile-menu.active .mobile-booking-item {
            opacity: 1;
            transform: translateX(0);
            animation: slideInRight 0.3s ease forwards;
        }

        .mobile-menu.active .mobile-menu-item:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu.active .mobile-menu-item:nth-child(2) { animation-delay: 0.2s; }
        .mobile-menu.active .mobile-menu-item:nth-child(3) { animation-delay: 0.3s; }
        .mobile-menu.active .mobile-menu-item:nth-child(4) { animation-delay: 0.4s; }
        .mobile-menu.active .mobile-booking-section { animation-delay: 0.5s; }
        .mobile-menu.active .mobile-booking-item:nth-child(1) { animation-delay: 0.6s; }
        .mobile-menu.active .mobile-booking-item:nth-child(2) { animation-delay: 0.7s; }
        .mobile-menu.active .mobile-booking-item:nth-child(3) { animation-delay: 0.8s; }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }


        
/*MAIN CONTENT OF NEW AND IMPROVED ACCOMMODATION*/
        .obc-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .obc-wrapper {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            background-color: #f8f8f8;
        }

      
        .obc-badge {
            background-color: #e67e22;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: bold;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            display: inline-block;
        }

       
         /* .hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            animation: fadeInUp 1s ease-out;
        }

        

        .hero-description {
            font-size: 1rem;
            margin-bottom: 2rem;
            max-width: 700px;
            line-height: 1.6;
            opacity: 0.9;
        } */

.obc-gallery-section {
            padding: 3rem 5%;
            background-color: white;
        }

        .obc-gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .obc-gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease;
            aspect-ratio: 16 / 9;
        }

        .obc-gallery-item:hover {
            transform: translateY(-5px);
        }

        .obc-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .obc-content-section {
            padding: 4rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .obc-content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 3rem;
        }

        .obc-main-content h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
        }

        .obc-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 2rem;
        }

        .obc-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .obc-feature-card {
            background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
            border: 2px solid #f7e6d5;
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s;
        }

        .obc-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(230, 126, 34, 0.15);
        }

        .obc-feature-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 0.5rem;
            object-fit: contain;
        }

        .obc-feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.3rem;
        }

        .obc-feature-desc {
            color: #666;
            font-size: 0.95rem;
        }

        .obc-sidebar {
            background-color: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .obc-capacity-info {
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid #f0f0f0;
        }

        .obc-capacity-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1rem;
            display: block;
            object-fit: contain;
        }

        .obc-capacity-text {
            font-size: 1.2rem;
            color: #2c3e50;
            font-weight: 600;
        }

        .obc-availability-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .obc-cta-button {
            width: 100%;
            background-color: #e67e22;
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .obc-cta-button:hover {
            background-color: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
        }

        .obc-info-text {
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            margin-top: 1rem;
        }

        .obc-room-details {
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 2px solid #f0f0f0;
        }

        .obc-room-details h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #2c3e50;
        }

        .obc-rooms-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .obc-room-item {
            background-color: #fafafa;
            border-radius: 10px;
            padding: 1.5rem;
            display: flex;
            gap: 1.5rem;
        }

        .obc-room-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            object-fit: contain;
        }

        .obc-room-info h4 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .obc-room-info p {
            color: #666;
            line-height: 1.6;
        }

        .obc-camping-section {
            margin-top: 4rem;
            padding-top: 4rem;
            border-top: 3px solid #e67e22;
        }

        .obc-camping-badge {
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .obc-camping-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
        }

        .obc-bring-box {
            margin-top: 2.5rem;
            padding: 2rem;
            background: linear-gradient(135deg, #fff5eb 0%, #ffffff 100%);
            border-radius: 12px;
            border-left: 4px solid #e67e22;
        }

        .obc-bring-title {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .obc-bring-text {
            color: #666;
            line-height: 1.8;
        }

        .obc-airbnb-info {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
            color: #666;
            font-size: 0.9rem;
        }

        .obc-contact-section {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #f0f0f0;
        }

        .obc-contact-title {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .obc-contact-text {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .obc-cta-secondary {
            background-color: white;
            color: #e67e22;
            border: 2px solid #e67e22;
        }







        /* Demo content */
        .content {
            margin-top: 120px;
            padding: 40px;
            text-align: center;
            color: #333;
        }

        .demo-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin: 0 auto;
        }

/* Hero Section with Slideshow, this one's for the final.html */
        /* .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
            margin-top: 50px;
            
        }

        

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::after{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.4);
        }

        

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-weight: normal;
        }

       

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.3s both;
        } */

       

        




    /* Slideshow Background */
    /* .hero-slideshow {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        z-index: 0;
        overflow: hidden;
    }

    .hero-slideshow img {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        animation: slideshow 16s infinite;
        transition: opacity 1s ease-in-out;
    } */

    /* .hero-slideshow img:nth-child(1) { animation-delay: 0s; }
    .hero-slideshow img:nth-child(2) { animation-delay: 4s; }
    .hero-slideshow img:nth-child(3) { animation-delay: 8s; }
    .hero-slideshow img:nth-child(4) { animation-delay: 12s; } */

    @keyframes slideshow {
        0%   { opacity: 0; }
        5%   { opacity: 1; }
        25%  { opacity: 1; }
        30%  { opacity: 0; }
        100% { opacity: 0; }
    }


/* Section Styles */
section {
padding: 5rem 2rem;
max-width: 1200px;
margin: 0 auto;
}

.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #f47C20;
position: relative;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: #D4A574;
}

        /* About Section - Image and Text */
        .about {
            background: #FFF8DC;
            padding: 5rem 0 3rem 0;
        }

        .section-title2 {
            text-align: center;
            font-size: 2.5rem;
            color: #f47C20;
            margin-bottom: 3rem;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .content-wrapper2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .about-image-container {
            width: 100%;
        }

        .about-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        /* Pillars Section - Separate */
        .pillars-section {
            background: #FFF8DC;
            padding: 3rem 0 5rem 0;
        }

        .pillars-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .pillars {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .pillar {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .pillar:hover {
            transform: translateY(-5px);
        }

        .pillar-icon img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            display: inline-block;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            margin-bottom: 1rem;
        }

        .pillar h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #f47C20;
        }

        .pillar p {
            line-height: 1.6;
        }




.accommodation-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 3rem;
margin-top: 3rem;
}

.accommodation-card, .activity-card, .gallery-item {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}

.activity-card {
text-align: left;
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
transition: all 0.3s ease;
position: relative;
display: flex;
flex-direction: column;
height: 100%;
}

.activity-card:hover {
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-item {
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
transition: all 0.4s ease;
cursor: pointer;
}

.card-image, .card-image2 {
height: 250px;
background: linear-gradient(135deg, #FFF8DC, #D4A574);
background-size: cover;
background-position: center;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
text-align: center;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.card-image img, .card-image2 img {
width: 100%;
height: 100%;
object-fit: cover;
}

.card-content {
padding: 2rem;
}

.card-title {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #f47C20;
}



/* Activities Section */
.activities {
padding: 2rem 2rem;
max-width: 1200px;
margin: 0 auto;
}

.activities-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.activity-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #D4A574, #f47C20);
}

.activity-image {
width: 100%;
height: 200px;
background: linear-gradient(135deg, #D4A574, #f47C20);
position: relative;
overflow: hidden;
flex-shrink: 0;
}

.activity-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
transform: scale(1.05);
}

.activity-image-placeholder {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
text-align: center;
font-size: 1rem;
opacity: 0.8;
}

.activity-content{
padding: 1.5rem;
display: flex;
flex-direction: column;
flex: 1;
justify-content: space-between;
}

.activity-header {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1rem;
}

.activity-icon {
font-size: 2rem;
color: #D4A574;
flex-shrink: 0;
}

.activity-title-group {
flex: 1;
min-height: 60px;
display: flex;
flex-direction: column;
justify-content: flex-start;
}

.activity-card h3 {
color: #f47C20;
margin: 0 0 0.5rem 0;
font-size: 1.3rem;
line-height: 1.2;
}

.activity-distance {
background: #f47C20;
color: white;
padding: 0.3rem 0.8rem;
border-radius: 12px;
font-size: 0.75rem;
font-weight: 500;
display: inline-block;
margin-top: 0.5rem;
width: fit-content;
white-space: nowrap;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.activity-description {
color: #666;
line-height: 1.7;
margin-bottom: 1.5rem;
flex: 1;
min-height: 80px;
}

.activity-features {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 1rem;
margin-top: auto;
}

.feature-tag {
background: #f8f9fa;
color: #f47C20;
padding: 0.3rem 0.8rem;
border-radius: 15px;
font-size: 0.8rem;
border: 1px solid #D4A574;
}


.learn-more-btn {
background: #f47C20;
color: white;
border: none;
padding: 0.7rem 1.5rem;
border-radius: 25px;
cursor: pointer;
font-size: 0.9rem;
transition: all 0.3s ease;
}

.learn-more-btn:hover {
background: #8B4513;
transform: translateY(-2px);
}


/* Highlight wrapper */
.highlight-wrapper {
display: flex;
justify-content: center;
padding: 2rem;
background-color: white;
}

.highlight-card {
background: linear-gradient(100deg, #f47C20, #4b6734);
color: white;
text-align: center;
padding: 3rem 2rem;
border-radius: 10px;
max-width: 900px;
width: 100%;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
margin: 2rem 0;
}

.highlight-card h3 {
font-size: 2rem;
margin-bottom: 1rem;
color: white;
}

.highlight-card p {
font-size: 1.1rem;
opacity: 0.9;
max-width: 600px;
margin: 0 auto;
}

/* Activity sections */
.activity-section {
margin-bottom: 3rem;
}

.section-subtitle {
text-align: center;
font-size: 1.5rem;
color: #f47C20;
margin-bottom: 2rem;
position: relative;
padding-bottom: 1rem;
}

.section-subtitle::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 2px;
background: #D4A574;
}



/* Main Content */
.main-content {
padding: 6rem 2rem;
max-width: 1400px;
margin: 0 auto;
position: relative;
}
/* main content for cottage */
.main-content1 {
margin-top: 100px;
padding: 0;
}

/* Floating background elements */
.main-content::before {
content: '';
position: absolute;
top: -100px;
right: -100px;
width: 400px;
height: 400px;
background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(139, 69, 19, 0.05));
border-radius: 50%;
z-index: -1;
}

.main-content::after {
content: '';
position: absolute;
bottom: -100px;
left: -100px;
width: 300px;
height: 300px;
background: linear-gradient(45deg, rgba(212, 165, 116, 0.08), rgba(139, 69, 19, 0.03));
border-radius: 50%;
z-index: -1;
}



        /* Introduction Section */
        .accom-intro-section {
            text-align: center;
            margin-bottom: 6rem;
            padding: 0 1rem;
        }

        .accom-intro-section h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            background: linear-gradient(135deg, #f47C20, #A0522D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .accom-intro-section p {
            font-size: 1.25rem;
            line-height: 1.8;
            color: #666;
            max-width: 900px;
            margin: 0 auto 3rem;
        }

        .accom-stats-row {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 3rem;
        }

        .accom-stat-box {
            text-align: center;
        }

        .accom-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(100deg, #f47C20);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .accom-stat-label {
            color: #666;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        /* Cards Section */
        .accom-cards-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .accom-cards-container {
            display: grid;
            gap: 4rem;
        }

        .accom-card-wrapper {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }

        .accom-card-wrapper:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
        }

        .accom-card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 550px;
            position: relative;
        }

        .accom-image-box {
            position: relative;
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }
        
        .accom-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .accom-image-label {
            position: absolute;
            top: 30px;
            left: 30px;
            background: white;
            color: #f47C20;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .accom-info-box {
            padding: 50px 45px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
        }

        /* Vertical accent line */
        .accom-info-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #f47C20, #d4a574);
        }

        .accom-heading {
            font-size: 2rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .accom-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #5a6c7d;
            margin-bottom: 2rem;
        }

        .accom-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 2rem;
        }

        .accom-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #4a5568;
        }

        .accom-feature-dot {
            width: 6px;
            height: 6px;
            background: #f47C20;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .accom-price-box {
            background: #fffbf5;
            border-left: 4px solid #f47C20;
            padding: 20px;
            margin-bottom: 1.5rem;
        }

        .accom-price-main {
            font-size: 1.6rem;
            font-weight: 800;
            color: #f47C20;
            margin-bottom: 4px;
        }

        .accom-price-sub {
            font-size: 0.85rem;
            color: #7a8a9a;
        }

        .accom-book-link {
            background: #f47C20;
            color: white;
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(244, 124, 32, 0.25);
        }

        .accom-book-link:hover {
            background: #e06b15;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(244, 124, 32, 0.35);
        }

.accom-intro-section {
    text-align: center;
    margin-bottom: 6rem;
    padding: 4rem 1rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.accom-intro-section.visible {
    opacity: 1;
    transform: translateY(0);
}






/* the experience layouts (Cottage) */
        .experiences-section {
            padding: 6rem 1rem;
            max-width: 900px;
            margin: 0 auto;
        }
        .experiences-container {
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }
        .experience-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 0;
            transform: translateY(60px);
            position: relative;
            min-height: 300px;
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(244, 124, 32, 0.04), rgba(212, 165, 116, 0.04));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .experience-card:hover::before {
            opacity: 1;
        }

        .experience-card:hover {
            transform: translateY(-15px) rotateX(2deg) rotateY(1deg);
            box-shadow: 0 35px 80px rgba(0,0,0,0.18);
        }

        /* Alternating layouts */
        .experience-card:nth-child(even) {
            flex-direction: row-reverse;
        }

        .experience-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .experience-content-wrapper {
            display: flex;
            align-items: stretch;
            min-height: 400px;
            position: relative;
            z-index: 2;
        }

        .experience-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            min-height: 300px;
        }

        .experience-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.6s ease;
        }

        .experience-card:hover .experience-image img {
            transform: scale(1.05);
        }

        .experience-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(45, 74, 34, 0.1), rgba(244, 124, 32, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .experience-card:hover .experience-image::after {
            opacity: 1;
        }

        .experience-content {
            flex: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
            position: relative;
        }

        .experience-title {
            font-size: 2rem;
            color: #2d4a22;
            margin-bottom: 1.5rem;
            font-weight: 400;
            line-height: 1.3;
            position: relative;
        }

        .experience-title::before {
            content: '';
            position: absolute;
            left: -1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 60%;
            background: linear-gradient(180deg, #f47C20, #D4A574);
            border-radius: 2px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .experience-card:hover .experience-title::before {
            opacity: 1;
        }

        .experience-description {
            color: #495057;
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .experience-highlight {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: linear-gradient(135deg, #f47C20, #D4A574);
            color: white;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .experience-card:hover .experience-highlight {
            opacity: 1;
            transform: translateY(0);
        }
        /* Enhanced staggered animation using the delays you defined */
        .experience-card.animate-in:nth-child(1) { transition-delay: 0.1s; }
        .experience-card.animate-in:nth-child(2) { transition-delay: 0.2s; }
        .experience-card.animate-in:nth-child(3) { transition-delay: 0.3s; }
        .experience-card.animate-in:nth-child(4) { transition-delay: 0.4s; }
        .experience-card.animate-in:nth-child(5) { transition-delay: 0.5s; }
        .experience-card.animate-in:nth-child(6) { transition-delay: 0.6s; }
        .experience-card.animate-in:nth-child(7) { transition-delay: 0.7s; }
        .experience-card.animate-in:nth-child(8) { transition-delay: 0.8s; }
        .experience-card.animate-in:nth-child(9) { transition-delay: 0.9s; }

        

        /* those wordings after the hero section(COTTAGE) */
        .section-header {
            text-align: center;
            margin-bottom: 5rem;
            margin-top: 0rem;
            position: relative;
        }

        .section-title1 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: #2d4a22;
            margin-bottom: 1rem;
            font-weight: 300;
            letter-spacing: 0.02em;
            position: relative;
        }

        .section-title1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #f47C20, #D4A574);
            border-radius: 2px;
        }

        .section-subtitle1 {
            color: #6c757d;
            font-size: 1.1rem;
            margin-top: 2rem;
            font-style: italic;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.5s forwards;
        }






        /* CTAs (Cottage) */
.cta-section {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            position: relative;
        }

        .cta-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
            align-items: center;
        }

        /* Video Card Side */
        .video-card {
            position: relative;
            padding: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-frame {
            position: relative;
            width: 100%;
            max-width: 450px;
            aspect-ratio: 16/10;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            background: linear-gradient(135deg, #4b6734 0%, #d4a574 100%);
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Subtle video controls */
        .video-controls {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10;
            display: flex;
            gap: 8px;
        }

        .video-control-btn {
            background: rgba(0, 0, 0, 0.6);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.8rem;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-control-btn:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }

        /* Progress indicator */
        .video-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: #f47C20;
            z-index: 15;
            transform-origin: left;
            border-radius: 0 0 16px 16px;
        }

        /* Content Side */
        .content-card {
            padding: 3rem 3rem 3rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }

        .cta-badge {
            display: inline-block;
            background: linear-gradient(135deg, #f47C20, #ff8c42);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            width: fit-content;
            letter-spacing: 0.5px;
        }

        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
            line-height: 1.2;
            color: #2c3e50;
            letter-spacing: -0.5px;
        }

        .cta-title .highlight {
            color: #f47C20;
            font-weight: 400;
        }

        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #5a6c7d;
            line-height: 1.6;
            font-weight: 300;
        }

        .cta-features {
            list-style: none;
            margin-bottom: 2.5rem;
        }

        .cta-features li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            color: #5a6c7d;
        }

        .cta-features li::before {
            content: '✓';
            color: #f47C20;
            font-weight: bold;
            margin-right: 12px;
            font-size: 1rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #f47C20, #ff8c42);
            color: white;
            padding: 1.2rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.4s ease;
            font-size: 1rem;
            width: fit-content;
            box-shadow: 0 8px 25px rgba(244, 124, 32, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(244, 124, 32, 0.4);
            background: linear-gradient(135deg, #e6681a, #f47C20);
        }

        .cta-button::after {
            content: '→';
            transition: transform 0.3s ease;
            font-size: 1.1rem;
        }

        .cta-button:hover::after {
            transform: translateX(4px);
        }

        /* Floating decorative elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(244, 124, 32, 0.3);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .floating-dot:nth-child(1) { top: 15%; left: 85%; animation-delay: 0s; }
        .floating-dot:nth-child(2) { top: 70%; left: 10%; animation-delay: 3s; }
        .floating-dot:nth-child(3) { top: 40%; left: 90%; animation-delay: 6s; }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) scale(1); 
                opacity: 0.3; 
            }
            50% { 
                transform: translateY(-30px) scale(1.2); 
                opacity: 0.8; 
            }
        }



        
        .section-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        .section-title {
            font-size: 3rem;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 1.5rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #D4A574, #B8956A);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 4rem;
            font-style: italic;
        }

        

        /* Accommodation Cards Section */
        .accommodation-section {
            padding: 4rem 0;
            background: #ffffff;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .gallery-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .gallery-image {
            height: 250px;
            position: relative;
            overflow: hidden;
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover .gallery-image img {
            transform: scale(1.1);
        }

        .gallery-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(212, 165, 116, 0.3), rgba(139, 69, 19, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-image::before {
            opacity: 1;
        }

        .gallery-caption {
            padding: 2rem;
            text-align: center;
            background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        }

        .gallery-caption h3 {
            color: #f47C20;
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
            font-weight: normal;
        }

        .gallery-caption p {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .gallery-features {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

   
        /* Call to Action */
        .gallery-action {
            text-align: center;
            margin-top: 3rem;
        }

        .view-all-btn {
            display: inline-block;
            background: linear-gradient(135deg, #f47C20, #4b6734);
            color: white;
            padding: 1.2rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
            position: relative;
            overflow: hidden;
        }

        .view-all-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .view-all-btn:hover::before {
            left: 100%;
        }

        .view-all-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
        }

        /* Fade In Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }





/*ABOUT US PAGE*/

/* Our Story Section */

       

        /* Main Content */
        .container1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }



        .story-section {
            padding: 80px 0;
            background: #fff;
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .story-text h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #f47C20;
            font-weight: 400;
        }

        .story-text p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #555;
            text-align: justify;
        }

        .story-image {
            position: relative;
            height: 450px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Philosophy Section */
        .philosophy-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .philosophy-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .philosophy-header h2 {
            font-size: 2.5rem;
            color: #f47C20;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .philosophy-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .philosophy-card {
            background: white;
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .philosophy-card:hover {
            transform: translateY(-5px);
        }

        .philosophy-card h3 {
            font-size: 1.8rem;
            color: #f47C20;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .philosophy-card p {
            font-size: 1.05rem;
            color: #666;
            line-height: 1.8;
        }

        /* What Makes Us Different */
        .difference-section {
            padding: 80px 0;
            background: white;
        }

        .difference-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .difference-content h2 {
            font-size: 2.5rem;
            color: #f47C20;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .difference-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
            text-align: left;
        }

        .difference-item {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #f47C20;
        }

        .difference-item h3 {
            font-size: 1.4rem;
            color: #f47C20;
            margin-bottom: 15px;
        }

        .difference-item p {
            font-size: 1.05rem;
            color: #666;
            line-height: 1.8;
        }

        /* The Name Section */
        .name-section {
            padding: 80px 0;
            background: #2d4a22;
            color: white;
            text-align: center;
        }

        .name-section h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 400;
        }

        .name-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Our Promise Section */
        .promise-section {
            padding: 80px 0;
            background: white;
        }

        .promise-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .promise-content h2 {
            font-size: 2.5rem;
            color: #f47C20;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .promise-content p {
            font-size: 1.15rem;
            color: #555;
            line-height: 2;
            margin-bottom: 25px;
        }

        .promise-highlight {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 8px;
            margin-top: 40px;
            border-left: 4px solid #2c5f2d;
        }

        .promise-highlight p {
            font-size: 1.1rem;
            color: #444;
            font-style: italic;
        }

/* Camping Experience Section */
.camping-section {
    padding: 80px 0;
    background: #fff;
}

.camping-section h2 {
    font-size: 2.5rem;
    color: #f47C20;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
}

.camping-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.camping-intro p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.9;
}
























/* Contact Section */
.contact, .contact-section {
background: linear-gradient(100deg, #f47C20, #4b6734);
color: white;
text-align: center;
margin: 0;
max-width: 100%;
padding: 5rem 0;
}

.contact-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
text-align: center;
}

.contact-section h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
color: #FFE4B5;
}

.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.contact-item {
padding: 1.5rem;
background: rgba(255,255,255,0.1);
border-radius: 10px;
backdrop-filter: blur(10px);
}

.contact-item h3 {
margin-bottom: 1rem;
color: #FFE4B5;
}

.contact-item a {
color: white;
text-decoration: none;
}

.contact-item a:hover {
color: #FFE4B5;
}

/* New Modern Footer Styles */
.footer-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    padding: 2.5rem 0 1.5rem;
    margin: 0;
    max-width: 100%;
}

.footer-content-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(108,117,125,0.2);
}

.brand-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 22px; /* Less circular for better logo display */
    background-image: url('logo1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* background-color: #f47C20; Fallback color if image doesn't load */
    box-shadow: 0 4px 15px rgba(244, 124, 32, 0.2);
}

.brand-section p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.social-link {
    width: 35px;
    height: 35px;
    background: #6c757d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #f47C20;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 124, 32, 0.3);
}

.footer-section-modern {
    padding-top: 0.5rem;
}

.footer-section-modern h3 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #f47C20;
    padding-bottom: 0.4rem;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.footer-section-modern a, 
.footer-section-modern p {
    color: #6c757d;
    text-decoration: none;
    margin-bottom: 0.6rem;
    display: block;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-align: center;
}

.footer-section-modern a:hover {
    color: #f47C20;
    font-weight: 500;
}

.footer-section-modern p strong {
    color: #333;
    font-size: 1rem;
}

.footer-bottom-modern {
    text-align: center;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(108,117,125,0.2);
    margin-top: 2rem;
    color: #6c757d;
    font-size: 0.85rem;
}

/* YOUR EXISTING RESPONSIVE DESIGN
@media (max-width: 992px) {
    .footer-content-modern {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
    }
    
    .brand-section {
        grid-column: 1 / -1;
        align-items: center;
        margin-bottom: 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(108,117,125,0.2);
        padding-bottom: 2rem;
        padding-right: 0;
    }
} */

@media (max-width: 1600px) {
    /* Very subtle adjustments - almost desktop */
    
    .logo img {
        height: 75px;
        margin-right: 100px;
    }
    
    .topnav {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.3rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    /* Activity cards - 4 columns but slightly smaller */
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    
    /* Accommodation cards - can fit 3 columns */
    .accommodation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    /* Experience cards stay side-by-side */
    .experience-title {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 5.5rem 2rem;
    }
}

/* Large tablets and small laptops (888px-1366px) */
@media (max-width: 1366px) {
    /* Slightly tighter than desktop, but not as cramped as 1024px */
    
    .logo img {
        height: 70px;
        margin-right: 80px;
    }
    
    .topnav {
        gap: 35px;
    }
    
    .topnav > a {
        font-size: 13px;
        padding: 10px 14px;
    }
    
    /* Activity cards - 3 columns still good here */
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* Accommodation cards - 2 columns */
    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    /* Hero sections */
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero {
        height: 85vh;
    }
    
    /* Experience cards - keep side-by-side */
    .experience-content {
        padding: 2.5rem;
    }
    
    .experience-title {
        font-size: 1.9rem;
    }
    
    /* Gallery - 2 columns */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Footer - keep 4 columns but tighter */
    .footer-content-modern {
        gap: 1.5rem;
        padding: 0 2rem;
    }
    
    /* Main content */
    .main-content {
        padding: 5rem 2rem;
    }
    
    /* CTA section */
    .cta-title {
        font-size: 2.3rem;
    }
    
    .cta-text {
        font-size: 1.05rem;
    }
}


/* ============================================
   1024px BREAKPOINT (LANDSCAPE TABLETS & SMALL LAPTOPS)
   Instructions: Add this AFTER your 768px breakpoint
   This targets devices between 769px - 1024px width
   ============================================ */

@media (max-width: 1024px) {

    /* ========================================
       1. NAVIGATION ADJUSTMENTS - FIXED FOR 769-888px
       ======================================== */
    
    /* Logo - Smaller to save space */
    .logo img {
        height: 65px;
        margin-right: 40px; /* Reduced significantly */
    }
    
    /* Navigation container */
    .navlogo {
        padding: 10px 20px;
    }

    /* Navigation menu - TIGHTER gaps for lower end */
    .topnav {
        gap: 20px; /* Much tighter - was 50px on desktop */
        margin-left: 15px;
    }

    /* Navigation links - Smaller text and padding */
    .topnav > a {
        font-size: 12px; /* Smaller than desktop's 14px */
        padding: 8px 12px;
    }

    /* Booking dropdown trigger - More compact */
    .booking-trigger {
        font-size: 12px;
        padding: 8px 16px;
    }

    /* Dropdown menu - Adjust if needed */
    .booking-menu {
        min-width: 200px;
    }

    .booking-item {
        padding: 14px 20px;
    }

    .booking-title {
        font-size: 13px;
    }

    .booking-subtitle {
        font-size: 11px;
    }


    /* ========================================
       2. HERO SECTIONS
       ======================================== */

    /* Main Hero */
    .hero {
        height: 80vh;
        min-height: 550px;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

  
    

    


    


    /* ========================================
       3. MAIN CONTENT SPACING
       ======================================== */

    .main-content {
        padding: 5rem 2rem;
        margin-top: 100px;
    }

    .main-content1 {
        margin-top: 100px;
    }

    /* Section Titles */
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .section-title1 {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1.3rem;
    }


    /* ========================================
       4. ACTIVITY CARDS - 3 COLUMNS
       ======================================== */

    .activities {
        padding: 4rem 2rem;
    }

    .activities-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 COLUMNS */
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .activity-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .activity-image {
        height: 200px;
        flex-shrink: 0;
    }

    .activity-content {
        padding: 1.4rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .activity-card h3 {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 0.6rem;
    }

    .activity-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        flex: 1;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .learn-more-btn {
        padding: 0.8rem 1.3rem;
        font-size: 0.95rem;
    }


    /* ========================================
       5. ACCOMMODATION CARDS - 2 COLUMNS (SIDE BY SIDE)
       ======================================== */

    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 COLUMNS - SIDE BY SIDE */
        gap: 3rem;
        margin-top: 2.5rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .accommodation-card {
        display: flex;
        flex-direction: column;
    }

    .card-image,
    .card-image2 {
        height: 240px;
        flex-shrink: 0;
    }

    .card-content {
        padding: 1.8rem;
        flex: 1;
    }

    .card-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    /* Accommodation Page Cards */
    .accom-card-grid {
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }

    .accom-info-box {
        padding: 40px 35px;
    }

    .accom-heading {
        font-size: 1.8rem;
    }

    .accom-text {
        font-size: 0.95rem;
    }


    /* ========================================
       6. EXPERIENCE CARDS - SIDE BY SIDE
       ======================================== */

    .experiences-section {
        padding: 5rem 2rem;
    }

    .experiences-container {
        gap: 3.5rem;
    }

    .experience-card {
        border-radius: 18px;
        margin-bottom: 2.5rem;
    }

    /* Keep side-by-side layout at 1024px */
    .experience-content-wrapper {
        display: flex !important;
        flex-direction: row !important;
        min-height: 450px;
    }

    /* Maintain alternating layouts */
    .experience-card:nth-child(even) .experience-content-wrapper {
        flex-direction: row-reverse !important;
    }

    /* Image side */
    .experience-image {
        flex: 1;
        min-height: 350px;
        width: 50%;
    }

    /* Content side */
    .experience-content {
        flex: 1;
        padding: 2.5rem 2rem;
    }

    .experience-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }

    /* Keep the side accent visible */
    .experience-title::before {
        display: block;
        left: -1rem;
        width: 4px;
        height: 60%;
    }

    .experience-description {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.8rem;
    }

    .experience-highlight {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }


    /* ========================================
       7. GALLERY SECTIONS - SHORTER IMAGES
       ======================================== */

    /* Main Gallery Grid - 2 Columns with SHORTER images */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2.5rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-item {
        border-radius: 15px;
    }

    /* SHORTER gallery images - was too tall */
    .gallery-image {
        height: 220px; /* Reduced from 280px */
    }

    .gallery-caption {
        padding: 1.5rem;
    }

    .gallery-caption h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .gallery-caption p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    

    /* ========================================
       8. OBC GALLERY - 2x2 GRID WITH SPACING
       ======================================== */

    .obc-gallery-section {
        padding: 3rem 2%;
    }

    /* 2x2 Grid with proper spacing */
    .obc-gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 COLUMNS */
        gap: 2rem; /* Good spacing between items */
        max-width: 900px;
        margin: 0 auto;
    }

    /* OBC Gallery items - Controlled size */
    .obc-gallery-item {
        position: relative;
        background: #f5f5f5;
        border-radius: 12px;
        overflow: hidden;
        width: 100%;
        min-height: 250px;
        max-height: 350px; /* Prevent too tall */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem;
    }

    .obc-gallery-item img {
        object-fit: contain;
        object-position: center;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 320px; /* Controlled height */
        display: block;
    }

    /* First item - no special treatment */
    .obc-gallery-item:first-child {
        grid-column: span 1;
    }

    /* Shadow for image separation */
    .obc-gallery-item img {
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    }


    /* ========================================
       9. OBC ACCOMMODATION PAGE
       ======================================== */

    .obc-content-section {
        padding: 3.5rem 2%;
    }

    .obc-content-grid {
        grid-template-columns: 2fr 1fr;
        gap: 2.5rem;
    }

    .obc-main-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.3rem;
    }

    .obc-description {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* Feature Cards - 2 Columns */
    .obc-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .obc-feature-card {
        padding: 1.5rem;
    }

    .obc-feature-icon {
        width: 48px;
        height: 48px;
    }

    .obc-feature-title {
        font-size: 1.1rem;
    }

    .obc-feature-desc {
        font-size: 0.95rem;
    }

    /* Sidebar */
    .obc-sidebar {
        padding: 2rem;
        top: 20px;
    }

    .obc-capacity-icon {
        width: 64px;
        height: 64px;
    }

    .obc-capacity-text {
        font-size: 1.2rem;
    }

    /* Room Details */
    .obc-room-details h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .obc-room-item {
        padding: 1.5rem;
    }

    .obc-room-icon {
        width: 50px;
        height: 50px;
    }

    .obc-room-info h4 {
        font-size: 1.2rem;
    }

    .obc-room-info p {
        font-size: 1rem;
    }

    /* Camping Section */
    .obc-camping-title {
        font-size: 2.2rem;
    }

    .obc-bring-box {
        padding: 2rem;
    }

    .obc-bring-title {
        font-size: 1.2rem;
    }


    /* ========================================
       10. CTA SECTION WITH VIDEO
       ======================================== */

    .cta-section {
        margin: 3rem 2rem;
        border-radius: 18px;
    }

    .cta-container {
        grid-template-columns: 1fr 1fr;
        min-height: 550px;
    }

    .video-card {
        padding: 2.5rem;
    }

    .video-frame {
        max-width: 420px;
        aspect-ratio: 16/10;
        border-radius: 15px;
    }

    .content-card {
        padding: 2.5rem 2rem;
    }

    .cta-title {
        font-size: 2.2rem;
        margin-bottom: 1.3rem;
    }

    .cta-text {
        font-size: 1.05rem;
        margin-bottom: 1.8rem;
    }

    .cta-features li {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }

    .cta-button {
        padding: 1.1rem 2.3rem;
        font-size: 1rem;
    }


    /* ========================================
       11. ABOUT & PILLARS SECTIONS
       ======================================== */

    .about {
        padding: 4.5rem 0 3rem 0;
    }

    .content-wrapper2 {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }

    .about-image {
        height: auto;
        max-height: 500px;
        border-radius: 12px;
    }

    .about-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    /* Pillars - 3 Columns */
    .pillars-section {
        padding: 3rem 0 4.5rem 0;
    }

    .pillars {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .pillar {
        padding: 2rem;
    }

    .pillar-icon img {
        width: 60px;
        height: 60px;
    }

    .pillar h3 {
        font-size: 1.4rem;
        margin: 1rem 0;
    }

    .pillar p {
        font-size: 1rem;
        line-height: 1.6;
    }


    /* ========================================
       12. CONTACT SECTION
       ======================================== */

    .contact,
    .contact-section {
        padding: 4.5rem 0;
    }

    .contact-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }

    .contact-item {
        padding: 1.5rem;
    }


    /* ========================================
       13. FOOTER - 4 COLUMNS LAYOUT
       ======================================== */

    .footer-modern {
        padding: 3rem 2rem 1.5rem;
    }

    /* Footer Grid - 4 columns like desktop */
    .footer-content-modern {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2rem;
        max-width: 1100px;
        margin: 0 auto;
    }

    /* Brand section - Side position */
    .brand-section {
        grid-column: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding-right: 2rem;
        border-right: 1px solid rgba(108, 117, 125, 0.2);
        border-bottom: none;
        margin-bottom: 0;
    }

    .brand-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
        margin-left: 0;
    }

    .brand-section p {
        max-width: 250px;
        margin-bottom: 1.5rem;
        text-align: left;
        font-size: 0.95rem;
    }

    .social-links {
        justify-content: flex-start;
        gap: 0.8rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* Footer sections */
    .footer-section-modern {
        padding-top: 0.5rem;
        text-align: left;
    }

    .footer-section-modern h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: left;
        padding-bottom: 0.5rem;
    }

    .footer-section-modern a,
    .footer-section-modern p {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
        text-align: left;
    }

    .footer-bottom-modern {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }


    /* ========================================
       14. HIGHLIGHT CARD
       ======================================== */

    .highlight-wrapper {
        padding: 2rem;
    }

    .highlight-card {
        padding: 3rem 2.5rem;
        margin: 2rem 0;
        border-radius: 12px;
        max-width: 950px;
    }

    .highlight-card h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .highlight-card p {
        font-size: 1.1rem;
        max-width: 650px;
    }


    /* ========================================
       15. SECTION HEADERS & INTROS
       ======================================== */

    .section-header {
        margin-bottom: 4.5rem;
    }

    .accom-intro-section {
        margin-bottom: 5.5rem;
        padding: 4rem 2rem 0;
    }

    .accom-intro-section h2 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .accom-intro-section p {
        font-size: 1.2rem;
        line-height: 1.8;
        max-width: 850px;
        margin-bottom: 3rem;
    }

    .accom-stats-row {
        gap: 3.5rem;
        margin-top: 3rem;
    }

    .accom-stat-number {
        font-size: 2.5rem;
    }

    .accom-stat-label {
        font-size: 0.9rem;
    }

}

/* ============================================
   END OF 1024px BREAKPOINT
   ============================================ */


/* ============================================
   REFINED 768px BREAKPOINT (TABLETS)
   Instructions: Find your @media (max-width: 768px) 
   and REPLACE/ADD these specific sections
   ============================================ */

@media (max-width: 768px) {

    /* ========================================
       1. NAVIGATION REFINEMENTS
       ======================================== */
    
    /* Logo - Better sizing */
    .logo img {
        height: 65px; /* Slightly larger than before for better visibility */
        margin-right: 0;
        transition: height 0.3s ease;
    }
    
    /* Navigation container - Better spacing */
    .navlogo {
        justify-content: space-between;
        padding: 12px 24px; /* More breathing room */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    }

    /* Hide desktop navigation */
    .topnav {
        display: none;
    }

    /* Show hamburger menu */
    .hamburger {
        display: flex !important;
        z-index: 1001;
    }

    /* Mobile menu improvements */
    .mobile-menu {
        width: 85%; /* Not full width - better UX */
        max-width: 320px;
        padding: 90px 24px 24px; /* Better top padding */
    }

    /* Mobile menu items - better spacing */
    .mobile-menu-item {
        padding: 1rem 0.5rem;
        font-size: 15px; /* Slightly smaller for tablets */
        margin-bottom: 0.5rem;
    }

    /* Mobile booking section spacing */
    .mobile-booking-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .mobile-booking-item {
        padding: 0.9rem;
        margin-bottom: 0.4rem;
    }


    /* ========================================
       2. CARDS REFINEMENTS (Activity & Accommodation)
       ======================================== */

    /* Activity Cards Grid */
    .activities-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    /* Individual Activity Card */
    .activity-card {
        display: flex;
        flex-direction: column;
        height: 100%; /* Consistent card heights */
    }

    /* Activity Image - Better aspect ratio */
    .activity-image {
        height: 180px; /* Consistent height */
        width: 100%;
        flex-shrink: 0;
    }

    /* Activity Content - Better spacing */
    .activity-content {
        padding: 1.2rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    /* Activity Title */
    .activity-card h3 {
        font-size: 1.15rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }

    /* Activity Description */
    .activity-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        flex: 1; /* Push button to bottom */
    }

    /* Feature Tags */
    .activity-features {
        margin-bottom: 1rem;
        gap: 0.4rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.7rem;
    }

    /* Learn More Button */
    .learn-more-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        margin-top: auto; /* Stick to bottom */
    }

    /* Accommodation Cards */
    .accommodation-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .accommodation-card {
        display: flex;
        flex-direction: column;
    }

    /* Card Images - Consistent height */
    .card-image, .card-image2 {
        height: 200px;
        flex-shrink: 0;
    }

    .card-content {
        padding: 1.5rem;
        flex: 1;
    }

    .card-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }


    /* ========================================
       3. EXPERIENCE CARDS REFINEMENTS
       ======================================== */

        .experiences-section {
        padding: 4rem 1.5rem;
    }

    .experiences-container {
        gap: 3rem;
    }

    .experience-card {
        border-radius: 16px;
        margin-bottom: 2rem;
    }

    /* FORCE VERTICAL STACKING */
    .experience-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        min-height: auto;
    }

    /* RESET alternating layouts */
    .experience-card:nth-child(even) .experience-content-wrapper {
        flex-direction: column !important;
    }

    /* Image on top */
    .experience-image {
        width: 100% !important;
        min-height: 250px;
        max-height: 350px;
        order: 1;
    }

    .experience-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Content below */
    .experience-content {
        width: 100% !important;
        padding: 2rem 1.5rem;
        order: 2;
    }

    .experience-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .experience-title::before {
        display: none;
    }

    .experience-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .experience-highlight {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
    }

    /* ========================================
       4. FOOTER REFINEMENTS
       ======================================== */

    .footer-modern {
        padding: 3rem 1.5rem 1.5rem;
    }

    /* Footer Grid - 3 columns on tablets */
    .footer-content-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    /* Brand section - Keep centered, full width on top */
    .brand-section {
        grid-column: 1 / -1; /* Span full width */
        display: flex;
        flex-direction: column; /* Keep vertical - THIS IS KEY */
        align-items: center;
        text-align: center;
        padding: 0 0 2rem 0;
        border-right: none;
        border-bottom: 1px solid rgba(108, 117, 125, 0.2);
        margin-bottom: 1.5rem;
    }

    /* Logo - Keep original size, not compressed */
    .brand-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem; /* Space below logo */
        margin-right: 0;
        flex-shrink: 0; /* Prevent compression */
    }

    .brand-section p {
        max-width: 280px;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    /* Social links - Centered */
    .social-links {
        justify-content: center;
    }

    /* Footer sections - Centered on tablets */
    .footer-section-modern {
        text-align: center;
    }

    .footer-section-modern h3 {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 1rem;
        width: 100%;
        display: inline-block;
    }

    .footer-section-modern a,
    .footer-section-modern p {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }

    /* Footer bottom */
    .footer-bottom-modern {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }


    /* ========================================
       BONUS: GENERAL SPACING IMPROVEMENTS
       ======================================== */

    /* Main content adjustments */
    .main-content {
        padding: 3rem 1.5rem;
        margin-top: 100px;
    }

    /* Section titles */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    /* Hero sections */
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* IMPROVED: Better background positioning for tablets */
    .slide {
        background-position: center center !important;
    }
    

    /* ========================================
       GALLERY SECTION IMPROVEMENTS - Single Column
       ======================================== */

    /* Gallery Grid - Single column for better visibility */
    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr; /* ONE COLUMN */
        gap: 2rem;
        margin-top: 2rem;
        max-width: 600px; /* Prevent stretching too wide */
        margin-left: auto;
        margin-right: auto;
    }

    /* Gallery items - Full width */
    .gallery-item {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        width: 100%;
    }

    .gallery-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    /* Gallery images - MUCH BIGGER */
    .gallery-image {
        height: 400px; /* Tall and prominent */
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .gallery-item:hover .gallery-image img {
        transform: scale(1.05);
    }

    /* Gallery captions - Better readability */
    .gallery-caption {
        padding: 2rem;
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    }

    .gallery-caption h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #f47C20;
    }

    .gallery-caption p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        color: #555;
    }

    /* Gallery features badges */
    .gallery-features {
        display: flex;
        gap: 0.6rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    /* Gallery mosaic - Convert to single column */
    .gallery-mosaic {
        display: grid;
        grid-template-columns: 1fr; /* ONE COLUMN */
        gap: 1.5rem;
        margin-top: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Remove mosaic special sizing - all uniform */
    .mosaic-large,
    .mosaic-wide,
    .mosaic-tall {
        grid-column: span 1;
        grid-row: span 1;
        height: auto;
    }

    .gallery-mosaic .gallery-item {
        height: auto;
    }

    .gallery-mosaic .gallery-item img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    

    /* OBC Gallery Grid (for accommodation2.html) */
    .obc-gallery-section {
        padding: 2.5rem 4%;
    }

    .obc-gallery-grid {
        grid-template-columns: 1fr; /* ONE COLUMN */
        gap: 1.5rem;
        max-width: 600px;
        margin: 0 auto;
    }

    /* All OBC gallery items - Smart adaptive container */
    .obc-gallery-item {
        position: relative;
        background: #f5f5f5; /* Subtle gray background */
        border-radius: 12px;
        overflow: hidden;
        width: 100%;
        min-height: 250px; /* Minimum height */
        max-height: 450px; /* Maximum height to prevent too tall */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem; /* Padding around image */
    }

    .obc-gallery-item img {
        object-fit: contain; /* NEVER crop - show full image */
        object-position: center;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 420px; /* Slightly less than container max */
        display: block;
    }

    /* First item - no special treatment */
    .obc-gallery-item:first-child {
        grid-column: span 1;
    }

    /* Optional: Add subtle shadow to separate image from background */
    .obc-gallery-item img {
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    }

    /* Contact section */
    .contact-info {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    /* Pillars section */
    .pillars {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 2rem;
    }

    /* About section improvements */
    .content-wrapper2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        height: 350px; /* Better height */
        border-radius: 12px;
    }

    .about-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }


    /*about us page*/


            .story-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .story-image {
                height: 300px;
            }

            .philosophy-cards {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .difference-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .story-text h2,
            .philosophy-header h2,
            .difference-content h2,
            .name-section h2,
            .promise-content h2 {
                font-size: 2rem;
            }
}


/* ============================================
   REFINED 480px BREAKPOINT (MOBILE PHONES)
   Instructions: Find your @media (max-width: 480px) 
   and REPLACE the OBC-related sections with these
   ============================================ */

@media (max-width: 480px) {

    /* ========================================
       OBC ACCOMMODATION PAGE FIXES
       ======================================== */

    /* Gallery Section - Keep what's working */
    .obc-gallery-section {
        padding: 2rem 1rem;
    }

    .obc-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .obc-gallery-item {
        min-height: 200px;
        max-height: 350px;
        padding: 0.5rem;
    }

    /* Content Section - Better spacing */
    .obc-content-section {
        padding: 2rem 1rem;
    }

    .obc-content-grid {
        grid-template-columns: 1fr; /* Stack everything vertically */
        gap: 2rem;
    }

    /* Main Content Area */
    .obc-main-content h2 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .obc-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* FEATURE CARDS - Single Column for Better Fit */
    .obc-features-grid {
        grid-template-columns: 1fr; /* ONE COLUMN - no more cramped 2-col */
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .obc-feature-card {
        padding: 1.2rem;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .obc-feature-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        margin-bottom: 0; /* Remove bottom margin, use gap instead */
    }

    .obc-feature-title {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .obc-feature-desc {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Sidebar - Full width on mobile */
    .obc-sidebar {
        position: static;
        width: 100%;
        padding: 1.5rem;
        margin-top: 0; /* Remove top margin since it's stacked */
        border-radius: 10px;
    }

    .obc-capacity-info {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .obc-capacity-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }

    .obc-capacity-text {
        font-size: 1.1rem;
    }

    /* Availability Section */
    .obc-availability-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    /* CTA Buttons */
    .obc-cta-button {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        width: 100%;
    }

    .obc-cta-secondary {
        margin-top: 0.8rem;
    }

    .obc-info-text {
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }

    /* Room Details Section */
    .obc-room-details {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .obc-room-details h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .obc-rooms-list {
        gap: 1rem;
    }

    .obc-room-item {
        padding: 1.2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .obc-room-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }

    .obc-room-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .obc-room-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Camping Section */
    .obc-camping-section {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }

    .obc-camping-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .obc-camping-title {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .obc-bring-box {
        margin-top: 1.5rem;
        padding: 1.2rem;
        border-radius: 10px;
    }

    .obc-bring-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .obc-bring-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Contact Section */
    .obc-contact-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .obc-contact-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .obc-contact-text {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    /* Airbnb Info */
    .obc-airbnb-info {
        font-size: 0.8rem;
        margin-top: 0.8rem;
        flex-wrap: wrap;
    }

    /* Badge */
    .obc-badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        border-radius: 20px;
    }


    /* ========================================
       HERO SECTION TEXT FIXES
       ======================================== */

    /* Main Hero Section */
            .hero {
                height: 100vh;
                min-height: 500px;
                padding: 1rem;
            }
            
            .hero-content1 {
                max-width: 100%;
                padding: 0 1rem;
            }

            .hero-title {
                font-size: 1.8rem;
                line-height: 1.2;
                margin-bottom: 0.8rem;
                font-weight: 300;
            }

            .hero-subtitle {
                font-size: 0.95rem;
                line-height: 1.4;
                margin-bottom: 1rem;
            }

            .hero-description {
                font-size: 0.9rem;
                line-height: 1.5;
                margin-bottom: 1.2rem;
                max-width: 95%;
            }
            
            /* CRITICAL FIX: Ensure full coverage on mobile */
            .slide {
                background-position: center center !important;
                background-size: cover !important;
            }

            .cta-button {
                padding: 12px 30px;
                font-size: 0.9rem;
            }

   

    /* ========================================
       FOOTER LAYOUT FIXES
       ======================================== */

    .footer-modern {
        padding: 2rem 1rem 1.5rem;
    }

    /* Footer Grid - Single Column, Everything Stacked */
    .footer-content-modern {
        grid-template-columns: 1fr; /* ONE COLUMN */
        gap: 2rem;
        text-align: center;
    }

    /* Brand Section - Centered, Proper Spacing */
    .brand-section {
        grid-column: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 0 1.5rem 0;
        margin-bottom: 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(108, 117, 125, 0.2);
    }

    /* Logo - Proper Size */
    .brand-logo {
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
        margin-right: 0;
        flex-shrink: 0;
    }

    .brand-section p {
        font-size: 0.9rem;
        line-height: 1.5;
        max-width: 280px;
        margin-bottom: 1rem;
        text-align: center;
    }

    /* Social Links - Centered */
    .social-links {
        display: flex;
        gap: 0.8rem;
        justify-content: center;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    /* Footer Sections - All Centered */
    .footer-section-modern {
        padding: 0;
        text-align: center;
    }

    .footer-section-modern h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        text-align: center;
        width: 100%;
        display: block;
        padding-bottom: 0.5rem;
    }

    .footer-section-modern a,
    .footer-section-modern p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.6rem;
        text-align: center;
        display: block;
    }

    .footer-section-modern p strong {
        font-size: 0.9rem;
        display: block;
        margin-bottom: 0.3rem;
    }

    /* Footer Bottom */
    .footer-bottom-modern {
        margin-top: 1.5rem;
        padding-top: 1.2rem;
        font-size: 0.8rem;
        text-align: center;
    }


    /* ========================================
       PILLARS SECTION - Single Column
       ======================================== */

    .pillars-section {
        padding: 2rem 0 3rem 0;
    }

    .pillars-container {
        padding: 0 1rem;
    }

    .pillars {
        display: flex;
        flex-direction: column; /* ONE AT A TIME */
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .pillar {
        padding: 1.5rem;
        text-align: center;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .pillar-icon img {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .pillar h3 {
        font-size: 1.3rem;
        margin: 0.8rem 0;
        color: #f47C20;
    }

    .pillar p {
        font-size: 0.9rem;
        line-height: 1.6;
    }


    /* ========================================
       ACCOMMODATION SECTION - Single Column
       ======================================== */

    .accommodation {
        padding: 3rem 0;
    }

    .accommodation-content {
        padding: 0 1rem;
    }

    .accommodation-grid {
        display: flex;
        flex-direction: column; /* ONE AT A TIME */
        gap: 2rem;
        margin-top: 2rem;
        align-items: center;
    }

    .accommodation-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .accommodation-card .card-image,
    .accommodation-card .card-image2 {
        height: 220px;
        width: 100%;
    }

    .accommodation-card .card-content {
        padding: 1.5rem;
    }

    .accommodation-card .card-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .accommodation-card .card-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .accommodation-card .card-content ul {
        text-align: left;
        margin: 0 auto;
    }

    .accommodation-card .card-content ul li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }


    /* ========================================
       CTA SECTION WITH VIDEO - Stack Vertically
       ======================================== */

    .cta-section {
        margin: 2rem 1rem;
        border-radius: 15px;
        overflow: hidden;
    }

    .cta-container {
        grid-template-columns: 1fr; /* SINGLE COLUMN */
        min-height: auto;
    }

    /* Video Card - Top Position */
    .video-card {
        padding: 1.5rem 1rem 1rem;
        order: 1; /* Video first */
    }

    .video-frame {
        max-width: 100%;
        aspect-ratio: 16/10;
        border-radius: 12px;
    }

    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-control-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    /* Content Card - Bottom Position */
    .content-card {
        padding: 1rem 1.5rem 2rem;
        order: 2; /* Content second */
    }

    .cta-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1rem;
    }

    .cta-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .cta-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }

    .cta-features {
        margin-bottom: 1.5rem;
    }

    .cta-features li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        border-radius: 30px;
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        gap: 8px;
    }


    /* ========================================
       ACTIVITIES SECTION - Single Column
       ======================================== */

    .activities {
        padding: 2.5rem 1rem;
        margin: 0;
    }

    .activities .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .activity-section {
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .section-subtitle::after {
        width: 50px;
    }

    /* Activities Grid - Single Column */
    .activities-grid {
        display: flex !important;
        flex-direction: column !important; /* ONE AT A TIME */
        gap: 1.5rem;
        margin-top: 1.5rem;
        grid-template-columns: 1fr !important; /* Override any grid */
    }

    .activity-card {
        width: 100% !important;
        max-width: 400px;
        margin: 0 auto !important;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .activity-image {
        height: 200px;
        width: 100%;
    }

    .activity-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .activity-content {
        padding: 1.2rem;
    }

    .activity-header {
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .activity-icon {
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .activity-title-group {
        flex: 1;
    }

    .activity-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .activity-distance {
        font-size: 0.7rem;
        padding: 0.25rem 0.7rem;
        margin-top: 0.4rem;
    }

    .activity-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #555;
    }

    .activity-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-bottom: 1rem;
    }

    .feature-tag {
        background: rgba(244, 124, 32, 0.1);
        color: #f47C20;
        padding: 0.3rem 0.7rem;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 500;
    }

    .learn-more-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }

    /* Highlight Card */
    .highlight-wrapper {
        padding: 1rem;
    }

    .highlight-card {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
        border-radius: 10px;
    }

    .highlight-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .highlight-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }



        /* EXPERIENCE CARDS - Mobile Phone Optimized */
    .experiences-section {
        padding: 3rem 1rem;
    }

    .experiences-container {
        gap: 2rem;
    }

    .experience-card {
        border-radius: 15px;
        margin-bottom: 1.5rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    /* FORCE VERTICAL STACKING */
    .experience-content-wrapper {
        display: flex !important;
        flex-direction: column !important;
        min-height: auto;
    }

    /* RESET alternating layouts */
    .experience-card:nth-child(even) .experience-content-wrapper {
        flex-direction: column !important;
    }

    /* Image on top - optimized height for mobile */
    .experience-image {
        width: 100% !important;
        min-height: 200px;
        max-height: 280px;
        order: 1;
        flex-shrink: 0;
    }

    .experience-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Content below - compact and readable */
    .experience-content {
        width: 100% !important;
        padding: 1.5rem 1.2rem;
        order: 2;
        background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    }

    .experience-title {
        font-size: 1.35rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        color: #2d4a22;
        font-weight: 400;
    }

    .experience-title::before {
        display: none; /* Hide side accent on mobile */
    }

    .experience-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
        color: #495057;
    }

    .experience-highlight {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        display: inline-block;
    }

    /* ========================================
       ALTERNATIVE: 2-COLUMN FEATURE CARDS
       If you prefer 2 columns, UNCOMMENT below
       and COMMENT OUT the single column above
       ======================================== */

    /*
    .obc-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .obc-feature-card {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .obc-feature-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }

    .obc-feature-title {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .obc-feature-desc {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    */

}


/* Animations - optimized for mobile performance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.experience-card {
    animation: none;
}

.experience-card.animate-in {
    animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #D4A574;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 15px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   OPTIONAL: 4K+ DISPLAY ENHANCEMENT
   Subtle improvements for 2560px+ screens
   ======================================== */

@media (min-width: 2560px) {
    /* Slightly larger base font for readability */
    body {
        font-size: 18px;
    }
    
    /* Hero titles */
    .hero-title {
        font-size: 4.5rem;
    }
            
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-title1 {
        font-size: 4rem;
    }
    
    /* Experience card titles */
    .experience-title {
        font-size: 2.5rem;
    }
    
    /* More breathing room in sections */
    section,
    .main-content {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
    /* CTA section */
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-text {
        font-size: 1.3rem;
    }
    
    /* Activity and accommodation cards */
    .activity-card h3,
    .card-title {
        font-size: 1.8rem;
    }
    
    .activity-description,
    .card-content p {
        font-size: 1.1rem;
    }
    
    /* Footer sections */
    .footer-section-modern h3 {
        font-size: 1.2rem;
    }
    
    .footer-section-modern a,
    .footer-section-modern p {
        font-size: 1rem;
    }
}

/* ======================================== */

