/* Contact Page Header Fix - Matching Other Pages */

/* Modern, clean header styling to match other pages */
.contact-hero {
    background: #ffffff;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #1a1a1a;
    border: none;
    box-shadow: none;
}

/* Remove the wavy animation */
.contact-hero::before {
    display: none;
}

/* Clean up the curved divider */
.curved-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
}

.curved-divider svg {
    fill: #f8fafc;
}

/* Improve typography to match other pages */
.contact-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #1a1a1a;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #1a1a1a;
    text-shadow: none;
    letter-spacing: -0.5px;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.5;
    color: #64748b;
}

/* Hide hero stats */
.hero-stats {
    display: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 5rem 0 3rem;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}