    :root {
        --charcoal: #1F2937;
        --charcoal-light: #374151;
        --coral: #F97316;
        --coral-dark: #EA580C;
        --cream: #FFF7ED;
        --white: #FFFFFF;
        --gray: #6B7280;
        --font-heading: 'Bricolage Grotesque', sans-serif;
        --font-body: 'Outfit', sans-serif;
    }

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

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

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

    .blob-1 {
        width: 400px;
        height: 400px;
        background: var(--coral);
        top: -100px;
        right: -100px;
    }

    .blob-2 {
        width: 300px;
        height: 300px;
        background: #3B82F6;
        bottom: 10%;
        left: -50px;
    }

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

    /* Typography */
    h1, h2, h3 {
        font-family: var(--font-heading);
        font-weight: 800;
        line-height: 1.1;
    }

    /* Buttons */
    .btn-primary {
        background: var(--coral);
        color: var(--white);
        padding: 14px 28px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-family: var(--font-heading);
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .btn-primary:hover {
        background: var(--coral-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
    }

    .btn-secondary {
        background: var(--white);
        color: var(--charcoal);
        padding: 14px 28px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-family: var(--font-heading);
        transition: all 0.3s ease;
        border: 2px solid var(--charcoal);
    }

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

    /* Navbar */
    .navbar {
        padding: 20px 0;
        position: sticky;
        top: 0;
        background: rgba(255, 247, 237, 0.9);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid rgba(31, 41, 55, 0.1);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--charcoal);
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        background: var(--coral);
        color: var(--white);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-family: var(--font-heading);
    }

    .logo-text {
        font-weight: 700;
        font-size: 1.2rem;
        font-family: var(--font-heading);
    }

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

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

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

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

    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: var(--charcoal);
        border-radius: 2px;
    }

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

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

    .badge {
        display: inline-block;
        background: var(--charcoal);
        color: var(--white);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.875rem;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        color: var(--charcoal);
    }

    .text-highlight {
        color: var(--coral);
        position: relative;
        display: inline-block;
    }

    .text-highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 12px;
        background: rgba(249, 115, 22, 0.2);
        z-index: -1;
        border-radius: 4px;
    }

    .hero p {
        font-size: 1.25rem;
        color: var(--gray);
        margin-bottom: 30px;
        max-width: 500px;
    }

    .hero-btns {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-visual {
        position: relative;
    }

    .main-card {
        background: var(--white);
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 20px 40px rgba(31, 41, 55, 0.1);
        position: relative;
    }

    .main-img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 15px;
    }

    .floating-card {
        position: absolute;
        background: var(--white);
        padding: 15px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(31, 41, 55, 0.15);
        display: flex;
        align-items: center;
        gap: 15px;
        animation: float 3s ease-in-out infinite;
    }

    .card-1 {
        top: 30px;
        left: -30px;
    }

    .card-2 {
        bottom: 50px;
        right: -20px;
        animation-delay: 1.5s;
    }

    .icon-box {
        width: 40px;
        height: 40px;
        background: var(--coral);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .floating-card strong {
        display: block;
        color: var(--charcoal);
        font-family: var(--font-heading);
    }

    .floating-card span {
        font-size: 0.875rem;
        color: var(--gray);
    }

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

    /* Services Section */
    .services {
        padding: 100px 0;
        background: var(--white);
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1.1rem;
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }

    .service-card {
        background: var(--cream);
        padding: 40px 30px;
        border-radius: 20px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .service-card:hover {
        border-color: var(--coral);
        transform: translateY(-5px);
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--charcoal);
    }

    .service-card p {
        color: var(--gray);
    }

    /* About Section */
    .about {
        padding: 100px 0;
    }

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

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

    .about-img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 20px;
        position: relative;
        z-index: 1;
    }

    .about-accent {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 3px solid var(--coral);
        border-radius: 20px;
        top: 20px;
        left: 20px;
        z-index: 0;
    }

    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .about-content .lead {
        font-size: 1.25rem;
        color: var(--charcoal);
        margin-bottom: 20px;
    }

    .about-content p {
        color: var(--gray);
        margin-bottom: 25px;
    }

    .check-list {
        list-style: none;
    }

    .check-list li {
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
    }

    .check-list li::before {
        content: '✓';
        width: 24px;
        height: 24px;
        background: var(--coral);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    /* Contact Section */
    .contact {
        padding: 100px 0;
        background: var(--charcoal);
        color: var(--white);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .contact-info > p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 40px;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 25px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background: var(--coral);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .info-item strong {
        display: block;
        margin-bottom: 5px;
    }

    .info-item a {
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s;
    }

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

    .contact-form-wrapper {
        background: var(--white);
        padding: 40px;
        border-radius: 20px;
        color: var(--charcoal);
    }

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

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #E5E7EB;
        border-radius: 10px;
        font-family: var(--font-body);
        font-size: 1rem;
        transition: border-color 0.3s;
    }

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

    .full-width {
        width: 100%;
    }

    .success-message {
        background: #10B981;
        color: var(--white);
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        margin-top: 20px;
    }

    .hidden {
        display: none;
    }

    /* Footer */
    footer {
        background: var(--charcoal-light);
        color: rgba(255, 255, 255, 0.5);
        padding: 30px 0;
        text-align: center;
    }

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

        .hero {
            text-align: center;
            padding: 60px 0;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p {
            margin: 0 auto 30px;
        }

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

        .hero-visual {
            order: -1;
        }

        .floating-card {
            display: none;
        }

        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--cream);
            flex-direction: column;
            padding: 30px;
            gap: 20px;
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

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

        .mobile-toggle {
            display: flex;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 2rem;
        }

        .section-header h2,
        .about-content h2,
        .contact-info h2 {
            font-size: 1.75rem;
        }

        .contact-form-wrapper {
            padding: 25px;
        }
    }
