    /* Base styles & custom properties */
    :root {
        --emerald-50: #ecfdf5;
        --emerald-100: #d1fae5;
        --emerald-700: #047857;
        --emerald-800: #065f46;
        --emerald-900: #064e3b;
        --cream-50: #fefdf8;
        --warm-400: #b8b0a0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: var(--cream-50);
    }
    ::-webkit-scrollbar-thumb {
        background: #a7f3d0;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #34d399;
    }

    /* Selection */
    ::selection {
        background: #d1fae5;
        color: #064e3b;
    }

    /* Floating card animation */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-12px); }
    }

    .floating-card {
        animation: float 4s ease-in-out infinite;
    }

    .floating-card:nth-child(2) {
        animation-delay: -1.3s;
    }

    .floating-card:nth-child(3) {
        animation-delay: -2.6s;
    }

    /* Service card hover glow */
    .service-card {
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
        opacity: 0;
        transition: opacity 0.5s ease;
        border-radius: 3px 3px 0 0;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    /* Testimonial card subtle pattern */
    .testimonial-card {
        position: relative;
    }

    .testimonial-card::after {
        content: '"';
        position: absolute;
        top: 16px;
        right: 24px;
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 6rem;
        font-weight: 700;
        color: rgba(16, 185, 129, 0.06);
        line-height: 1;
        pointer-events: none;
    }

    /* Navbar styles */
    .nav-link {
        position: relative;
    }

    /* Mobile menu transitions */
    #mobileMenu {
        transition: opacity 0.4s ease, transform 0.4s ease, pointer-events 0.4s ease;
    }

    #mobileMenu.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    #mobileMenu:not(.active) {
        opacity: 0;
        transform: translateY(16px);
        pointer-events: none;
    }

    .mobile-link {
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }

    #mobileMenu.active .mobile-link {
        opacity: 1;
        transform: translateY(0);
    }

    #mobileMenu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
    #mobileMenu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
    #mobileMenu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
    #mobileMenu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }

    /* Fade-in animation for scroll */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Hero image rotation reset */
    .hero-img-rotate {
        transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .hero-img-rotate:hover {
        transform: rotate(0deg) scale(1.02);
    }

    /* Form focus styles */
    input:focus,
    textarea:focus,
    select:focus {
        border-color: #34d399 !important;
        box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.15) !important;
    }

    /* Responsive adjustments */
    @media (max-width: 767px) {
        .floating-card {
            display: none;
        }

        section {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .testimonial-card::after {
            font-size: 4rem;
            top: 12px;
            right: 16px;
        }
    }

    @media (min-width: 768px) and (max-width: 1023px) {
        .floating-card {
            display: none;
        }
    }

    /* Print styles */
    @media print {
        nav, #contactForm, .floating-card {
            display: none !important;
        }

        body {
            color: #000;
            background: #fff;
        }

        .service-card, .testimonial-card {
            break-inside: avoid;
        }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        html {
            scroll-behavior: auto;
        }

        .fade-in-up {
            opacity: 1;
            transform: none;
        }
    }
