    :root {
        --midnight: #0f172a;
        --midnight-light: #1e293b;
        --mint: #5eead4;
        --mint-dark: #2dd4bf;
        --mint-light: #f0fdfa;
        --white: #ffffff;
        --gray-100: #f8fafc;
        --gray-200: #e2e8f0;
        --gray-600: #475569;
        --gray-800: #1e293b;
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Outfit', sans-serif;
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
        --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
        --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
        --transition: all 0.3s ease;
    }

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

    html {
        scroll-behavior: smooth;
    }

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

    /* Typography */
    h1, h2, h3, h4 {
        font-family: var(--font-heading);
        font-weight: 600;
        line-height: 1.2;
        color: var(--midnight);
    }

    h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
    h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
    h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
    h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }
    p { margin-bottom: 1rem; color: var(--gray-600); }

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

    .section {
        padding: 5rem 0;
    }

    .bg-mint-light { background-color: var(--mint-light); }
    .bg-white { background-color: var(--white); }
    .bg-midnight { background-color: var(--midnight); }
    .text-white { color: var(--white); }
    .text-mint { color: var(--mint); }
    .text-center { text-align: center; }

    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--gray-200);
        transition: var(--transition);
    }

    .navbar.scrolled {
        box-shadow: var(--shadow-sm);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        color: var(--midnight);
        font-weight: 700;
        font-size: 1.25rem;
    }

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

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

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

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 0.875rem 2rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        border: 2px solid transparent;
        cursor: pointer;
        font-family: var(--font-body);
    }

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

    .btn-primary:hover {
        background: var(--midnight-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

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

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

    .btn-mint {
        background: var(--mint);
        color: var(--midnight);
    }

    .btn-mint:hover {
        background: var(--mint-dark);
        transform: translateY(-2px);
    }

    /* Hero */
    .hero {
        position: relative;
        height: 100vh;
        min-height: 600px;
        display: flex;
        align-items: center;
        background-image: url('https://images.pexels.com/photos/11806477/pexels-photo-11806477.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.4));
    }

    .hero-content {
        position: relative;
        z-index: 1;
        max-width: 700px;
        padding-top: 80px;
    }

    .hero-tagline {
        display: inline-block;
        color: var(--mint);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 1rem;
        font-size: 0.875rem;
    }

    .hero h1 {
        color: var(--white);
        margin-bottom: 1.5rem;
    }

    .hero p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.25rem;
        margin-bottom: 2rem;
        max-width: 600px;
    }

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

    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        color: var(--white);
        font-size: 0.875rem;
        opacity: 0.7;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
        40% { transform: translateX(-50%) translateY(-10px); }
        60% { transform: translateX(-50%) translateY(-5px); }
    }

    /* Section Header */
    .section-header {
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-tag {
        display: inline-block;
        color: var(--mint-dark);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 0.75rem;
        font-size: 0.875rem;
    }

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

    .service-card {
        background: var(--white);
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        border: 1px solid var(--gray-200);
    }

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

    .icon-box {
        width: 64px;
        height: 64px;
        background: var(--mint-light);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: var(--midnight);
    }

    /* Process */
    .process-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .process-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
    }

    .process-content .intro-text {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

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

    .step-number {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 700;
        color: var(--mint);
        line-height: 1;
    }

    /* Gallery */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 4/3;
        cursor: pointer;
    }

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

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

    .gallery-item .overlay {
        position: absolute;
        inset: 0;
        background: rgba(15, 23, 42, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }

    .gallery-item .overlay span {
        color: var(--white);
        font-weight: 600;
        font-size: 1.125rem;
    }

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

    .about-image img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
    }

    .trust-list {
        list-style: none;
        margin-top: 2rem;
        display: grid;
        gap: 1rem;
    }

    .trust-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 500;
        color: var(--gray-800);
    }

    /* Contact */
    .contact-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    .contact-info p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2rem;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .detail-item {
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
    }

    .detail-item .icon {
        width: 48px;
        height: 48px;
        background: rgba(94, 234, 212, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--mint);
        flex-shrink: 0;
    }

    .detail-item strong {
        color: var(--white);
        display: block;
        margin-bottom: 0.25rem;
    }

    .detail-item p, .detail-item a {
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        text-decoration: none;
        transition: var(--transition);
    }

    .detail-item a:hover {
        color: var(--mint);
    }

    /* Form */
    .contact-form-wrapper {
        background: var(--white);
        padding: 2.5rem;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var(--gray-800);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid var(--gray-200);
        border-radius: 8px;
        font-family: var(--font-body);
        font-size: 1rem;
        transition: var(--transition);
        background: var(--gray-100);
    }

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

    .success-message {
        text-align: center;
        padding: 2rem;
    }

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

    .success-message p {
        color: var(--gray-800);
        margin-top: 1rem;
    }

    /* Footer */
    .footer {
        background: var(--midnight-light);
        padding: 3rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
        text-align: center;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        color: var(--white);
        font-weight: 700;
    }

    .footer .copyright {
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 0.5rem;
    }

    .footer .address-small {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.875rem;
    }

    /* Mobile Menu */
    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .mobile-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--midnight);
        margin: 5px 0;
        transition: var(--transition);
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        background: var(--midnight);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu a {
        color: var(--white);
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .close-menu {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        color: var(--white);
        font-size: 3rem;
        cursor: pointer;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .nav-links {
            display: none;
        }

        .mobile-toggle {
            display: block;
        }

        .process-layout,
        .about-wrapper,
        .contact-layout {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .process-image,
        .about-image {
            order: -1;
        }

        .process-image img,
        .about-image img {
            height: 300px;
        }

        .hero-buttons {
            flex-direction: column;
        }

        .btn {
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .section {
            padding: 3rem 0;
        }

        .service-card {
            padding: 1.5rem;
        }

        .contact-form-wrapper {
            padding: 1.5rem;
        }
    }
