    /* --- VARIABLES & RESET --- */
    :root {
        --burgundy: #7F1D1D;
        --burgundy-light: #991B1B;
        --burgundy-dark: #450A0A;
        --blush: #FBCFE8;
        --blush-light: #FFF1F2;
        --blush-dark: #F472B6;
        --white: #ffffff;
        --off-white: #FAFAFA;
        --text-dark: #1F2937;
        --text-light: #6B7280;
        --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: 16px;
        --font-heading: 'Outfit', sans-serif;
        --font-body: 'Plus Jakarta Sans', sans-serif;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        color: var(--text-dark);
        background-color: var(--off-white);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    /* --- BACKGROUND SHAPES --- */
    .geometric-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
        pointer-events: none;
    }

    .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.6;
    }

    .blob-1 {
        top: -10%;
        left: -10%;
        width: 50vw;
        height: 50vw;
        background: var(--blush);
    }

    .blob-2 {
        bottom: 10%;
        right: -10%;
        width: 40vw;
        height: 40vw;
        background: #fecaca;
    }

    .blob-3 {
        top: 40%;
        left: 30%;
        width: 20vw;
        height: 20vw;
        background: #e9d5ff;
    }

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

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

    .section-title {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .section-desc {
        font-size: 1.125rem;
        color: var(--text-light);
        max-width: 600px;
    }

    /* --- BUTTONS --- */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.875rem 1.75rem;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .btn-primary {
        background-color: var(--burgundy);
        color: var(--white);
    }

    .btn-primary:hover {
        background-color: var(--burgundy-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .btn-outline {
        background-color: transparent;
        border-color: var(--burgundy);
        color: var(--burgundy);
    }

    .btn-outline:hover {
        background-color: var(--blush-light);
    }

    .btn-light {
        background-color: var(--white);
        color: var(--burgundy);
    }

    .btn-light:hover {
        background-color: var(--blush);
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .btn-block {
        width: 100%;
    }

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

    .navbar.scrolled {
        padding: 0.75rem 0;
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
    }

    .logo-icon {
        background: var(--burgundy);
        color: var(--white);
        font-family: var(--font-heading);
        font-weight: 800;
        font-size: 1.25rem;
        padding: 0.5rem;
        border-radius: 8px;
    }

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

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

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

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

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

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

    /* --- HERO --- */
    .hero {
        padding: 8rem 0 4rem;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, var(--blush-light) 0%, #fff 50%, var(--blush) 100%);
    }

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

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--burgundy);
        box-shadow: var(--shadow-md);
        margin-bottom: 1.5rem;
    }

    .pulse {
        width: 8px;
        height: 8px;
        background: var(--burgundy);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(127, 29, 29, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(127, 29, 29, 0); }
        100% { box-shadow: 0 0 0 0 rgba(127, 29, 29, 0); }
    }

    .hero-title {
        font-family: var(--font-heading);
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
        color: var(--text-light);
        margin-bottom: 2rem;
        max-width: 500px;
    }

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

    .hero-visual {
        position: relative;
        height: 450px;
    }

    .main-card {
        width: 100%;
        height: 350px;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

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

    .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        padding: 2rem;
        color: var(--white);
    }

    .card-stat {
        display: flex;
        flex-direction: column;
    }

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

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

    .floating-card {
        position: absolute;
        background: var(--white);
        padding: 1rem 1.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        display: flex;
        align-items: center;
        gap: 1rem;
        z-index: 3;
    }

    .float-1 {
        top: 0;
        right: -20px;
        animation: float 6s ease-in-out infinite;
    }

    .float-2 {
        bottom: 40px;
        left: -30px;
        animation: float 8s ease-in-out infinite reverse;
    }

    .icon-box {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: var(--blush);
        color: var(--burgundy);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-box.blush {
        background: var(--blush);
        color: var(--burgundy);
    }

    .floating-card strong {
        display: block;
        font-size: 0.9rem;
        color: var(--text-dark);
    }

    .floating-card span {
        font-size: 0.75rem;
        color: var(--text-light);
    }

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

    .hero-shape {
        position: absolute;
        z-index: 1;
    }

    .shape-1 {
        top: 10%;
        right: 5%;
        width: 100px;
        height: 100px;
        background: var(--blush);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    .shape-2 {
        bottom: 15%;
        left: 5%;
        width: 60px;
        height: 60px;
        background: var(--burgundy);
        border-radius: 50%;
        opacity: 0.1;
    }

    /* --- SERVICES --- */
    .services {
        padding: 6rem 0;
        background: var(--white);
        position: relative;
    }

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

    .section-header .section-desc {
        margin: 0 auto;
    }

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

    .service-card {
        background: var(--off-white);
        padding: 2.5rem;
        border-radius: var(--radius);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .service-card:hover {
        transform: translateY(-5px);
        background: var(--white);
        border-color: var(--blush);
        box-shadow: var(--shadow-lg);
    }

    .card-accent {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--burgundy);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .service-card:hover .card-accent {
        transform: scaleX(1);
    }

    .service-card.featured {
        background: var(--burgundy);
        color: var(--white);
    }

    .service-card.featured .icon-wrap {
        background: rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    .service-card.featured h3,
    .service-card.featured p {
        color: var(--white);
    }

    .icon-wrap {
        width: 60px;
        height: 60px;
        background: var(--blush);
        color: var(--burgundy);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .service-card h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
    }

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

    /* --- ABOUT --- */
    .about {
        padding: 6rem 0;
        background: var(--blush-light);
    }

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

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

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

    .about-img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: var(--radius);
        position: relative;
        z-index: 1;
        box-shadow: var(--shadow-lg);
    }

    .about-content .section-title {
        margin-top: 0;
    }

    .about-text {
        color: var(--text-light);
        margin-bottom: 1.5rem;
    }

    .features-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .check-icon {
        width: 24px;
        height: 24px;
        background: var(--burgundy);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- CTA BANNER --- */
    .cta-banner {
        padding: 5rem 0;
        background: var(--burgundy);
        color: var(--white);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }

    .cta-content h2 {
        font-family: var(--font-heading);
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

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

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .info-item {
        display: flex;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

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

    .info-item strong {
        display: block;
        color: var(--text-dark);
        margin-bottom: 0.25rem;
    }

    .info-item p, .info-item a {
        color: var(--text-light);
        text-decoration: none;
        margin: 0;
    }

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

    .contact-form-wrapper {
        background: var(--off-white);
        padding: 2.5rem;
        border-radius: var(--radius);
        border: 1px solid var(--blush);
    }

    .contact-form h3 {
        font-family: var(--font-heading);
        font-size: 1.75rem;
        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: 500;
        color: var(--text-dark);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.875rem;
        border: 1px solid #E5E7EB;
        border-radius: 8px;
        font-family: var(--font-body);
        font-size: 1rem;
        transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--burgundy);
        box-shadow: 0 0 0 3px rgba(127, 29, 29, 0.1);
    }

    .form-success {
        display: none;
        background: #D1FAE5;
        color: #065F46;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        text-align: center;
    }

    /* --- FOOTER --- */
    footer {
        background: var(--text-dark);
        color: var(--white);
        padding: 3rem 0;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-brand {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .footer-brand .logo-icon {
        background: var(--blush);
        color: var(--burgundy);
    }

    .footer-brand .logo-text {
        color: var(--white);
    }

    .footer-brand p {
        font-size: 0.875rem;
        color: #9CA3AF;
        margin-top: 0.5rem;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
    }

    .footer-links a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

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

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

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

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

        .about-image-wrapper {
            order: -1;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--white);
            flex-direction: column;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 999;
        }

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

        .mobile-toggle {
            display: flex;
        }

        .hero {
            padding-top: 6rem;
            text-align: center;
        }

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

        .hero-subtitle {
            margin: 0 auto 2rem;
        }

        .floating-card {
            display: none;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }
