    :root {
        --charcoal: #1F2937;
        --charcoal-light: #374151;
        --coral: #E86A5B;
        --coral-light: #FF8A7D;
        --white: #FFFFFF;
        --off-white: #F3F4F6;
        --gray: #9CA3AF;
        --font-heading: 'Space Grotesk', sans-serif;
        --font-body: 'Outfit', sans-serif;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

    h1, h2, h3, h4 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.2;
    }

    a {
        text-decoration: none;
        color: inherit;
    }

    ul {
        list-style: none;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

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

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 600;
        font-family: var(--font-heading);
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        gap: 8px;
    }

    .btn-primary {
        background-color: var(--coral);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(232, 106, 91, 0.3);
    }

    .btn-primary:hover {
        background-color: var(--coral-light);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(232, 106, 91, 0.4);
    }

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

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

    .btn-full {
        width: 100%;
    }

    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        padding: 15px 0;
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--charcoal);
    }

    .logo-icon {
        color: var(--coral);
    }

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

    .nav-links a {
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
    }

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

    .nav-cta {
        background-color: var(--charcoal);
        color: var(--white) !important;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: 600 !important;
    }

    .nav-cta:hover {
        background-color: var(--coral);
    }

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

    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background-color: var(--charcoal);
        transition: all 0.3s;
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 100px 0 60px;
        background-color: var(--off-white);
        position: relative;
        overflow: hidden;
    }

    .hero-bg-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.15;
        z-index: 0;
    }

    .shape-1 {
        width: 600px;
        height: 600px;
        background-color: var(--coral);
        top: -200px;
        right: -100px;
    }

    .shape-2 {
        width: 400px;
        height: 400px;
        background-color: var(--charcoal);
        bottom: -100px;
        left: -100px;
    }

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

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

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

    .hero h1 .highlight {
        color: var(--coral);
        position: relative;
    }

    .hero h1 .highlight::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 12px;
        background-color: rgba(232, 106, 91, 0.2);
        z-index: -1;
        border-radius: 4px;
    }

    .hero-sub {
        font-size: 1.125rem;
        color: var(--charcoal-light);
        margin-bottom: 30px;
        max-width: 500px;
    }

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

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

    .card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .card-main {
        position: relative;
    }

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

    .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(31, 41, 55, 0.9), transparent);
        padding: 30px 20px 20px;
        color: var(--white);
        font-weight: 600;
    }

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

    .float-1 {
        top: 30px;
        left: -30px;
        animation-delay: 0s;
    }

    .float-2 {
        bottom: 80px;
        right: -20px;
        animation-delay: 1s;
    }

    .float-3 {
        bottom: -10px;
        left: 20px;
        animation-delay: 2s;
    }

    .float-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .float-icon.coral {
        background-color: rgba(232, 106, 91, 0.1);
        color: var(--coral);
    }

    .float-icon.charcoal {
        background-color: rgba(31, 41, 55, 0.1);
        color: var(--charcoal);
    }

    .float-icon.white {
        background-color: var(--white);
        color: var(--charcoal);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .float-card strong {
        display: block;
        font-size: 0.9rem;
        color: var(--charcoal);
    }

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

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

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

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

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: var(--charcoal);
    }

    .section-header p {
        font-size: 1.1rem;
        color: var(--gray);
    }

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

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

    .service-card:hover {
        transform: translateY(-8px);
        border-color: var(--coral);
        box-shadow: 0 20px 40px rgba(232, 106, 91, 0.1);
    }

    .service-icon {
        color: var(--coral);
        margin-bottom: 20px;
    }

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

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

    /* About Section */
    .about {
        padding: 100px 0;
        background-color: var(--charcoal);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .about::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background-color: var(--coral);
        border-radius: 50%;
        opacity: 0.1;
    }

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

    .about-images {
        position: relative;
    }

    .img-stack {
        position: relative;
    }

    .img-stack img:first-child {
        border-radius: 20px;
        width: 100%;
        height: 500px;
        object-fit: cover;
    }

    .img-secondary {
        position: absolute;
        bottom: -30px;
        right: -30px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border: 5px solid var(--charcoal);
    }

    .img-secondary img {
        width: 250px;
        height: 300px;
        object-fit: cover;
    }

    .about-stat {
        position: absolute;
        top: -20px;
        left: -20px;
        background-color: var(--coral);
        color: var(--white);
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(232, 106, 91, 0.4);
    }

    .about-stat .number {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        font-family: var(--font-heading);
    }

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

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

    .about-content .lead {
        font-size: 1.2rem;
        margin-bottom: 20px;
        opacity: 0.9;
    }

    .about-content p {
        opacity: 0.8;
        margin-bottom: 30px;
    }

    .features-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .features-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
    }

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

    /* Gallery Section */
    .gallery {
        padding: 100px 0;
        background-color: var(--off-white);
    }

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

    .gallery-item {
        border-radius: 15px;
        overflow: hidden;
        height: 300px;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

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

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

    .contact-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(to right, var(--coral), var(--charcoal));
    }

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

    .contact-info > p {
        color: var(--charcoal-light);
        margin-bottom: 40px;
    }

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

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

    .info-item strong {
        display: block;
        margin-bottom: 5px;
        color: var(--charcoal);
    }

    .info-item p {
        color: var(--charcoal-light);
        font-size: 0.95rem;
    }

    .info-item a {
        color: var(--coral);
        transition: color 0.3s;
    }

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

    .contact-form {
        background: var(--white);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

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

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--charcoal);
    }

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

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

    .success-message {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px;
    }

    .success-message.hidden {
        display: none;
    }

    .success-message svg {
        margin-bottom: 20px;
        color: var(--coral);
    }

    .success-message h4 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .success-message p {
        color: var(--gray);
    }

    /* Footer */
    .footer {
        background-color: var(--charcoal);
        color: var(--white);
        padding: 60px 0 30px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-brand .logo-text {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--white);
    }

    .footer-brand p {
        color: var(--gray);
        font-size: 0.9rem;
    }

    .footer-links {
        display: flex;
        gap: 30px;
    }

    .footer-links a {
        color: var(--gray);
        transition: color 0.3s;
    }

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

    .footer-copy {
        color: var(--gray);
        font-size: 0.875rem;
        text-align: center;
    }

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

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

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

        .hero-visual {
            max-width: 500px;
            margin: 0 auto;
        }

        .float-1 {
            left: 0;
        }

        .float-2 {
            right: 0;
        }

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

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

        .contact-wrapper {
            grid-template-columns: 1fr;
            padding: 40px;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background-color: var(--white);
            flex-direction: column;
            padding: 30px;
            gap: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
            z-index: 999;
        }

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

        .mobile-menu-btn {
            display: flex;
        }

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

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

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

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

        .section-header h2 {
            font-size: 2rem;
        }

        .about-content h2 {
            font-size: 2rem;
        }

        .contact-wrapper {
            padding: 25px;
        }

        .contact-form {
            padding: 25px;
        }

        .img-secondary {
            right: 0;
        }
    }

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

        .float-card {
            display: none;
        }

        .hero-visual {
            min-height: 350px;
        }
    }
