/* Critical CSS - Load above the fold content first */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9fafb;
        }
        
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        /* Header styles */
        header {
            position: sticky;
            top: 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 100;
            transition: transform 0.3s cubic-bezier(.4,0,.2,1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #1a936f;
            font-weight: bold;
            font-size: 1.25rem;
            font-family: 'Montserrat', sans-serif;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 0.75rem;
        }
        /* Navbar improvements */
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .desktop-nav a {
            color: #111;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0.75rem;
            border-radius: 0.375rem;
            transition: background 0.2s;
            font-family: 'Poppins', sans-serif;
        }
        .desktop-nav a.btn {
            background: #1a936f;
            color: #fff !important;
            font-weight: bold;
            margin-left: 1rem;
            padding: 0.5rem 1.25rem;
            border-radius: 0.375rem;
            box-shadow: 0 2px 8px rgba(26,147,111,0.08);
            border: none;
        }
        .desktop-nav a:not(.btn):hover {
            background: #f3f4f6;
        }
        /* Mobile nav improvements */
        .mobile-menu a {
            color: #111;
            text-decoration: none;
            font-weight: 500;
            padding: 0.75rem 0;
            font-family: 'Poppins', sans-serif;
        }
        .mobile-menu a.btn {
            background: #1a936f;
            color: #fff !important;
            font-weight: bold;
            margin-top: 0.75rem;
            padding: 0.5rem 1.25rem;
            border-radius: 0.375rem;
            text-align: center;
        }
        .hero {
            background: url('./assets/img/header.webp') center center/cover no-repeat;
            box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.5);
            color: white;
            padding: 10rem 0 8rem 0;
            text-align: center;
            position: relative;
            min-height: 70vh;
            display: flex;
            align-items: center;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(26,147,111,0.35);
            z-index: 1;
            /* Add a weak shadow overlay */
            box-shadow: 0 0 80px 40px rgba(0,0,0,0.18) inset;
        }
        .hero > .container {
            position: relative;
            z-index: 2;
            width: 100%;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 900;
            text-shadow: 0 2px 16px rgba(0,0,0,0.18);
        }
        .hero p {
            font-size: 1.2rem;
            text-shadow: 0 2px 8px rgba(0,0,0,0.12);
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
        }
        .hero .btn {
            margin-top: 2rem;
            font-size: 1.1rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            border: none;
            outline: none;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(26,147,111,0.08);
            background: #1a936f;
            color: #fff !important;
            border-radius: 2rem;
            text-decoration: none;
            padding: 0.75rem 2.2rem;
            display: inline-block;
            transition: background 0.2s, color 0.2s;
        }
        .hero .btn:hover {
            background: #166c54;
            color: #fff;
            text-decoration: none;
        }
        /* Remove old hero image container */
        .hero-image-container { display: none; }
        
        /* Section styling */
        section {
            padding: 3rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: #1a936f;
        }
        
        /* Package cards */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .package-card {
            background: white;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        
        .card-image {
            height: 160px;
            background-color: #e5e7eb;
            position: relative;
            overflow: hidden;
        }
        /* Slider styles for buggy/motorbike */
        .slider,
        .card-image.slider {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            min-height: 120px;
            max-height: 220px;
            height: auto;
            background: #e5e7eb;
            overflow: hidden;
        }
        .slider-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
            position: absolute; /* <-- always absolute */
            left: 0; top: 0;
            transition: opacity 0.3s;
            border-radius: 0.5rem 0.5rem 0 0;
            background: #e5e7eb;
            z-index: 1; /* <-- ensure below price-badge */
        }
        .slider-img.active {
            display: block;
            opacity: 1;
            z-index: 1;
        }
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(26,147,111,0.8);
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.85;
            transition: background 0.2s;
        }
        .slider-btn.prev { left: 8px; }
        .slider-btn.next { right: 8px; }
        .slider-btn:hover { background: #166c54; }
        .slider-dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 7px;
            z-index: 3;
        }
        .slider-dots .dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #fff;
            border: 1.5px solid #1a936f;
            opacity: 0.7;
            cursor: pointer;
            transition: background 0.2s, opacity 0.2s;
        }
        .slider-dots .dot.active {
            background: #1a936f;
            opacity: 1;
        }
        
        .card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        
        .card-title {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
            color: #1a936f;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .card-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        
        .card-list li {
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.25rem;
        }
        
        .card-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #1a936f;
        }
        
        .btn-select {
            display: block;
            width: 100%;
            padding: 0.75rem;
            background: #1a936f;
            color: white;
            border: none;
            border-radius: 0.375rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: auto; /* Stick to bottom */
            font-family: 'Montserrat', sans-serif;
        }
        
        .btn-select:hover {
            background: #166c54;
        }
        
        /* WhatsApp float button */
        .whatsapp-float {
            position: fixed;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.75rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 99;
            animation: pulse 2s infinite;
            text-decoration: none;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #4b5563;
            cursor: pointer;
        }
        
        .mobile-menu {
            display: none;
            flex-direction: column;
            padding: 1rem 0;
            border-top: 1px solid #e5e7eb;
        }
        
        .mobile-menu.active {
            display: flex;
        }
        
        .mobile-menu a {
            color: #111;
            text-decoration: none;
            font-weight: 500;
            padding: 0.75rem 0;
            font-family: 'Poppins', sans-serif;
        }
        .mobile-menu a.btn {
            background: #1a936f;
            color: #fff !important;
            font-weight: bold;
            margin-top: 0.75rem;
            padding: 0.5rem 1.25rem;
            border-radius: 0.375rem;
            text-align: center;
        }
        
        /* Form styles */
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            font-size: 1rem;
        }
        
        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: #1a936f;
            box-shadow: 0 0 0 3px rgba(26, 147, 111, 0.1);
        }
        
        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        /* Footer social icons */
        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .footer-socials a {
            color: #1a936f;
            font-size: 1.7rem;
            transition: color 0.2s;
            display: inline-flex;
            align-items: center;
        }
        .footer-socials a:hover {
            color: #166c54;
        }
        
        /* Back to hero button */
        .back-to-hero-float {
            position: fixed;
            bottom: 1.5rem;
            left: 1.5rem;
            width: 56px;
            height: 56px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a936f;
            box-shadow: 0 4px 10px rgba(0,0,0,0.18);
            z-index: 98;
            transition: background 0.2s, box-shadow 0.2s;
            text-decoration: none;
            border: 2px solid #1a936f;
        }
        .back-to-hero-float:hover {
            background: #e6f7f1;
            box-shadow: 0 6px 16px rgba(26,147,111,0.18);
        }
        @media (max-width: 576px) {
            .back-to-hero-float {
                width: 46px;
                height: 46px;
                left: 0.7rem;
                bottom: 0.7rem;
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 900px) {
            .container {
                max-width: 98vw;
            }
            .desktop-nav {
                gap: 1rem;
            }
            .hero {
                padding: 7rem 0 5rem 0;
                min-height: 55vh;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 4rem 0 3rem 0;
                min-height: 40vh;
            }
            .hero h1 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 576px) {
            .hero {
                padding: 2.5rem 0 2rem 0;
                min-height: 28vh;
            }
            .hero h1 {
                font-size: 1.2rem;
            }
            .container {
                padding: 0 0.5rem;
            }
            .desktop-nav {
                gap: 0.5rem;
            }
            .card-image,
            .slider,
            .card-image.slider {
                aspect-ratio: 16/10;
                min-height: 90px;
                max-height: 140px;
                height: auto;
            }
        }
        /* Responsive slider aspect ratio for mobile/desktop */
        .slider,
        .card-image.slider {
            aspect-ratio: 16/9;
            min-height: 120px;
            max-height: 220px;
            height: auto;
        }
        @media (max-width: 576px) {
            .slider,
            .card-image.slider {
                aspect-ratio: 16/10;
                min-height: 90px;
                max-height: 140px;
            }
        }
        
        /* Ensure price-badge is always visible and not hidden by overflow */
        .price-badge {
            display: block;
            width: fit-content;
            margin: 0.75rem auto 0.5rem auto;
            background: #fff;
            padding: 0.35rem 1.1rem;
            border-radius: 1.2rem;
            font-weight: bold;
            color: #1a936f;
            font-size: 1rem;
            box-shadow: 0 2px 8px rgba(26,147,111,0.10);
            border: 1.5px solid #1a936f;
            letter-spacing: 0.01em;
            text-align: center;
            z-index: 2;
        }
        
        /* Responsive: slightly smaller on mobile */
        @media (max-width: 576px) {
            .price-badge {
                font-size: 0.92rem;
                padding: 0.28rem 0.8rem;
                margin: 0.5rem auto 0.4rem auto;
            }
        }
