/* Contact Hero Section */
.contact-hero {
    position: relative;
    height: 340px;
    background: url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?w=1200&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 101, 120, 0.87) 0%, rgba(109, 189, 200, 0.73) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 700px;
    padding: 0 15px;
}

.contact-hero-icon {
    background: #ffd700;
    color: #0b6578;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    font-size: 2.3rem;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
}

.contact-hero-title {
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-hero-subtitle {
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.7;
    color: #f7f7f7;
}

@media (max-width: 600px) {
    .contact-hero {
        height: 250px;
    }
    .contact-hero-title {
        font-size: 1.4rem;
    }
    .contact-hero-subtitle {
        font-size: 0.97rem;
    }
    .contact-hero-icon {
        width: 46px;
        height: 46px;
        font-size: 1.35rem;
        margin-bottom: 12px;
    }
}
