    :root {
        --emerald: #059669;
        --emerald-dark: #047857;
        --emerald-light: #10b981;
        --cream: #FDFBF7;
        --cream-dark: #F5F2EB;
        --text-dark: #1F2937;
        --text-light: #6B7280;
        --white: #FFFFFF;
        --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --radius: 16px;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Outfit', sans-serif;
        background-color: var(--cream);
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    /* Background Pattern */
    .bg-pattern {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(var(--emerald-light) 1px, transparent 1px);
        background-size: 40px 40px;
        opacity: 0.1;
        z-index: -1;
        pointer-events: none;
    }

    /* Typography */
    h1, h2, h3, h4 {
        font-family: 'Titan One', cursive;
        line-height: 1.2;
        color: var(--text-dark);
    }

    h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
    h2 { font-size: clamp(2rem, 4vw, 3rem); }
    h3 { font-size: 1.5rem; }

    p { color: var(--text-light); }

    /* Layout */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
    }

    .btn-primary {
        background-color: var(--emerald);
        color: var(--white);
        box-shadow: 0 4px 14px 0 rgba(5, 150, 105, 0.39);
    }

    .btn-primary:hover {
        background-color: var(--emerald-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px 0 rgba(5, 150, 105, 0.23);
    }

    .btn-secondary {
        background-color: var(--white);
        color: var(--emerald);
        border: 2px solid var(--white);
    }

    .btn-secondary:hover {
        background-color: transparent;
        color: var(--white);
        border-color: var(--white);
    }

    .btn-lg { padding: 1.25rem 2.5rem; font-size: 1.1rem; }
    .btn-block { width: 100%; text-align: center; }

    /* Header */
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(253, 251, 247, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 1rem 0;
    }

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

    .logo {
        font-family: 'Titan One', cursive;
        font-size: 1.5rem;
        color: var(--emerald);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        background: var(--emerald);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        transition: color 0.3s;
    }

    .nav-links a:not(.btn):hover {
        color: var(--emerald);
    }

    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        border-radius: 2px;
        transition: 0.3s;
    }

    /* Hero */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 8rem 1.5rem 4rem;
        overflow: hidden;
        background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
    }

    .hero-gradient {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
                    radial-gradient(circle at 70% 70%, rgba(0,0,0,0.2) 0%, transparent 50%);
    }

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

    .shape {
        position: absolute;
        opacity: 0.1;
    }

    .shape-1 {
        width: 300px;
        height: 300px;
        background: var(--cream);
        border-radius: 50%;
        top: -50px;
        left: -50px;
    }

    .shape-2 {
        width: 200px;
        height: 200px;
        background: var(--cream);
        top: 20%;
        right: 10%;
        transform: rotate(45deg);
    }

    .shape-3 {
        width: 150px;
        height: 150px;
        background: var(--cream);
        border-radius: 50%;
        bottom: 10%;
        left: 15%;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        max-width: 800px;
    }

    .tagline {
        display: inline-block;
        background: rgba(255,255,255,0.2);
        color: var(--white);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero h1 {
        color: var(--white);
        margin-bottom: 1.5rem;
    }

    .highlight {
        color: var(--cream);
        text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
    }

    .subheadline {
        font-size: 1.25rem;
        color: rgba(255,255,255,0.9);
        margin-bottom: 2.5rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--white);
        font-weight: 600;
        font-size: 0.9rem;
    }

    .badge svg {
        width: 20px;
        height: 20px;
    }

    /* Inventory */
    .inventory {
        padding: 6rem 0;
        background: var(--cream);
    }

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

    .section-header h2 {
        margin-bottom: 1rem;
    }

    .divider {
        width: 80px;
        height: 4px;
        background: var(--emerald);
        margin: 1rem auto;
        border-radius: 2px;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }

    .card {
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: transform 0.3s ease;
    }

    .card:hover {
        transform: translateY(-10px);
    }

    .card-image {
        position: relative;
        height: 240px;
        overflow: hidden;
    }

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

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

    .card-tag {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--emerald);
        color: var(--white);
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-content h3 {
        margin-bottom: 0.75rem;
        color: var(--emerald-dark);
    }

    .card-content p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

    .card-content ul {
        list-style: none;
        padding: 0;
    }

    .card-content li {
        padding-left: 1.5rem;
        position: relative;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .card-content li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--emerald);
        font-weight: bold;
    }

    /* Services */
    .services {
        padding: 6rem 0;
        background: var(--cream-dark);
    }

    .split-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .split-content h2 {
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .lead {
        font-size: 1.2rem;
        color: var(--text-dark);
        margin-bottom: 2rem;
    }

    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .feature-item {
        display: flex;
        gap: 1.5rem;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        background: var(--emerald);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--white);
    }

    .icon-box svg {
        width: 24px;
        height: 24px;
    }

    .feature-item h4 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        color: var(--text-dark);
    }

    .feature-item p {
        font-size: 0.95rem;
    }

    .split-image {
        position: relative;
    }

    .main-img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .floating-card {
        position: absolute;
        bottom: -20px;
        left: -20px;
        background: var(--white);
        padding: 1.5rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 120px;
    }

    .floating-card .number {
        font-family: 'Titan One', cursive;
        font-size: 2.5rem;
        color: var(--emerald);
        line-height: 1;
    }

    .floating-card .label {
        font-size: 0.9rem;
        color: var(--text-light);
        font-weight: 600;
    }

    /* About */
    .about {
        padding: 6rem 0;
        background: var(--white);
    }

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

    .about-text h2 {
        margin-bottom: 1.5rem;
    }

    .about-text p {
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .about-text strong {
        color: var(--emerald);
    }

    .about-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-box {
        background: var(--cream);
        padding: 2rem;
        border-radius: var(--radius);
        text-align: center;
        border: 2px solid var(--emerald);
    }

    .stat-num {
        display: block;
        font-family: 'Titan One', cursive;
        font-size: 3rem;
        color: var(--emerald);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-weight: 600;
        color: var(--text-dark);
    }

    /* Contact */
    .contact {
        padding: 6rem 0;
        background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald) 100%);
        color: var(--white);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .contact-info {
        padding: 3rem;
        background: var(--cream);
        color: var(--text-dark);
    }

    .contact-info h2 {
        margin-bottom: 1rem;
        color: var(--emerald-dark);
    }

    .contact-info > p {
        margin-bottom: 2rem;
    }

    .info-items {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        text-decoration: none;
        color: var(--text-dark);
        transition: color 0.3s;
    }

    .info-item:hover {
        color: var(--emerald);
    }

    .info-item svg {
        width: 24px;
        height: 24px;
        color: var(--emerald);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .booking-form {
        padding: 3rem;
        background: var(--white);
    }

    .booking-form h3 {
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--text-dark);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 2px solid var(--cream-dark);
        border-radius: 8px;
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        transition: border-color 0.3s;
        background: var(--cream);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--emerald);
        background: var(--white);
    }

    .form-status {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
        display: none;
    }

    .form-status.success {
        display: block;
        background: #d1fae5;
        color: var(--emerald-dark);
    }

    /* Footer */
    footer {
        background: var(--text-dark);
        color: var(--cream);
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-brand .logo {
        justify-content: center;
        color: var(--cream);
        margin-bottom: 0.5rem;
    }

    .footer-brand .logo-icon {
        background: var(--emerald);
    }

    .footer-brand p {
        color: rgba(253, 251, 247, 0.7);
        max-width: 400px;
    }

    .footer-bottom {
        width: 100%;
        border-top: 1px solid rgba(253, 251, 247, 0.1);
        padding-top: 1.5rem;
        text-align: center;
    }

    .footer-bottom p {
        color: rgba(253, 251, 247, 0.5);
        font-size: 0.9rem;
    }

    /* Mobile Responsive */
    @media (max-width: 968px) {
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--cream);
            flex-direction: column;
            padding: 2rem;
            gap: 1.5rem;
            box-shadow: var(--shadow);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 999;
        }

        .nav-links.active {
            transform: translateY(0);
        }

        .mobile-toggle {
            display: flex;
        }

        .split-layout,
        .about-grid,
        .contact-wrapper {
            grid-template-columns: 1fr;
        }

        .split-image {
            order: -1;
        }

        .hero-actions {
            flex-direction: column;
            align-items: center;
        }

        .trust-badges {
            flex-direction: column;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        .hero {
            padding: 6rem 1rem 3rem;
        }

        .grid {
            grid-template-columns: 1fr;
        }

        .contact-info,
        .booking-form {
            padding: 1.5rem;
        }
    }

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

    .shape-2 {
        animation: float 6s ease-in-out infinite;
    }

    .shape-1 {
        animation: float 8s ease-in-out infinite reverse;
    }
