    :root {
        --primary: #0d9488; /* Teal 600 */
        --primary-dark: #0f766e; /* Teal 700 */
        --primary-light: #ccfbf1; /* Teal 100 */
        --slate: #1e293b; /* Slate 800 */
        --slate-light: #334155; /* Slate 700 */
        --bg-light: #f8fafc;
        --white: #ffffff;
        --text-dark: #0f172a;
        --text-gray: #64748b;
        --radius: 12px;
        --shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: var(--text-dark);
        background-color: var(--bg-light);
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
    }

    h1, h2, h3, h4 {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        line-height: 1.2;
        color: var(--slate);
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
    }

    ul {
        list-style: none;
    }

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

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

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

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

    .bg-blob-2 {
        bottom: 10%;
        right: -10%;
        width: 40vw;
        height: 40vw;
        background: #e0f2fe; /* Light blue */
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 14px 28px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        border: none;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-primary {
        background-color: var(--primary);
        color: var(--white);
        box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
    }

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

    .btn-secondary {
        background-color: var(--white);
        color: var(--slate);
        box-shadow: var(--shadow);
    }

    .btn-secondary:hover {
        transform: translateY(-2px);
        background-color: var(--bg-light);
    }

    .btn-lg {
        padding: 18px 36px;
        font-size: 1.1rem;
    }

    .btn-block {
        width: 100%;
    }

    /* Header */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        z-index: 1000;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding: 16px 0;
    }

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

    .logo {
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--slate);
        display: flex;
        align-items: center;
        gap: 8px;
    }

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

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

    .nav-links a {
        font-weight: 500;
        color: var(--slate-light);
    }

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

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

    .mobile-toggle span {
        width: 24px;
        height: 2px;
        background: var(--slate);
        transition: 0.3s;
    }

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

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

    .badge {
        display: inline-block;
        background: var(--primary-light);
        color: var(--primary-dark);
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 24px;
        color: var(--slate);
    }

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

    .cta-group {
        display: flex;
        gap: 16px;
        margin-bottom: 48px;
    }

    .trust-indicators {
        display: flex;
        gap: 40px;
    }

    .trust-item {
        display: flex;
        flex-direction: column;
    }

    .trust-val {
        font-family: 'Outfit', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
    }

    .trust-label {
        font-size: 0.9rem;
        color: var(--text-gray);
    }

    /* Hero Visual */
    .hero-visual {
        position: relative;
        height: 600px;
    }

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

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

    .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px;
        background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
        color: white;
    }

    .card-tag {
        background: var(--primary);
        padding: 8px 16px;
        border-radius: 8px;
        font-weight: 600;
        display: inline-block;
    }

    .floating-card {
        position: absolute;
        background: var(--white);
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 16px;
        z-index: 10;
        animation: float 6s ease-in-out infinite;
    }

    .card-1 {
        top: 20%;
        left: -40px;
        width: 240px;
    }

    .card-2 {
        bottom: 15%;
        right: -30px;
        width: 240px;
        animation-delay: 3s;
    }

    .fc-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .fc-icon.teal {
        background: var(--primary-light);
        color: var(--primary);
    }

    .fc-icon.slate {
        background: #f1f5f9;
        color: var(--slate);
    }

    .floating-card strong {
        display: block;
        color: var(--slate);
        font-size: 1rem;
    }

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

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

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

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

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

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

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

    .feature-card {
        background: var(--bg-light);
        padding: 40px 30px;
        border-radius: 20px;
        transition: transform 0.3s, box-shadow 0.3s;
        border: 1px solid transparent;
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow);
        border-color: var(--primary-light);
        background: var(--white);
    }

    .f-icon {
        width: 64px;
        height: 64px;
        background: var(--white);
        border: 2px solid var(--primary-light);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        margin-bottom: 24px;
    }

    .feature-card:hover .f-icon {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--white);
    }

    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

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

    /* Location Section */
    .location {
        padding: 100px 0;
        background: var(--slate);
        color: var(--white);
    }

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

    .location-content h2 {
        font-size: 2.5rem;
        margin-bottom: 24px;
        color: var(--white);
    }

    .location-content p {
        color: #94a3b8;
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .location-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .location-list li {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 1.1rem;
    }

    .location-list .dot {
        width: 12px;
        height: 12px;
        background: var(--primary);
        border-radius: 50%;
    }

    .location-map {
        border-radius: 24px;
        overflow: hidden;
        height: 400px;
        box-shadow: var(--shadow);
    }

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

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
        background: var(--white);
        padding: 60px;
        border-radius: 32px;
        box-shadow: var(--shadow);
    }

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

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

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

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

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

    .info-item a, .info-item span {
        color: var(--text-gray);
        font-size: 1rem;
    }

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

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-group label {
        font-weight: 600;
        color: var(--slate);
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        font-family: inherit;
        font-size: 1rem;
        transition: border-color 0.3s;
    }

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

    .form-success {
        text-align: center;
        padding: 40px;
    }

    .form-success .success-icon {
        color: var(--primary);
        margin-bottom: 20px;
    }

    .form-success h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hidden {
        display: none;
    }

    /* Footer */
    footer {
        background: var(--slate);
        color: #94a3b8;
        padding: 40px 0;
        text-align: center;
    }

    .footer-logo {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--white);
        margin-bottom: 16px;
    }

    .copyright {
        font-size: 0.9rem;
        line-height: 1.8;
    }

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

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

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

        .hero-desc {
            margin: 0 auto 40px;
        }

        .cta-group {
            justify-content: center;
        }

        .trust-indicators {
            justify-content: center;
        }

        .floating-card {
            display: none;
        }

        .nav-links {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--white);
            flex-direction: column;
            padding: 40px;
            box-shadow: var(--shadow);
            transform: translateY(-150%);
            transition: transform 0.3s ease;
        }

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

        .mobile-toggle {
            display: flex;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 2.2rem;
        }
        
        .contact-container {
            padding: 30px;
        }
    }
