        :root {
            --white: #FFFFFF;
            --accent: #AEB877;
            --light-grey: #EEEEEE;
            --dark-green: #40513B;
            --secondary-green: #41644A;
            --font-fancy: 'Tangerine', cursive;
            --font-body: 'Montserrat', sans-serif;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: var(--font-body); color: var(--dark-green); overflow-x: hidden; line-height: 1.6; }

        .tangerine-regular { font-family: var(--font-fancy); font-weight: 400; }
        .tangerine-bold { font-family: var(--font-fancy); font-weight: 700; }

        /* FIXED SOCIAL ICONS */
        .fixed-socials {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 2000;
        }

        .social-circle {
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            color: var(--dark-green);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-circle:hover {
            background: var(--dark-green);
            color: var(--white);
            transform: scale(1.1);
        }

        /* HEADER */
        header {
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: var(--white);
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        header.scrolled {
            padding: 10px 0;
            background: rgba(255,255,255,0.98);
        }

        .header-top {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            border-bottom: 1px solid #f0f0f0;
        }

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    margin: 0;
}

.logo img {
    height: 250px; /* Adjust height as needed */
    width: auto;
    display: block;
}
        .header-top-right {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: auto;
        }

        .auth-trigger, .cart-trigger {
            cursor: pointer;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 1px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-nav {
            padding: 15px 0;
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .nav-list a {
            text-decoration: none;
            color: var(--dark-green);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            transition: 0.3s;
            cursor: pointer;
        }

        .nav-list a:hover { color: var(--accent); }

        /* SECTIONS & PAGES */
        .page { display: none; min-height: 100vh; }
        .page.active { display: block; animation: fadeIn 0.8s ease; }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* HERO & VIDEO SPLIT */
        .hero-video-container {
            position: relative;
            height: 160vh;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .split-video {
            position: absolute;
            left: 0;
            width: 50%;
            height: 100%;
            object-fit: cover;
        }

        .hero-card {
            background: var(--white);
            padding: 60px;
            width: 800px;
            text-align: center;
            z-index: 10;
            top:10px;
        }

        .hero-card h1 { font-size: 5rem; line-height: 0.8; margin-bottom: 20px; }
        .hero-card p { font-size: 1.1rem; opacity: 0.8; }

        .video-continuation {
            background: var(--accent);
            padding: 120px 10%;
            top:450px;
            text-align: center;
            color: var(--white);
        }

        /* FEATURE SECTION */
        .feature-box {
            background: var(--white);
            display: flex;
            margin: 80px 5%;
            box-shadow: var(--shadow);
            min-height: 600px;
        }

        .feature-text {
            flex: 1;
            padding: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-image {
            flex: 1;
            background: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&q=80&w=1200') center/cover no-repeat;
        }

        /* INFORMATION TABLE PARALLAX */
        .info-parallax-section {
            background: var(--white);
            padding: 100px 0;
        }

        .parallax-bg {
            height: 600px;
            background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?auto=format&fit=crop&q=80&w=1800') center/cover no-repeat fixed;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 50px;
        }

        .info-table-container {
            background: rgba(255, 255, 255, 0.95);
            width: 100%;
            max-width: 1000px;
            padding: 60px;
            box-shadow: var(--shadow);
        }

        .info-row {
            padding: 30px 0;
            border-bottom: 2px solid var(--dark-green);
            display: grid;
            grid-template-columns: 250px 1fr;
            align-items: center;
        }

        .info-row:last-child { border-bottom: none; }
        .info-row h3 { font-size: 2.5rem; }

        /* TESTIMONIALS */
        .testimonials {
            padding: 100px 10%;
            text-align: center;
            background: var(--white);
        }

        .testimonials h2 { font-size: 4rem; }
        .hr-divider { width: 100px; height: 3px; background: var(--dark-green); margin: 20px auto 60px; }

        .testimonial-slider {
            display: flex;
            gap: 40px;
            overflow-x: auto;
            padding: 20px;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }

        .testimonial-card {
            min-width: 350px;
            background: var(--light-grey);
            padding: 40px;
            border-radius: 8px;
            scroll-snap-align: center;
            text-align: left;
        }

        /* SERVICES GRID */
        .services-section {
            background: var(--light-grey);
            padding: 100px 10%;
            text-align: center;
            color: var(--secondary-green);
        }

        .services-section h2 { font-size: 4rem; margin-bottom: 60px; }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .service-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
        .service-card img { width: 100%; height: 250px; object-fit: cover; }
        .service-card-body { padding: 30px; text-align: left; }

        .calendar-container {
            background: var(--white);
            padding: 50px;
            border-radius: 15px;
            margin-top: 50px;
        }

        /* AUTH MODALS */
        .modal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.8);
            z-index: 5000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-inner {
            background: var(--white);
            width: 100%;
            max-width: 500px;
            padding: 50px;
            border-radius: 8px;
            position: relative;
        }

        .close-modal { position: absolute; top: 20px; right: 20px; cursor: pointer; }

        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
        .form-group input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; }

        .btn-primary {
            background: var(--dark-green);
            color: var(--white);
            padding: 15px 30px;
            border: none;
            border-radius: 4px;
            font-weight: 700;
            width: 100%;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-primary:hover { background: var(--secondary-green); }

        /* FOOTER */
        footer {
            background: var(--dark-green);
            color: var(--white);
            padding: 100px 10% 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 80px;
            margin-bottom: 60px;
        }

        .footer-logo { font-size: 3rem; margin-bottom: 20px; }
        .footer-links h4 { margin-bottom: 25px; text-transform: uppercase; letter-spacing: 2px; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; cursor: pointer; }
        .footer-links a:hover { color: var(--accent); padding-left: 5px; }

        /* QUICK VIEW / FILTERS */
        .filter-bar {
            margin-bottom: 40px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .filter-btn {
            padding: 10px 25px;
            border: 1px solid var(--secondary-green);
            background: transparent;
            color: var(--secondary-green);
            cursor: pointer;
            border-radius: 30px;
            font-weight: 600;
        }

        .filter-btn.active { background: var(--secondary-green); color: var(--white); }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .hero-card { width: 90%; }
            .split-video { display: none; }
            .feature-box { flex-direction: column; }
            .info-row { grid-template-columns: 1fr; gap: 10px; }
            .footer-grid { grid-template-columns: 1fr; }
            .logo { position: static; transform: none; }
        }
        /* Style for all READ MORE buttons inside blog cards */
.blog-card .btn-outline {
    display: inline-block;
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}


.blog-card .btn-outline:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}


/* Desktop navigation unchanged */
.header-nav {
    padding: 0 10%;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-list li a {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 500;
}

/* Mobile styles */
#mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

/* Responsive breakpoints */
@media screen and (max-width: 992px) {
    .nav-list {
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-list.active {
        display: flex;
    }

    #mobile-menu-toggle {
        display: block;
    }

    .header-top-right {
        gap: 15px;
    }
}