.contact-hero {
    padding: 145px 0 90px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 35%, rgba(104, 164, 255, 0.4), transparent 30%),
        linear-gradient(120deg, #102b53 0%, #286eda 100%);
}

.contact-hero-inner {
    max-width: 760px;
    text-align: center;
}

.contact-hero .section-kicker {
    color: #c8ddff;
}

.contact-hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.contact-hero p {
    max-width: 650px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-section {
    padding: 95px 0 115px;
    background: #f5f8fc;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 30px;
    align-items: start;
}

.contact-options {
    display: grid;
    gap: 18px;
}

.contact-option-card {
    display: flex;
    gap: 18px;
    padding: 25px;
    background: #fff;
    border: 1px solid #dfe8f5;
    border-radius: 16px;
    box-shadow: 0 14px 38px rgba(16, 43, 83, 0.06);
}

.contact-option-icon {
    display: grid;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    place-items: center;
    color: #286eda;
    font-size: 1.12rem;
    background: #e5efff;
    border-radius: 12px;
}

.contact-option-icon.whatsapp {
    color: #168a48;
    background: #e5f7ec;
}

.contact-option-card h2 {
    margin: 1px 0 8px;
    color: #10233c;
    font-size: 1.12rem;
}

.contact-option-card p {
    margin: 0 0 12px;
    color: #66758b;
    font-size: 0.88rem;
    line-height: 1.6;
}

.contact-option-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #286eda;
    font-size: 0.87rem;
    font-weight: 750;
    text-decoration: none;
}

.contact-form-card {
    padding: 38px;
    background: #fff;
    border: 1px solid #dfe8f5;
    border-radius: 20px;
    box-shadow: 0 20px 55px rgba(16, 43, 83, 0.09);
}

.contact-form-card > h2,
.contact-success h2 {
    margin: 0;
    color: #10233c;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    letter-spacing: -0.035em;
}

.contact-form-intro {
    margin: 12px 0 27px;
    color: #66758b;
    line-height: 1.65;
}

.contact-form {
    display: grid;
    gap: 19px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field > span {
    color: #10233c;
    font-size: 0.86rem;
    font-weight: 750;
}

.contact-field > span small {
    margin-left: 6px;
    color: #8290a4;
    font-weight: 400;
}

[dir="rtl"] .contact-field > span small {
    margin-right: 6px;
    margin-left: 0;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 0 15px;
    color: #10233c;
    font: inherit;
    background: #fff;
    border: 1px solid #d5dfed;
    border-radius: 10px;
    outline: none;
}

.contact-field input {
    height: 52px;
}

.contact-field textarea {
    min-height: 145px;
    padding-top: 14px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #286eda;
    box-shadow: 0 0 0 4px rgba(40, 110, 218, 0.11);
}

.field-error {
    color: #b42318;
}

.contact-submit {
    display: flex;
    min-height: 53px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 0 19px;
    color: #fff;
    font-weight: 750;
    background: #286eda;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 11px 25px rgba(40, 110, 218, 0.23);
    cursor: pointer;
}

.contact-submit:disabled {
    opacity: 0.65;
    cursor: wait;
}

.contact-privacy {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #8290a4;
    font-size: 0.76rem;
}

.contact-success,
.contact-error {
    display: flex;
    gap: 13px;
    margin-bottom: 25px;
    padding: 17px;
    border-radius: 11px;
}

.contact-success {
    color: #17653a;
    background: #eaf8f0;
    border: 1px solid #bee7cf;
}

.contact-success h2 {
    color: #17653a;
    font-size: 1.08rem;
}

.contact-success p {
    margin: 5px 0 0;
    font-size: 0.86rem;
    line-height: 1.55;
}

.contact-error {
    color: #a52a20;
    background: #fff0ee;
    border: 1px solid #f1c8c3;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 850px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 120px 0 65px;
    }

    .contact-hero-inner {
        text-align: left;
    }

    [dir="rtl"] .contact-hero-inner {
        text-align: right;
    }

    .contact-hero p {
        margin-left: 0;
    }

    [dir="rtl"] .contact-hero p {
        margin-right: 0;
    }

    .contact-section {
        padding: 65px 0 80px;
    }

    .contact-form-card {
        padding: 25px 18px;
    }

    .contact-option-card {
        padding: 21px 18px;
    }
}
