.home-section--contact .site-container {
    position: relative;
}

.home-contact {
    display: grid;
    gap: 26px;
    margin-top: 28px;
}

.home-contact__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
    gap: 24px;
    align-items: start;
}

.home-contact__info {
    display: grid;
    gap: 18px;
}

.home-contact__card,
.home-contact__form {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98),
        rgba(248, 250, 252, 0.96)
    );
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.home-contact__card {
    padding: 24px 26px;
}

.home-contact__card h3,
.home-contact__form-head h3 {
    margin: 0 0 10px;
    /* font-size: clamp(22px, 2vw, 30px); */
    line-height: 1.18;
    color: #0f172a;
}

.home-contact__content {
    color: #334155;
    line-height: 1.8;
}

.home-contact__content > :first-child {
    margin-top: 0;
}

.home-contact__content > :last-child {
    margin-bottom: 0;
}

.home-contact__content a {
    color: var(--web-link-text, #0f766e);
    word-break: break-word;
}

.home-contact__card--map,
.home-contact__card--map-bottom {
    padding: 14px;
    overflow: hidden;
}

.home-contact__map {
    overflow: hidden;
    border-radius: 18px;
    min-height: 320px;
    background: #e2e8f0;
}

.home-contact__map iframe {
    display: block;
    width: 100%;
    min-height: 320px;
    border: 0;
}

.contact-page__header {
    padding: 28px 0 12px;
}

.contact-page__intro {
    width: 100%;
    max-width: none;
    margin: 10px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.contact-page__body {
    padding: 10px 0 48px;
}

.home-contact__form {
    position: relative;
    padding: 28px;
    align-self: start;
    overflow: hidden;
    border-color: #e2e8f0;
    background: #fff;
}

.home-contact__form-head {
    margin-bottom: 18px;
}

.home-contact__form-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-contact__form-head span i {
    font-size: 14px;
}

/* .home-contact__form-head h3 {
    font-size: clamp(25px, 2vw, 31px);
} */

.home-contact__form-head p {
    margin: 0;
    color: #64748b;
    line-height: 1.75;
}

.home-contact__fields {
    display: grid;
    gap: 16px;
}

.home-contact__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-contact__form label {
    display: block;
    margin: 0;
}

.home-contact__field-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home-contact__input-wrap,
.home-contact__textarea-wrap {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 0 14px;
    border: 1px solid #dbe5f0;
    border-radius: 14px;
    background: #fff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.home-contact__input-wrap i,
.home-contact__textarea-wrap i {
    margin-top: 15px;
    color: #94a3b8;
    font-size: 14px;
}

.home-contact__form input,
.home-contact__form textarea {
    width: 100%;
    padding: 14px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #0f172a;
    font: inherit;
    box-shadow: none;
    transition: none;
}

.home-contact__input-wrap:focus-within,
.home-contact__textarea-wrap:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.home-contact__form input:focus,
.home-contact__form textarea:focus {
    outline: none;
}

.home-contact__form textarea {
    resize: vertical;
    min-height: 138px;
}

.home-contact__alert {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
}

.home-contact__alert--success {
    background: rgba(22, 163, 74, 0.12);
    color: #166534;
}

.home-contact__alert--error {
    background: rgba(220, 38, 38, 0.1);
    color: #991b1b;
}

.home-contact__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.home-contact__form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
}

.home-contact__form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 174px;
    padding: 15px 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(110deg, #2563eb, #c96a28);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.home-contact__form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 42px rgba(37, 99, 235, 0.26);
    filter: saturate(1.04);
}

.home-contact__form-footer p {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    text-align: right;
}

.home-contact__form-footer p i {
    color: #16a34a;
}

.home-contact__form .turnstile-box {
    margin-bottom: 14px;
}

@media (max-width: 991px) {
    .home-contact__top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-contact__grid {
        grid-template-columns: 1fr;
    }

    .home-contact__card,
    .home-contact__form {
        padding: 18px;
        border-radius: 20px;
    }

    .home-contact__card--map,
    .home-contact__card--map-bottom {
        padding: 10px;
    }

    .home-contact__form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .home-contact__form button {
        width: 100%;
    }

    .home-contact__form-footer p {
        justify-content: center;
        text-align: center;
    }
}
