    /* --- Variables & Reset --- */
    :root {
        --emerald: #059669;
        --emerald-dark: #047857;
        --emerald-light: #d1fae5;
        --cream: #FDFBF7;
        --cream-dark: #f5f2eb;
        --text-dark: #1f2937;
        --text-gray: #4b5563;
        --white: #ffffff;
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --radius-sm: 8px;
        --radius-md: 16px;
        --radius-lg: 24px;
    }

    * {
        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;
    }

    h1, h2, h3, h4 {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        display: block;
        object-fit: cover;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* --- Background Blobs --- */
    .bg-blob {
        position: fixed;
        border-radius: 50%;
        filter: blur(80px);
        z-index: -1;
        opacity: 0.6;
    }

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

    .blob-2 {
        width: 400px;
        height: 400px;
        background: #fff7ed; /* Light orange/cream accent */
        bottom: 10%;
        left: -100px;
    }

    /* --- Navigation --- */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(253, 251, 247, 0.9);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 20px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 800;
        font-size: 1.25rem;
        color: var(--text-dark);
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        background: var(--emerald);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-sm);
        font-size: 0.9rem;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .nav-links a {
        font-weight: 600;
        color: var(--text-gray);
    }

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

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--text-dark);
    }

    /* --- Buttons --- */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 28px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

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

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

    .btn-secondary {
        background: var(--white);
        color: var(--text-dark);
        border-color: var(--text-dark);
    }

    .btn-secondary:hover {
        background: var(--text-dark);
        color: var(--white);
    }

    .btn-full {
        width: 100%;
    }

    /* --- Hero Section --- */
    .hero {
        padding: 140px 0 80px;
        min-height: 90vh;
        display: flex;
        align-items: center;
        position: relative;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .badge {
        display: inline-block;
        background: var(--emerald-light);
        color: var(--emerald-dark);
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.875rem;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: 4.5rem;
        line-height: 1;
        margin-bottom: 24px;
        color: var(--text-dark);
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
        color: var(--text-gray);
        margin-bottom: 40px;
        max-width: 480px;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* Hero Visual & Cards */
    .hero-visual {
        position: relative;
        height: 600px;
    }

    .card {
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .main-card {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

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

    .stat-card {
        position: absolute;
        padding: 20px 28px;
        display: flex;
        align-items: center;
        gap: 16px;
        z-index: 10;
        animation: float 6s ease-in-out infinite;
    }

    .stat-1 {
        bottom: 40px;
        left: -30px;
        background: var(--white);
        z-index: 11;
    }

    .floating-1 {
        top: 60px;
        right: -20px;
        background: var(--emerald);
        color: var(--white);
        animation-delay: 1s;
    }

    .floating-2 {
        bottom: 120px;
        right: -40px;
        background: var(--cream-dark);
        animation-delay: 2s;
    }

    .icon-box {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stat-number {
        display: block;
        font-size: 1.5rem;
        font-weight: 800;
        line-height: 1;
    }

    .stat-label {
        font-size: 0.875rem;
        opacity: 0.9;
    }

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

    /* --- Section Common --- */
    .section {
        padding: 100px 0;
    }

    .section-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 60px;
    }

    .section-tag {
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--emerald);
        margin-bottom: 12px;
        display: block;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 16px;
    }

    .section-desc {
        color: var(--text-gray);
        font-size: 1.125rem;
    }

    /* --- Services --- */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .service-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .service-img {
        height: 220px;
        overflow: hidden;
    }

    .service-img img {
        width: 100%;
        height: 100%;
        transition: transform 0.5s ease;
    }

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

    .service-content {
        padding: 28px;
    }

    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .service-content p {
        color: var(--text-gray);
        font-size: 0.95rem;
    }

    .accent-card {
        background: var(--emerald);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px;
    }

    .accent-card h3 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .accent-card p {
        margin-bottom: 24px;
        opacity: 0.9;
    }

    .link-arrow {
        color: var(--white);
        font-weight: 700;
        border-bottom: 2px solid var(--white);
        padding-bottom: 2px;
    }

    .link-arrow:hover {
        opacity: 0.8;
    }

    /* --- About --- */
    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-visual {
        position: relative;
    }

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

    .main-img {
        width: 100%;
        height: 500px;
    }

    .pattern-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(5, 150, 105, 0.2), transparent);
        pointer-events: none;
    }

    .about-badge {
        position: absolute;
        bottom: -30px;
        right: -30px;
        background: var(--cream-dark);
        padding: 24px 32px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        text-align: center;
    }

    .about-badge .year {
        display: block;
        font-size: 2rem;
        font-weight: 800;
        color: var(--emerald);
        line-height: 1;
    }

    .about-badge .location {
        font-size: 0.875rem;
        color: var(--text-gray);
        font-weight: 600;
    }

    .about-content .section-title {
        text-align: left;
        margin-top: 24px;
    }

    .about-text {
        color: var(--text-gray);
        margin-bottom: 24px;
        font-size: 1.05rem;
    }

    .features-list {
        margin-top: 32px;
    }

    .features-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        font-weight: 600;
    }

    .features-list svg {
        color: var(--emerald);
    }

    /* --- Contact --- */
    .contact {
        background: var(--white);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        background: var(--cream);
        border-radius: var(--radius-lg);
        padding: 60px;
        overflow: hidden;
        position: relative;
    }

    .contact-info {
        padding-right: 40px;
    }

    .contact-desc {
        color: var(--text-gray);
        margin-bottom: 40px;
    }

    .info-item {
        display: flex;
        gap: 20px;
        margin-bottom: 32px;
    }

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

    .info-item h4 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .info-item p {
        color: var(--text-gray);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .info-item a:hover {
        color: var(--emerald);
        text-decoration: underline;
    }

    .contact-form-wrapper {
        background: var(--white);
        padding: 40px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
    }

    .contact-form h3 {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e5e7eb;
        border-radius: var(--radius-sm);
        font-family: inherit;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

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

    .form-note {
        font-size: 0.8rem;
        color: var(--text-gray);
        margin-top: 16px;
        text-align: center;
    }

    .success-message {
        text-align: center;
        padding: 40px 20px;
    }

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

    .success-message h3 {
        margin-bottom: 12px;
    }

    .hidden {
        display: none;
    }

    /* --- Footer --- */
    .footer {
        background: var(--text-dark);
        color: var(--white);
        padding: 80px 0 40px;
    }

    .footer-container {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }

    .footer-col p {
        color: #9ca3af;
        margin-top: 16px;
        max-width: 280px;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        color: #9ca3af;
    }

    .footer-col ul li a:hover {
        color: var(--white);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 40px;
        text-align: center;
        color: #6b7280;
        font-size: 0.9rem;
    }

    /* --- Responsive --- */
    @media (max-width: 968px) {
        .hero-title {
            font-size: 3.5rem;
        }
        
        .hero-container,
        .about-container,
        .contact-wrapper {
            grid-template-columns: 1fr;
        }

        .hero-visual {
            height: 400px;
            order: -1;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }
        
        .accent-card {
            grid-column: 1 / -1;
        }

        .contact-wrapper {
            padding: 30px;
        }

        .contact-info {
            padding-right: 0;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 80px;
            left: 0;
            right: 0;
            background: var(--cream);
            flex-direction: column;
            padding: 40px;
            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-menu-btn {
            display: block;
        }

        .hero {
            padding-top: 120px;
            text-align: center;
        }

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

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

        .stat-card {
            padding: 12px 20px;
        }

        .stat-number {
            font-size: 1.2rem;
        }

        .stat-label {
            display: none;
        }

        .about-badge {
            right: 0;
            bottom: -20px;
        }

        .footer-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }
