.hero-section {
    background: linear-gradient(135deg, var(--fluent-primary) 0%, var(--fluent-primary-dark) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--fluent-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.search-box {
    background: var(--fluent-white);
    border-radius: var(--fluent-radius-lg);
    padding: 24px;
    box-shadow: var(--fluent-shadow-64);
    max-width: 800px;
}

.search-box .form-control,
.search-box .form-select {
    border: 1px solid var(--fluent-neutral-light);
    padding: 14px 18px;
    font-size: 15px;
    border-radius: var(--fluent-radius);
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    border-color: var(--fluent-primary);
    box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.1);
}

.search-box .btn-search {
    background: var(--fluent-primary);
    color: white;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--fluent-radius);
    transition: all 0.15s ease;
}

.search-box .btn-search:hover {
    background: var(--fluent-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--fluent-shadow-8);
}

.browse-specialization {
    margin-top: 24px;
}

.browse-specialization-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.specialization-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.specialization-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--fluent-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.specialization-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--fluent-white);
    transform: translateY(-2px);
}

.stats-bar {
    background: var(--fluent-white);
    border-radius: var(--fluent-radius-lg);
    box-shadow: var(--fluent-shadow-8);
    padding: 32px 48px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid var(--fluent-neutral-light);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--fluent-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--fluent-neutral-secondary);
    font-weight: 500;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--fluent-neutral-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--fluent-neutral-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}

.service-card {
    background: var(--fluent-white);
    border-radius: var(--fluent-radius-lg);
    box-shadow: var(--fluent-shadow-4);
    padding: 32px;
    height: 100%;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    box-shadow: var(--fluent-shadow-16);
    transform: translateY(-4px);
    border-color: var(--fluent-primary-light);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--fluent-radius-lg);
    background: var(--fluent-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--fluent-primary);
    font-size: 28px;
}

.service-card:hover .service-icon {
    background: var(--fluent-primary);
    color: var(--fluent-white);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--fluent-neutral-dark);
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    color: var(--fluent-neutral-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.states-section {
    background: var(--fluent-neutral-lighter);
}

.state-card {
    background: var(--fluent-white);
    border-radius: var(--fluent-radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--fluent-neutral-dark);
    box-shadow: var(--fluent-shadow-4);
    transition: all 0.15s ease;
    border-left: 4px solid transparent;
}

.state-card:hover {
    box-shadow: var(--fluent-shadow-8);
    border-left-color: var(--fluent-primary);
    color: var(--fluent-primary);
    transform: translateX(4px);
}

.state-name {
    font-size: 15px;
    font-weight: 600;
}

.state-count {
    background: var(--fluent-neutral-lighter);
    color: var(--fluent-neutral-secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.state-card:hover .state-count {
    background: var(--fluent-primary-light);
    color: var(--fluent-primary);
}

.why-section {
    background: linear-gradient(135deg, var(--fluent-primary) 0%, var(--fluent-primary-dark) 100%);
    color: var(--fluent-white);
}

.why-section .section-title {
    color: var(--fluent-white);
}

.why-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--fluent-radius-lg);
    padding: 32px;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.why-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-section {
    background: var(--fluent-white);
}

.cta-box {
    background: var(--fluent-neutral-lighter);
    border-radius: var(--fluent-radius-lg);
    padding: 48px;
    text-align: center;
}

.cta-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--fluent-neutral-dark);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 16px;
    color: var(--fluent-neutral-secondary);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: var(--fluent-primary);
    color: white;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--fluent-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s ease;
}

.btn-cta:hover {
    background: var(--fluent-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--fluent-shadow-8);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .stats-bar {
        padding: 24px;
    }

    .stat-item {
        padding: 16px;
        border-right: none;
        border-bottom: 1px solid var(--fluent-neutral-light);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 28px;
    }

    .search-box {
        padding: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .specialization-tags {
        gap: 6px;
    }

    .specialization-tag {
        padding: 5px 12px;
        font-size: 12px;
    }
}
