    :root {
        --emerald-900: #064e3b;
        --emerald-800: #065f46;
        --emerald-600: #059669;
        --emerald-500: #10b981;
        --cream-50: #FFFBEA;
        --cream-100: #FFF8D6;
        --cream-200: #FFF3C4;
        --neutral-900: #111827;
        --neutral-800: #1f2937;
        --neutral-700: #374151;
        --neutral-600: #4b5563;
        --neutral-100: #f3f4f6;
        --neutral-50: #f9fafb;
        
        --font-main: 'Outfit', sans-serif;
        
        --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
        --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
        --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-main);
        background-color: var(--cream-50);
        color: var(--neutral-900);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    /* Background Blobs */
    .blob {
        position: fixed;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.4;
        z-index: -1;
        animation: float 20s infinite ease-in-out;
    }

    .blob-1 {
        width: 600px;
        height: 600px;
        background: var(--emerald-200);
        top: -200px;
        right: -200px;
    }

    .blob-2 {
        width: 400px;
        height: 400px;
        background: var(--cream-200);
        bottom: 20%;
        left: -100px;
        animation-delay: -5s;
    }

    .blob-3 {
        width: 300px;
        height: 300px;
        background: var(--emerald-100);
        top: 40%;
        right: 10%;
        animation-delay: -10s;
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(30px, -50px) scale(1.1); }
        66% { transform: translate(-20px, 20px) scale(0.9); }
    }

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

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.875rem 1.75rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        border: none;
        font-family: var(--font-main);
    }

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

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

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

    .btn-secondary:hover {
        border-color: var(--emerald-600);
        color: var(--emerald-600);
        transform: translateY(-2px);
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .btn-block {
        width: 100%;
        justify-content: center;
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(255, 251, 234, 0.85);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        background: rgba(255, 251, 234, 0.95);
        box-shadow: var(--shadow-md);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        font-weight: 800;
        font-size: 1.25rem;
        color: var(--neutral-900);
    }

    .logo span {
        letter-spacing: -0.02em;
    }

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

    .nav-links a {
        text-decoration: none;
        color: var(--neutral-700);
        font-weight: 600;
        font-size: 0.95rem;
        transition: color 0.2s ease;
    }

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

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

    .mobile-toggle span {
        width: 24px;
        height: 2px;
        background: var(--neutral-900);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 8rem 0 4rem;
        background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-800) 50%, #047857 100%);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 251, 234, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .hero-content {
        color: white;
    }

    .badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 251, 234, 0.15);
        border: 1px solid rgba(255, 251, 234, 0.3);
        color: var(--cream-100);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        backdrop-filter: blur(10px);
    }

    .hero-title {
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -0.03em;
        margin-bottom: 1.5rem;
        color: white;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2.5rem;
        max-width: 500px;
        line-height: 1.7;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .hero-actions .btn-primary {
        background: var(--cream-50);
        color: var(--emerald-900);
    }

    .hero-actions .btn-primary:hover {
        background: white;
        transform: translateY(-2px);
    }

    .hero-actions .btn-secondary {
        background: transparent;
        border-color: rgba(255, 255, 255, 0.4);
        color: white;
    }

    .hero-actions .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
        color: white;
    }

    /* Hero Visual */
    .hero-visual {
        position: relative;
    }

    .image-stack {
        position: relative;
        height: 550px;
    }

    .card-img {
        position: absolute;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-xl);
        background: var(--cream-100);
    }

    .card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .card-img-1 {
        width: 280px;
        height: 350px;
        top: 0;
        left: 0;
        z-index: 3;
        transform: rotate(-3deg);
    }

    .card-img-2 {
        width: 220px;
        height: 220px;
        top: 60px;
        right: 20px;
        z-index: 2;
        transform: rotate(5deg);
    }

    .card-img-3 {
        width: 180px;
        height: 180px;
        bottom: 40px;
        left: 60px;
        z-index: 1;
        transform: rotate(-2deg);
    }

    .float-badge {
        position: absolute;
        bottom: 120px;
        right: 0;
        z-index: 4;
        background: white;
        padding: 1rem 1.5rem;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        box-shadow: var(--shadow-lg);
        font-weight: 700;
        color: var(--emerald-800);
        animation: floatBadge 3s ease-in-out infinite;
    }

    @keyframes floatBadge {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* Hero Shapes */
    .shape {
        position: absolute;
        opacity: 0.6;
    }

    .shape-circle {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--cream-200);
        top: 15%;
        right: 5%;
        animation: spin 20s linear infinite;
    }

    .shape-square {
        width: 80px;
        height: 80px;
        background: var(--emerald-500);
        bottom: 20%;
        left: 5%;
        transform: rotate(45deg);
        animation: spin 15s linear infinite reverse;
    }

    .shape-triangle {
        width: 0;
        height: 0;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-bottom: 86px solid var(--cream-100);
        top: 25%;
        left: 8%;
        animation: spin 25s linear infinite;
    }

    @keyframes spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Section Styles */
    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 4rem;
    }

    .tag {
        display: inline-block;
        background: var(--emerald-100);
        color: var(--emerald-800);
        padding: 0.375rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        color: var(--neutral-900);
        letter-spacing: -0.02em;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .section-desc {
        font-size: 1.125rem;
        color: var(--neutral-600);
        line-height: 1.7;
    }

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

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        background: white;
        padding: 2.5rem 2rem;
        border-radius: 24px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--emerald-200);
    }

    .icon-box {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: var(--emerald-100);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--emerald-700);
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

    .service-card:hover .icon-box {
        background: var(--emerald-600);
        color: white;
    }

    .service-card h3 {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--neutral-900);
        margin-bottom: 0.75rem;
    }

    .service-card p {
        color: var(--neutral-600);
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* About */
    .about {
        padding: 6rem 0;
        background: white;
    }

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

    .about-img-wrapper {
        position: relative;
    }

    .about-img-wrapper img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        border-radius: 32px;
        box-shadow: var(--shadow-xl);
    }

    .experience-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--emerald-600);
        color: white;
        padding: 2rem;
        border-radius: 24px;
        text-align: center;
        box-shadow: var(--shadow-lg);
    }

    .experience-badge .number {
        display: block;
        font-size: 3rem;
        font-weight: 900;
        line-height: 1;
    }

    .experience-badge .text {
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .about-content .tag {
        margin-bottom: 1rem;
    }

    .about-text {
        color: var(--neutral-600);
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .checklist {
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .checklist li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 600;
        color: var(--neutral-800);
    }

    .checklist svg {
        color: var(--emerald-600);
        flex-shrink: 0;
    }

    /* Gallery */
    .gallery {
        padding: 6rem 0;
        background: var(--cream-50);
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-item {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        aspect-ratio: 3/2;
        cursor: pointer;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    .gallery-item .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(5, 78, 59, 0.9) 0%, transparent 60%);
        display: flex;
        align-items: flex-end;
        padding: 2rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }

    .gallery-item .overlay span {
        color: white;
        font-weight: 700;
        font-size: 1.25rem;
    }

    /* Contact */
    .contact {
        padding: 6rem 0;
        background: var(--emerald-900);
        position: relative;
        overflow: hidden;
    }

    .contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 0% 100%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 100% 0%, rgba(255, 251, 234, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        position: relative;
        z-index: 1;
    }

    .contact-info {
        color: white;
    }

    .contact-info .tag {
        background: rgba(255, 251, 234, 0.15);
        color: var(--cream-100);
    }

    .contact-info .section-title {
        color: white;
    }

    .contact-desc {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 3rem;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .info-item h4 {
        color: white;
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .info-item p, .info-item a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .info-item a:hover {
        color: var(--cream-100);
    }

    .icon-box.bg-emerald {
        background: var(--emerald-600);
        color: white;
    }

    .icon-box.bg-cream {
        background: var(--cream-100);
        color: var(--emerald-800);
    }

    /* Form */
    .contact-form-wrapper {
        background: white;
        padding: 2.5rem;
        border-radius: 32px;
        box-shadow: var(--shadow-xl);
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-group label {
        font-weight: 700;
        color: var(--neutral-800);
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 1.25rem;
        border: 2px solid var(--neutral-100);
        border-radius: 12px;
        font-family: var(--font-main);
        font-size: 1rem;
        color: var(--neutral-900);
        background: var(--neutral-50);
        transition: all 0.2s ease;
        outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--emerald-600);
        background: white;
        box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

    .form-success {
        display: none;
        text-align: center;
        padding: 3rem 2rem;
    }

    .form-success.active {
        display: block;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        background: var(--emerald-100);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: var(--emerald-600);
    }

    .form-success h3 {
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--neutral-900);
        margin-bottom: 0.75rem;
    }

    .form-success p {
        color: var(--neutral-600);
    }

    /* Footer */
    .footer {
        background: var(--neutral-900);
        color: white;
        padding: 4rem 0 2rem;
    }

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

    .footer-brand .logo {
        color: white;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.6);
        max-width: 400px;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s ease;
    }

    .footer-links a:hover {
        color: var(--emerald-500);
    }

    .footer-copy {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.875rem;
        text-align: center;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-subtitle {
            margin-left: auto;
            margin-right: auto;
        }

        .hero-actions {
            justify-content: center;
        }

        .hero-visual {
            display: none;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

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

        .about-img-wrapper {
            max-width: 500px;
            margin: 0 auto;
        }

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

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 72px;
            left: 0;
            right: 0;
            background: var(--cream-50);
            flex-direction: column;
            padding: 2rem;
            gap: 1.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

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

        .mobile-toggle {
            display: flex;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

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

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

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

        .hero {
            padding: 7rem 0 4rem;
        }

        .hero-title {
            font-size: 2.75rem;
        }

        .contact-form-wrapper {
            padding: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .hero-actions {
            flex-direction: column;
            width: 100%;
        }

        .hero-actions .btn {
            width: 100%;
            justify-content: center;
        }
    }
