        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Hero Section with Parallax Effect */
        .hero {
            margin-top: 82px;
            background: linear-gradient(rgba(45, 90, 61, 0.8), rgba(26, 36, 30, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23333" width="1200" height="800"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 140px 0 100px;
            text-align: center;
            color: #FFFFFF;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom, transparent, #FFFFFF);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #C6A867;
            background: rgba(198, 168, 103, 0.15);
            padding: 8px 20px;
            border-radius: 100px;
            margin-bottom: 24px;
            border: 1px solid rgba(198, 168, 103, 0.3);
            backdrop-filter: blur(10px);
        }

        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 72px;
            font-weight: 400;
            margin-bottom: 24px;
            font-style: italic;
            line-height: 1.2;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 16px;
            opacity: 0.95;
        }

        .hero-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 40px;
            background: #C6A867;
            color: #1A241E;
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 100px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(198, 168, 103, 0.4);
        }

        .hero-cta:hover {
            background: #D4B676;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(198, 168, 103, 0.5);
        }

        /* Section Styles */
        .section {
            padding: 100px 0;
        }
        
        .section-camp {
            background: #FFFFFF;
        }
        
        .section-alt {
            background: #FAFAF8;
        }

        .section-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 52px;
            font-weight: 400;
            color: #1A241E;
            margin-bottom: 16px;
            text-align: center;
        }

        .section-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 19px;
            color: #666;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 64px;
            line-height: 1.7;
        }

        /* Night Tourism Section - DARK THEME */
        .night-tourism {
            background: linear-gradient(135deg, #1A241E 0%, #0F1612 100%);
            padding: 100px 0;
            color: #FFFFFF;
            position: relative;
            overflow: hidden;
        }

        .night-tourism::before {
            content: '✨';
            position: absolute;
            font-size: 200px;
            opacity: 0.03;
            top: -50px;
            right: -50px;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-on-scroll {
            opacity: 0;
        }

        .animate-on-scroll.animated {
            animation: fadeInUp 0.8s ease forwards;
        }

        .slide-left {
            opacity: 0;
        }

        .slide-left.animated {
            animation: slideInLeft 0.8s ease forwards;
        }

        .slide-right {
            opacity: 0;
        }

        .slide-right.animated {
            animation: slideInRight 0.8s ease forwards;
        }

        .scale-in {
            opacity: 0;
        }

        .scale-in.animated {
            animation: scaleIn 0.8s ease forwards;
        }

        /* Staggered animation delays */
        .animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
        .animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
        .animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
        .animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }
        .animate-on-scroll:nth-child(5) { animation-delay: 0.5s; }
        .animate-on-scroll:nth-child(6) { animation-delay: 0.6s; }
        .animate-on-scroll:nth-child(7) { animation-delay: 0.7s; }
        .animate-on-scroll:nth-child(8) { animation-delay: 0.8s; }

        .night-tourism .section-title {
            color: #FFFFFF;
        }

        .night-tourism .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        .night-activities {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .night-activity {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(198, 168, 103, 0.2);
            border-radius: 20px;
            padding: 36px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .night-activity:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(198, 168, 103, 0.4);
            transform: translateY(-6px);
        }

        .night-activity-icon {
            width: 64px;
            height: 64px;
            background: rgba(198, 168, 103, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .night-activity h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 26px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .night-activity-time {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #C6A867;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .night-activity p {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.8;
        }

        /* Camping Section */
        .camping-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 64px;
            padding: 40px;
            background: linear-gradient(135deg, #2D5A3D 0%, #3A5F4D 100%);
            border-radius: 24px;
            color: #FFFFFF;
        }

        .camping-intro h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .camping-intro p {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            line-height: 1.8;
            opacity: 0.95;
        }

        .camping-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .camping-site {
            background: #FFFFFF;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .camping-site:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        }

        .camping-image {
            width: 100%;
            height: 300px;
            background: #E5E5E5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 72px;
            position: relative;
        }

        .camping-featured {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(45, 90, 61, 0.95);
            backdrop-filter: blur(10px);
            color: #FFFFFF;
            padding: 8px 20px;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .camping-content {
            padding: 32px;
        }

        .camping-site h3 {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 28px;
            font-weight: 600;
            color: #1A241E;
            margin-bottom: 12px;
        }

        .camping-location {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #999;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .camping-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .camping-facilities {
            margin-bottom: 24px;
        }

        .facilities-title {
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #2D5A3D;
            margin-bottom: 12px;
        }

        .facilities-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .facility-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            color: #666;
        }

        .facility-icon {
            color: #2D5A3D;
            font-size: 16px;
        }

        /* Ensure the price area stays aligned since we removed the text button */
        .camping-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            border-top: 1px solid #F0F0F0;
            min-height: 72px; /* Maintains consistent card height */
        }
        .price-info {
            font-family: 'DM Sans', sans-serif;
        }

        .price-label {
            font-size: 13px;
            color: #999;
            margin-bottom: 4px;
        }

        .price-amount {
            font-size: 28px;
            font-weight: 700;
            color: #2D5A3D;
        }

        .price-per {
            font-size: 14px;
            color: #999;
            font-weight: 400;
        }

        .camping-cta {
            padding: 12px 24px;
            background: #2D5A3D;
            color: #FFFFFF;
            border: none;
            border-radius: 100px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .camping-cta:hover {
            background: #3A5F4D;
            transform: translateY(-2px);
        }

        /* Elegant WhatsApp Icon Button */
        .camping-whatsapp-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            background-color: #25D366 !important; /* Forces the official Green */
            color: #FFFFFF !important; /* Keeps icon white */
            text-decoration: none;
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .camping-whatsapp-btn:hover {
            background-color: #128C7E !important; /* Authentic Dark Teal Hover */
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(18, 140, 126, 0.4);
        }
        
        /* Add a subtle pulse animation to make it notice-able */
        .camping-whatsapp-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
            pointer-events: none;
        }
        
        .camping-whatsapp-btn svg {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }
        
        .camping-whatsapp-btn:hover::after {
            transform: scale(1.2);
            opacity: 0;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 42px;
            }
            
            .night-activities,
            .camping-grid {
                grid-template-columns: 1fr;
            }
        }