.contact-section {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 26px;
    align-items: start;
    margin-top: 70px;
}

.contact-copy {
    padding-top: 8px;
}

.contact-copy h2 {
    margin-top: 8px;
    font-size: clamp(34px, 3.2vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.contact-copy p:last-child {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.55;
    color: #7f8591;
    max-width: 460px;
}

.contact-highlights {
    margin-top: 22px;
    display: grid;
    gap: 10px;
}

.contact-highlights article {
    position: relative;
    border: 1px solid #e5e8ef;
    border-radius: 14px;
    padding: 12px 14px;
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-highlights article:hover {
    transform: translateY(-2px);
    border-color: #d2dbeb;
    box-shadow: 0 14px 24px -22px rgba(17, 33, 71, 0.4);
}

.contact-highlights strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #162349;
}

.contact-highlights span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: #7f8591;
}

.contact-form {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(211, 220, 236, 0.9);
    padding: 22px;
    display: grid;
    gap: 12px;
    margin-top: 12px;
    background: #ffffff;
    box-shadow:
        0 22px 40px -30px rgba(18, 38, 77, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.contact-form::before {
    content: "";
    position: absolute;
    inset: -25% -40%;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(235, 241, 252, 0.45), rgba(255, 255, 255, 0));
    transform: translateX(-72%);
    animation: contactSweep 9s ease-in-out infinite;
    opacity: 0.55;
}

@keyframes contactSweep {
    0% {
        transform: translateX(-72%);
        opacity: 0.1;
    }
    20% {
        opacity: 0.42;
    }
    42% {
        transform: translateX(70%);
        opacity: 0.24;
    }
    100% {
        transform: translateX(70%);
        opacity: 0.08;
    }
}

.row {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: #34405a;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #dde2ec;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    padding: 12px 11px;
    font-size: 13px;
    color: #2f374a;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #7d9ddf;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(125, 157, 223, 0.18);
}

textarea {
    resize: vertical;
    min-height: 126px;
}

.contact-form button {
    position: relative;
    z-index: 1;
    width: max-content;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #163b8c, #102b68);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 13px 11px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px -18px rgba(16, 43, 104, 0.8);
}

.contact-form button::before {
    content: "";
    position: absolute;
    inset: -35% -15%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    transform: translateX(-112%);
    transition: transform 0.5s ease;
}

.contact-form button:hover::before {
    transform: translateX(120%);
}

.contact-form button span {
    width: 20px;
    height: 20px;
    border-radius: 7px;
    background: #fff;
    color: #122760;
    display: grid;
    place-items: center;
}

@media (max-width: 1024px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-copy h2 {
        font-size: 32px;
    }

    .contact-highlights {
        margin-top: 14px;
    }

    .contact-form {
        border-radius: 16px;
        padding: 14px;
        gap: 10px;
        margin-top: 0;
    }

    .two-col {
        grid-template-columns: 1fr;
    }
}
