:root {
            --primary-green: #819A91;
            --deep-olive: #3B3B1A;
            --dark-brown: #4B352A;
            --white: #FFFFFF;
            --light-grey: #F4F7F6;
            --accent: #D4E0DB;
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* TYPOGRAPHY */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Quicksand', sans-serif; /* Fallback for UI elements */
            background-color: var(--white);
            color: var(--dark-brown);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .cursive-font { 
            font-family: 'Pacifico', cursive; /* Mimicking Betania Patmos */
            font-weight: 400; 
        }

        h1, h2, h3, h4, p, a, span, button {
            font-family: 'Pacifico', cursive;
        }

        /* HEADER */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            height: 80px;
            background: var(--white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 8%;
            z-index: 1000;
            transition: var(--transition);
        }

        header.sticky {
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            height: 70px;
        }

        .logo {
            font-size: 1.8rem;
            color: var(--deep-olive);
            cursor: pointer;
            text-decoration: none;
        }

        nav ul { display: flex; list-style: none; gap: 40px; }
        nav ul li a {
            text-decoration: none;
            color: var(--dark-brown);
            font-size: 1.1rem;
            cursor: pointer;
            transition: 0.3s;
        }
        nav ul li a:hover { color: var(--primary-green); }

        .auth-btn {
            background: var(--primary-green);
            color: white !important;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1rem;
            box-shadow: 0 4px 10px rgba(129, 154, 145, 0.3);
            cursor: pointer;
        }

        /* PAGE SYSTEM */
        .page { display: none; min-height: 100vh; padding-top: 80px; }
        .page.active { display: block; animation: fadeIn 0.8s ease-out; }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* HERO */
        .hero {
            height: 90vh;
            background: url('https://i.pinimg.com/736x/51/35/27/5135273dccb9a71663a57856da886956.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: zoomBg 20s infinite alternate;
        }

        @keyframes zoomBg {
            from { background-size: 100%; }
            to { background-size: 110%; }
        }

        .hero-card {
            background: var(--white);
            width: 90%;
            max-width: 600px;
            padding: 60px;
            border-radius: 30px;
            text-align: center;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            position: relative;
            z-index: 2;
        }

        .hero-icon {
            width: 100px;
            height: 100px;
            background: var(--primary-green);
            border-radius: 20px;
            margin: -110px auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(129, 154, 145, 0.4);
        }

        .hero-icon img { width: 60%; }

        /* FEATURE CARDS */
        .feature-section {
            background: var(--primary-green);
            padding: 100px 8%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 25px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            cursor: pointer;
        }

        .card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        .card i { font-size: 3rem; color: var(--primary-green); margin-bottom: 25px; }

        /* SUCCESS STORIES */
        .success-grid {
            padding: 100px 8%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .story-card {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            height: 450px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .story-card img { width: 100%; height: 100%; object-fit: cover; transition: 1s; }
        .story-card:hover img { transform: scale(1.1); }

        .story-overlay {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 40px;
            background: linear-gradient(transparent, rgba(59, 59, 26, 0.9));
            color: white;
        }

        /* BOOKING SECTION */
        .booking-section {
            background: var(--deep-olive);
            padding: 120px 8%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            color: white;
            align-items: center;
        }

        .booking-form {
            background: rgba(255,255,255,0.05);
            padding: 50px;
            border-radius: 30px;
            backdrop-filter: blur(10px);
        }

        .booking-form input, .booking-form select, .booking-form textarea {
            width: 100%;
            padding: 18px;
            margin-bottom: 20px;
            border-radius: 15px;
            border: none;
            background: rgba(255,255,255,0.9);
            font-family: 'Pacifico', cursive;
        }

        .btn-submit {
            background: var(--primary-green);
            color: white;
            padding: 18px;
            width: 100%;
            border: none;
            border-radius: 15px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-submit:hover { background: #6b857a; }

        /* BLOG SECTION */
        .blog-section {
            background: var(--dark-brown);
            padding: 100px 8%;
            color: white;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .blog-card {
            background: rgba(255,255,255,0.05);
            border-radius: 25px;
            overflow: hidden;
            transition: 0.3s;
        }

        .blog-card img { width: 100%; height: 200px; object-fit: cover; }
        .blog-card-content { padding: 30px; }
        .read-more { color: var(--primary-green); text-decoration: none; margin-top: 15px; display: inline-block; }

        /* MODALS */
        .modal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            background: white;
            width: 100%;
            max-width: 800px;
            border-radius: 40px;
            position: relative;
            padding: 60px;
            max-height: 90vh;
            overflow-y: auto;
        }

        .close-modal {
            position: absolute;
            top: 30px;
            right: 30px;
            cursor: pointer;
            color: var(--deep-olive);
        }

        /* FOOTER */
        footer {
            background: var(--deep-olive);
            color: white;
            padding: 100px 8% 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
        }

        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: white; text-decoration: none; opacity: 0.7; transition: 0.3s; }
        .footer-links a:hover { opacity: 1; padding-left: 5px; }

        /* FILTER SYSTEM */
        .filter-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
        }

        .filter-btn {
            padding: 10px 25px;
            border-radius: 50px;
            border: 2px solid var(--primary-green);
            background: transparent;
            color: var(--primary-green);
            cursor: pointer;
            font-size: 1rem;
            transition: 0.3s;
        }
        .filter-btn.active { background: var(--primary-green); color: white; }

        /* RESPONSIVE */
        @media (max-width: 1000px) {
            .booking-section { grid-template-columns: 1fr; }
            .hero-card { padding: 40px 20px; }
        }