
        /* Reset & Base */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --background: hsl(209, 40%, 96%);
            --foreground: hsl(222, 47%, 11%);
            --card: hsl(210, 40%, 98%);
            --card-foreground: hsl(222, 47%, 11%);
            --primary: hsl(200, 98%, 39%);
            --primary-foreground: hsl(204, 100%, 97%);
            --secondary: hsl(215, 24%, 26%);
            --secondary-foreground: hsl(210, 40%, 98%);
            --muted: hsl(215, 20%, 65%);
            --muted-foreground: hsl(222, 47%, 11%);
            --border: hsl(212, 26%, 83%);
            --radius: 0.5rem;
        }
		

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
        }

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

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

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

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 500;
            border-radius: var(--radius);
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
        }

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

        .btn-primary:hover {
            background-color: hsl(200, 98%, 34%);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--foreground);
            border: 1px solid var(--border);
        }

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

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1.125rem;
        }

        .btn-ghost {
            background: transparent;
            color: var(--foreground);
        }

        .btn-ghost:hover {
            background-color: var(--card);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background-color: rgba(233, 239, 245, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

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

        .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 20px;
            height: 20px;
            color: var(--primary-foreground);
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
        }

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

        .nav a {
            color: var(--muted);
            transition: color 0.2s;
        }

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

        .header-buttons {
            display: none;
            align-items: center;
            gap: 1rem;
        }

        .mobile-menu-btn {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-btn svg {
            width: 24px;
            height: 24px;
            color: var(--foreground);
        }

        @media (min-width: 768px) {
            .nav, .header-buttons {
                display: flex;
            }
            .mobile-menu-btn {
                display: none;
            }
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding-top: 64px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            /* background: rgba(255, 255, 255, 0.8); */
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            /* background: linear-gradient(to bottom, rgba(233, 239, 245, 0.8), rgba(233, 239, 245, 0.6), var(--background)); */
        }

        .hero-content {
            position: relative;
            z-index: 20;
            text-align: center;
            padding: 2rem 1.5rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            border-radius: 9999px;
            padding: 0.5rem 1rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }

        .hero-badge span {
            font-size: 0.875rem;
            font-weight: 500;
        }

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            display: block;
            color: var(--primary);
        }

        .hero-description {
            font-size: 1.125rem;
            color: var(--muted);
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            color: var(--muted);
        }

        .hero-stat {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

        @media (min-width: 768px) {
            .hero h1 {
                font-size: 4rem;
            }
            .hero-description {
                font-size: 1.5rem;
            }
            .hero-buttons {
                flex-direction: row;
            }
        }

        /* Floating Elements */
        .floating {
            position: absolute;
            z-index: 10;
            pointer-events: none;
        }

        .floating-box {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .floating-box svg {
            color: var(--primary);
        }

        .floating-1 {
            top: 420px;
            left: 40px;
            width: 64px;
            height: 64px;
        }

        .floating-2 {
            top: 160px;
            right: 180px;
            width: 80px;
            height: 80px;
            animation-delay: 1s;
        }

        .floating-3 {
            bottom: 200px;
            left: 25%;
            width: 56px;
            height: 56px;
            animation-delay: 0.5s;
            animation-duration: 4s;
        }

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

        /* Features Section */
        .features {
            padding: 6rem 0;
            background-color: var(--card);
        }

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

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(0, 136, 204, 0.1);
            border-radius: 9999px;
            padding: 0.5rem 1rem;
            margin-bottom: 1rem;
        }

        .section-badge svg {
            width: 16px;
            height: 16px;
            color: var(--primary);
        }

        .section-badge span {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--primary);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
        }

        .features-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .feature-card {
            background-color: var(--background);
            border-radius: var(--radius);
            padding: 2rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background-color: rgba(0, 136, 204, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background-color: var(--primary);
            transform: scale(1.1);
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            color: var(--primary);
            transition: color 0.3s ease;
        }

        .feature-card:hover .feature-icon svg {
            color: var(--primary-foreground);
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .feature-description {
            color: var(--muted);
            line-height: 1.7;
        }

        /* How It Works */
        .how-it-works {
            padding: 6rem 0;
            background-color: var(--background);
        }

        .steps {
            display: grid;
            gap: 2rem;
            position: relative;
        }

        @media (min-width: 1024px) {
            .steps {
                grid-template-columns: repeat(3, 1fr);
            }
            .steps::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                height: 2px;
                background-color: var(--border);
                transform: translateY(-50%);
                z-index: 0;
            }
        }

        .step {
            position: relative;
            z-index: 10;
        }

        .step-card {
            background-color: var(--card);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border);
            transition: box-shadow 0.3s ease;
        }

        .step-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .step-number {
            position: absolute;
            top: -12px;
            left: 32px;
            background-color: var(--primary);
            color: var(--primary-foreground);
            font-size: 0.875rem;
            font-weight: 700;
            padding: 0.25rem 1rem;
            border-radius: 9999px;
        }

        .step-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background-color: rgba(0, 136, 204, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            margin-top: 1rem;
        }

        .step-icon svg {
            width: 32px;
            height: 32px;
            color: var(--primary);
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .step-description {
            color: var(--muted);
            line-height: 1.7;
        }

        .step-arrow {
            display: none;
            position: absolute;
            right: -16px;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background-color: var(--primary);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            z-index: 20;
        }

        .step-arrow svg {
            width: 16px;
            height: 16px;
            color: var(--primary-foreground);
        }

        @media (min-width: 1024px) {
            .step-arrow {
                display: flex;
            }
            .step:last-child .step-arrow {
                display: none;
            }
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 0;
            background-color: var(--card);
        }

        .testimonials-grid {
            display: grid;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .testimonial-card {
            background-color: var(--background);
            border-radius: var(--radius);
            padding: 2rem;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .quote-icon {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 48px;
            height: 48px;
            color: rgba(0, 136, 204, 0.1);
        }

        .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 1rem;
        }

        .stars svg {
            width: 20px;
            height: 20px;
            fill: var(--primary);
            color: var(--primary);
        }

        .testimonial-quote {
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            position: relative;
            z-index: 10;
        }

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

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-foreground);
            font-weight: 600;
        }

        .author-name {
            font-weight: 600;
        }

        .author-business {
            font-size: 0.875rem;
            color: var(--muted);
        }

        .author-location {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.75rem;
            color: var(--muted);
            margin-top: 4px;
        }

        .author-location svg {
            width: 12px;
            height: 12px;
        }

        /* CTA Section */
        .cta {
            padding: 6rem 0;
            background-color: var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .cta-glow-1 {
            position: absolute;
            top: 40px;
            left: 40px;
            width: 128px;
            height: 128px;
            background-color: rgba(0, 136, 204, 0.2);
            border-radius: 50%;
            filter: blur(60px);
        }

        .cta-glow-2 {
            position: absolute;
            bottom: 40px;
            right: 40px;
            width: 192px;
            height: 192px;
            background-color: rgba(0, 136, 204, 0.1);
            border-radius: 50%;
            filter: blur(60px);
        }

        .cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(0, 136, 204, 0.2);
            border-radius: 9999px;
            padding: 0.5rem 1rem;
            margin-bottom: 2rem;
        }

        .cta-badge svg {
            width: 16px;
            height: 16px;
            color: var(--primary-foreground);
        }

        .cta-badge span {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--secondary-foreground);
        }

        .cta h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-foreground);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .cta h2 span {
            display: block;
            color: var(--primary);
        }

        .cta-description {
            font-size: 1.125rem;
            color: rgba(248, 250, 252, 0.8);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }

        .btn-cta-outline {
            background: transparent;
            color: var(--secondary-foreground);
            border: 1px solid rgba(248, 250, 252, 0.2);
        }

        .btn-cta-outline:hover {
            background-color: rgba(248, 250, 252, 0.1);
        }

        @media (min-width: 768px) {
            .cta h2 {
                font-size: 3rem;
            }
            .cta-buttons {
                flex-direction: row;
            }
        }

        /* Footer */
        .footer {
            background-color: var(--foreground);
            color: var(--background);
            padding: 4rem 0;
        }

        .footer-grid {
            display: grid;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr 1fr;
            }
        }

        .footer-brand {
            margin-bottom: 1rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-icon svg {
            width: 20px;
            height: 20px;
            color: var(--primary-foreground);
        }

        .footer-logo-text {
            font-size: 1.25rem;
            font-weight: 700;
        }

        .footer-tagline {
            color: rgba(233, 239, 245, 0.6);
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background-color: rgba(233, 239, 245, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
        }

        .social-link:hover {
            background-color: var(--primary);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        .footer-column h4 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: rgba(233, 239, 245, 0.6);
            transition: color 0.2s;
        }

        .footer-column a:hover {
            color: var(--background);
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(233, 239, 245, 0.6);
            margin-bottom: 0.75rem;
        }

        .footer-contact-item svg {
            width: 16px;
            height: 16px;
        }

        .footer-contact-item a:hover {
            color: var(--background);
        }

        .footer-bottom {
            border-top: 1px solid rgba(233, 239, 245, 0.1);
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }

        .footer-copyright {
            color: rgba(233, 239, 245, 0.6);
            font-size: 0.875rem;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
            font-size: 0.875rem;
        }

        .footer-links a {
            color: rgba(233, 239, 245, 0.6);
            transition: color 0.2s;
        }

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

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            padding: 1rem 0;
            border-top: 1px solid var(--border);
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            padding: 0.75rem 0;
            color: var(--muted);
        }

        .mobile-menu a:hover {
            color: var(--foreground);
        }

        .mobile-menu-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding-top: 1rem;
        }
		
		
		
		
		
		
		/* Contact Form Styles - Adapted for Main Stylesheet */
/* Integrates with existing CSS variables from document 3 */

/* Form Container - Using .step-card from HTML */
.step-card {
    background-color: var(--card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
    position: relative;
}

.step-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Form Header */
.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-subtitle {
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--foreground);
}

/* Form Inputs */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    background: var(--background);
    color: var(--foreground);
    transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
    border-color: rgba(0, 136, 204, 0.5);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Form Row for side-by-side inputs */
.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Submit Button - extends existing .btn-primary */
.form-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background: hsl(200, 98%, 34%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

/* Form Notes/Help Text */
.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 1rem;
    text-align: center;
}

.form-note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Error States */
.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error.active {
    display: block;
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: #dc2626;
}

.form-input.error:focus,
.form-textarea.error:focus,
.form-select.error:focus {
    box-shadow: 0 0 0 3px rgb(220 38 38 / 0.1);
}

/* Success Message Container */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 136, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.success-message p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

/* Hide form container when success message is shown */
#formContainer.hidden {
    display: none;
}

/* Loading State for Submit Button */
.form-submit.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.form-submit.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-foreground);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    position: absolute;
    right: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-card {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
}

/* Focus visible for accessibility */
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible,
.form-submit:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

 /* Contact Section */
        .contact-section {
            padding: 8rem 0 5rem;
            min-height: 100vh;
        }

        .contact-grid {
            display: grid;
            gap: 3rem;
        }

        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
            }
        }

        .contact-info {
            padding-top: 1rem;
        }

        .contact-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .contact-title {
                font-size: 3rem;
            }
        }

        .contact-title span {
            color: hsl(var(--primary));
        }

        .contact-description {
            font-size: 1.125rem;
            color: hsl(var(--muted-foreground));
            margin-bottom: 2rem;
        }

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

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: hsl(var(--primary) / 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 24px;
            height: 24px;
            color: hsl(var(--primary));
        }

        .contact-item-content h4 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-item-content p {
            color: hsl(var(--muted-foreground));
        }

        .contact-item-content a {
            color: hsl(var(--primary));
            text-decoration: none;
        }

        .contact-item-content a:hover {
            text-decoration: underline;
        }
		
		/* =========================
   CONTACT SECTION
========================= */

.contact {
    padding: 8rem 0 5rem;
    background-color: var(--background);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: flex-start;
    }
}

/* Contact Info */
.contact-info {
    padding-top: 1rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-title span {
    color: var(--primary);
}

.contact-description {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 2rem;
    max-width: 520px;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 136, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-item-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.contact-item-content p {
    color: var(--muted);
    line-height: 1.5;
}

.contact-item-content a {
    color: var(--primary);
    font-weight: 500;
}

.contact-item-content a:hover {
    text-decoration: underline;
}

/* =========================
   FORM CARD ALIGNMENT
========================= */

.contact .step-card {
    margin-top: 0;
}

@media (max-width: 767px) {
    .contact .step-card {
        margin-top: 2rem;
    }
}