.contact-hero {
    position: relative;
    padding: 110px 0 90px;
    background:
        linear-gradient(135deg, rgba(9, 90, 75, 0.94), rgba(0, 25, 97, 0.92)),
        url("../img/contact-banner.jpg") no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.13), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 30%);
    pointer-events: none;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.82);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.contact-hero__content h1 {
    color: #fff;
    font-size: 3.15rem;
    line-height: 1.1;
    margin-bottom: 18px;
}

.contact-hero__content p {
    color: rgba(255,255,255,0.88);
    font-size: 1.04rem;
    max-width: 680px;
}

.contact-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-stat-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 24px 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

.contact-stat-card i {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 12px;
    display: inline-block;
}

.contact-stat-card h3 {
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
    font-family: "Exo", sans-serif;
    font-weight: 700;
}

.contact-stat-card span {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
}

.contact-main {
    background: #f7fafc;
}

.contact-form-card,
.contact-side-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: 0 14px 36px rgba(20,44,88,0.08);
    border: 1px solid rgba(9,90,75,0.06);
}

.contact-side-card + .contact-side-card {
    margin-top: 22px;
}

.contact-form .form-control,
.contact-form select,
.contact-form textarea {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid #d7e1ea;
    padding: 12px 16px;
    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

.contact-form .form-control:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #095a4b;
    box-shadow: 0 0 0 0.2rem rgba(9, 90, 75, 0.10);
}

.contact-required {
    color: #b42318;
    font-size: 0.9rem;
}

.contact-captcha-question {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 12px;
    background: #f4f9fc;
    border-radius: 999px;
    color: #095a4b;
    font-weight: 700;
}

.contact-submit-btn {
    min-height: 52px;
}

.contact-alert {
    border-radius: 16px;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-side-card h4 {
    color: #095a4b;
    margin-bottom: 16px;
}

.contact-side-list {
    margin: 0;
    padding-left: 1.1rem;
}

.contact-side-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-socials a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #25435c;
    font-weight: 600;
    background: #f4f9fc;
    border-radius: 14px;
    padding: 14px 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20,44,88,0.08);
    color: #095a4b;
}

.contact-socials i {
    font-size: 1.25rem;
    color: #095a4b;
}

@media (max-width: 991.98px) {
    .contact-hero {
        padding: 90px 0 70px;
    }

    .contact-hero__content h1 {
        font-size: 2.5rem;
    }

    .contact-hero__stats {
        margin-top: 28px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 78px 0 58px;
    }

    .contact-hero__content h1 {
        font-size: 2rem;
    }

    .contact-hero__stats {
        grid-template-columns: 1fr;
    }

    .contact-form-card,
    .contact-side-card {
        padding: 24px 20px;
        border-radius: 18px;
    }
}

@media (max-width: 575.98px) {
    .contact-hero__content h1 {
        font-size: 1.8rem;
    }
}