/* CSS Variables - Color Palette & Tokens */
        :root {
            /* User Requested Palette */
            --primary: #A5CF83;
            /* Lush green */
            --secondary: #F0E76F;
            /* Yellow */
            --accent: #ECB65F;
            /* Gold */
            --cta-main: #E89951;
            /* Orange */

            /* WhatsApp Color */
            --wa-green: #25D366;
            --wa-green-dark: #128C7E;

            /* Text & Background */
            --text-dark: #1A202C;
            --text-gray: #4A5568;
            --text-light: #718096;
            --bg-body: #FAFAFA;
            --bg-white: #FFFFFF;

            /* Shadows & Border Radius */
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px -5px rgba(232, 153, 81, 0.15);
            /* Orange tinted shadow */
            --shadow-float: 0 15px 35px rgba(0, 0, 0, 0.1);

            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 32px;

            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        /* Base Styles (Mobile First) */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            /* Padding bottom for mobile sticky CTA */
            padding-bottom: 76px;
        }

        @media (min-width: 768px) {
            body {
                padding-bottom: 0;
            }
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', serif;
            color: var(--text-dark);
            line-height: 1.2;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* Layout */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
        }

        .section-subtitle {
            color: var(--text-gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

        /* Header Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1rem 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
        }

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--cta-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo i {
            color: var(--primary);
            font-size: 1.2rem;
        }

        .desktop-nav {
            display: none;
        }

        @media (min-width: 768px) {
            header {
                padding: 1.2rem 0;
            }

            .logo {
                font-size: 1.6rem;
            }

            .desktop-nav {
                display: flex;
                gap: 2.5rem;
                align-items: center;
            }

            .desktop-nav a {
                font-weight: 500;
                color: var(--text-dark);
                font-size: 1rem;
                transition: var(--transition-fast);
            }

            .desktop-nav a:hover {
                color: var(--cta-main);
            }
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition-normal);
            border: none;
            outline: none;
            text-align: center;
            font-family: 'Outfit', sans-serif;
        }

        .btn-primary {
            background-color: var(--cta-main);
            color: var(--bg-white);
            box-shadow: 0 8px 20px rgba(232, 153, 81, 0.3);
        }

        .btn-primary:hover {
            background-color: #d1823a;
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(232, 153, 81, 0.4);
        }

        .btn-wa {
            background-color: var(--wa-green);
            color: var(--bg-white);
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.25);
            width: 100%;
        }

        .btn-wa:hover {
            background-color: var(--wa-green-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.35);
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 60px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(250, 250, 250, 1) 0%, rgba(165, 207, 131, 0.15) 100%);
        }

        .hero-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        .shape-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.6;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--secondary);
            top: -50px;
            left: -100px;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: var(--primary);
            bottom: -100px;
            right: -150px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            margin-bottom: 1.2rem;
            /* color: white; */
        }

        .hero-content h1 span {
            color: var(--cta-main);
            display: block;
        }

        .hero-content p {
            font-size: 1.1rem;
            /* color: #ffffff; */
            margin-bottom: 2rem;
        }

        .hero-perks {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 2rem;
        }

        .perk {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            /* color: var(--bg-white); */
        }

        .perk i {
            color: var(--primary);
            font-size: 1.2rem;
            background: rgba(165, 207, 131, 0.2);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-box {
            position: relative;
        }

        .hero-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 10s ease;
        }

        .hero-image:hover img {
            transform: scale(1.05);
        }

        .trust-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--bg-white);
            padding: 16px 24px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-float);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 10;
        }

        .trust-stars {
            color: var(--accent);
            font-size: 1.2rem;
            margin-bottom: 4px;
        }

        .trust-text {
            font-weight: 700;
            font-size: 1rem;
            color: var(--text-dark);
        }

        .trust-subtext {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        @media (min-width: 992px) {
            .hero {
                padding: 180px 0 100px;
            }

            .hero-grid {
                grid-template-columns: 1.1fr 0.9fr;
                gap: 4rem;
            }

            .hero-content h1 {
                font-size: 4rem;
            }

            .hero-content h1 span {
                display: inline;
            }

            .hero-content p {
                font-size: 1.25rem;
                max-width: 90%;
            }

            .hero-perks {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 20px;
            }

            .hero-image img {
                height: 500px;
            }
        }

        /* Tour Categories Tabs */
        .filter-tabs {
            display: flex;
            overflow-x: auto;
            gap: 12px;
            margin-bottom: 2.5rem;
            padding-bottom: 15px;
            scrollbar-width: none;
            /* Firefox */
        }

        .filter-tabs::-webkit-scrollbar {
            display: none;
            /* Chrome */
        }

        .tab-btn {
            background: var(--bg-white);
            border: 1px solid rgba(0, 0, 0, 0.05);
            padding: 12px 24px;
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-gray);
            cursor: pointer;
            white-space: nowrap;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
        }

        .tab-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .tab-btn.active {
            background: var(--primary);
            color: var(--bg-white);
            border-color: var(--primary);
            box-shadow: 0 8px 15px rgba(165, 207, 131, 0.4);
        }

        /* Tours Grid */
        .tours-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .tours-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .filter-tabs {
                justify-content: center;
            }
        }

        @media (min-width: 1024px) {
            .tours-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Tour Card */
        .tour-card {
            background: var(--bg-white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, 0.03);
            transition: var(--transition-normal);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }

        .tour-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: rgba(232, 153, 81, 0.2);
        }

        .card-img-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .tour-card:hover .card-img-wrapper img {
            transform: scale(1.08);
        }

        .card-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent);
            color: var(--text-dark);
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .card-price-float {
            position: absolute;
            bottom: -15px;
            right: 20px;
            background: var(--bg-white);
            padding: 8px 16px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            font-weight: 700;
            color: var(--cta-main);
            display: flex;
            align-items: baseline;
            gap: 4px;
            z-index: 2;
        }

        .card-price-float span {
            font-size: 0.75rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .card-content {
            padding: 2.2rem 1.5rem 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            color: var(--text-gray);
            font-weight: 500;
        }

        .meta-item i {
            color: var(--primary);
        }

        .card-desc {
            font-size: 0.95rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .card-desc strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        /* Value Props Section */
        .features-section {
            background-color: var(--text-dark);
            color: var(--bg-white);
            padding: 5rem 0;
            position: relative;
            border-radius: 40px 40px 0 0;
            margin-top: 2rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .features-section {
                border-radius: 80px 80px 0 0;
            }
        }

        .feature-box {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--secondary);
            margin: 0 auto 1.5rem;
            transition: var(--transition-normal);
        }

        .feature-box:hover .feature-icon {
            transform: scale(1.1);
            background: var(--primary);
            color: var(--text-dark);
            border-color: var(--primary);
        }

        .feature-box h3 {
            color: var(--bg-white);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .feature-box p {
            color: #A0AEC0;
            font-size: 0.95rem;
        }

        /* Footer */
        footer {
            background-color: #11151c;
            /* Darker than text-dark */
            color: var(--bg-white);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr;
            }
        }

        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: #A0AEC0;
            margin-bottom: 1.5rem;
            max-width: 400px;
        }

        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #E2E8F0;
            font-size: 0.95rem;
        }

        .contact-item i {
            color: var(--secondary);
            font-size: 1.2rem;
            width: 24px;
            text-align: center;
        }

        .contact-item a:hover {
            color: var(--primary);
        }

        .copyright {
            text-align: center;
            color: #718096;
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Floating WhatsApp Desktop */
        .wa-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: var(--wa-green);
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: var(--shadow-float);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            transition: var(--transition-normal);
        }

        .wa-float:hover {
            transform: translateY(-5px) scale(1.05);
            background-color: var(--wa-green-dark);
        }

        @media (min-width: 768px) {
            .wa-float {
                display: flex;
            }
        }

        /* Mobile Sticky Bottom Bar */
        .mobile-sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-white);
            padding: 12px 20px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .sticky-text {
            display: flex;
            flex-direction: column;
        }

        .sticky-text span:first-child {
            font-size: 0.75rem;
            color: var(--text-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .sticky-text span:last-child {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            color: var(--cta-main);
            font-weight: 700;
        }

        .mobile-sticky-bar .btn {
            padding: 10px 20px;
            font-size: 0.9rem;
            box-shadow: none;
        }

        @media (min-width: 768px) {
            .mobile-sticky-bar {
                display: none;
            }
        }

        /* Animation */
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Utils */
        .d-none {
            display: none;
        }

/* --- TEMPLATE SPECIFIC STYLES --- */
/* Hero */
        .tour-hero {
            padding: 120px 0 60px;
            background: linear-gradient(to bottom, #fff, var(--bg-body));
        }
        .hero-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
        @media (min-width: 992px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } }
        
        .tour-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }
        .tour-image img { width: 100%; height: auto; max-height: 500px; object-fit: cover; }
        
        .tour-title { font-size: 2.5rem; margin-bottom: 1rem; }
        @media (min-width: 768px) { .tour-title { font-size: 3.2rem; } }
        
        .tour-meta { display: flex; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
        .meta-tag { background: rgba(165,207,131,0.2); color: var(--text-dark); padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
        .meta-tag.price { background: rgba(232,153,81,0.15); color: var(--cta-main); font-size: 1.1rem; }
        
        .tour-desc-short { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 2rem; }
        
        /* Content Sections */
        .content-section { padding: 4rem 0; }
        .content-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
        @media (min-width: 992px) { .content-grid { grid-template-columns: 2fr 1fr; } }
        
        .main-content h2 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--cta-main); }
        .main-content p { margin-bottom: 1.5rem; font-size: 1.05rem; }
        
        .info-card { background: var(--bg-white); padding: 2rem; border-radius: 20px; box-shadow: var(--shadow-sm); margin-bottom: 2rem; }
        .info-card h3 { font-size: 1.4rem; margin-bottom: 1rem; border-bottom: 2px solid var(--primary); padding-bottom: 0.5rem; display: inline-block; }
        .info-list li { margin-bottom: 0.8rem; display: flex; gap: 10px; align-items: flex-start; }
        .info-list i { color: var(--primary); margin-top: 5px; }
        
        /* FAQs */
        .faq-item { margin-bottom: 1.5rem; }
        .faq-item h4 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-dark); }
        .faq-item p { color: var(--text-gray); font-size: 0.95rem; }
        
        /* Sticky Sidebar */
        .booking-sidebar { position: sticky; top: 100px; background: var(--bg-white); padding: 2rem; border-radius: 20px; box-shadow: var(--shadow-md); text-align: center; }
        .booking-sidebar h3 { font-size: 1.5rem; margin-bottom: 1rem; }
        .price-display { font-size: 2rem; color: var(--cta-main); font-weight: 700; margin-bottom: 0.5rem; font-family: 'Playfair Display', serif; }
        .price-unit { font-size: 1rem; color: var(--text-gray); font-weight: 400; font-family: 'Outfit', sans-serif; }
        
        /* Mobile Sticky */
        .mobile-cta { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-white); padding: 12px 20px; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); z-index: 1000; display: flex; justify-content: center; }
        @media (min-width: 992px) { .mobile-cta { display: none; } }
        
        footer { background: #11151c; color: white; padding: 3rem 0; text-align: center; margin-top: 4rem; }