.contact-page {
    overflow: hidden;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--sky-blue);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(20, 33, 61, 0.92), rgba(20, 33, 61, 0.72), rgba(20, 33, 61, 0.35)),
        url("../img/carousel-1.jpg") center center / cover no-repeat;
}

.contact-hero p {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
    line-height: 1.7;
}

.contact-main {
    background:
        linear-gradient(rgba(245, 248, 255, 0.94), rgba(245, 248, 255, 0.94)),
        url("../img/service-6.jpg") center center / cover no-repeat;
}

.contact-form-card,
.contact-info-card,
.contact-help-card {
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(20, 33, 61, 0.1);
}

.contact-form-card {
    padding: 40px;
}

.contact-info-card,
.contact-help-card {
    padding: 35px;
}

.form-control,
.form-select {
    border: 1px solid rgba(20, 33, 61, 0.12);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 0.2rem rgba(40, 94, 167, 0.18);
}

.contact-info-item {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(20, 33, 61, 0.08);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--sky-blue);
}

.contact-info-item h5 {
    margin-bottom: 4px;
}

.contact-info-item p {
    margin-bottom: 0;
}

.contact-help-card {
    background:
        linear-gradient(rgba(20, 33, 61, 0.92), rgba(20, 33, 61, 0.92)),
        url("../img/service-3.jpg") center center / cover no-repeat;
}

.contact-help-card h4,
.contact-help-card p,
.contact-help-card li {
    color: #ffffff;
}

.contact-help-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.contact-help-card li {
    margin-bottom: 10px;
}

.contact-hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    visibility: hidden;
}

.contact-map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.alert {
    border-radius: 0;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .contact-hero {
        min-height: 460px;
    }

    .contact-hero p {
        font-size: 17px;
    }

    .contact-form-card,
    .contact-info-card,
    .contact-help-card {
        padding: 28px;
    }
}

@media (max-width: 575.98px) {
    .contact-hero h1 {
        font-size: 38px;
    }

    .contact-form-card,
    .contact-info-card,
    .contact-help-card {
        padding: 22px;
    }
}