.contact-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 18% 22%, rgba(252, 91, 98, 0.22), transparent 30%),
        radial-gradient(circle at 82% 30%, rgba(20, 184, 166, 0.16), transparent 28%),
        linear-gradient(135deg, #081120 0%, #132d57 52%, #0a1526 100%);
}

.contact-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 72px 72px;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    max-width: 760px;
    padding: 70px 0;
    color: #fff;
}

.contact-hero-content span,
.contact-kicker {
    display: block;
    margin-bottom: 12px;
    color: #fc5b62;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-hero-content h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 900;
    line-height: 1;
}

.contact-hero-content p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.7;
}

.contact-section {
    padding: 56px 0 72px;
}

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

.contact-info-card,
.contact-form-card {
    background: #fff;
    border: 1px solid var(--iw-border);
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.contact-info-card {
    padding: 34px;
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 14px;
}

.contact-info-card p,
.contact-form-card p {
    color: var(--iw-muted-dark);
    line-height: 1.75;
}

.contact-info-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-info-list div {
    padding: 18px;
    background: #f8fbff;
    border: 1px solid var(--iw-border);
    border-radius: 18px;
}

.contact-info-list i {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 91, 98, 0.1);
    color: var(--iw-coral);
    margin-bottom: 12px;
}

.contact-info-list strong,
.contact-info-list span {
    display: block;
}

.contact-info-list strong {
    color: var(--iw-text);
    font-weight: 900;
    margin-bottom: 6px;
}

.contact-info-list span {
    color: var(--iw-muted);
    line-height: 1.65;
}

.contact-form-card {
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.contact-form-card:before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--iw-gradient-coral);
}

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

.contact-field {
    margin-bottom: 18px;
}

.contact-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--iw-text);
    margin-bottom: 8px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid var(--iw-border);
    border-radius: 16px;
    background: #fbfdff;
    padding: 0 15px;
    color: var(--iw-text);
    outline: none;
}

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

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

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(252, 91, 98, 0.45);
    box-shadow: 0 0 0 4px rgba(252, 91, 98, 0.1);
    background: #fff;
}

.contact-message-box {
    background: #f8fbff;
    border: 1px solid var(--iw-border);
    border-radius: 20px;
    padding: 18px 18px 2px;
    margin-bottom: 18px;
}

.contact-recaptcha {
    margin: 18px 0;
}

.contact-tnc {
    background: #f8fbff;
    border: 1px solid var(--iw-border);
    border-radius: 16px;
    padding: 15px 16px;
    margin-bottom: 18px;
}

.contact-tnc label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    cursor: pointer;
}

.contact-tnc input {
    margin-top: 5px;
}

.contact-tnc span {
    color: var(--iw-muted-dark);
    line-height: 1.65;
}

.contact-tnc a {
    font-weight: 800;
    color: var(--iw-coral);
}

.contact-submit-btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: var(--iw-gradient-coral);
    color: #fff;
    font-weight: 900;
    box-shadow: var(--iw-shadow-coral);
    transition: 0.22s ease;
}

.contact-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
}

.contact-submit-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.contact-alert {
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 22px;
    font-weight: 800;
}

.contact-alert-success {
    background: rgba(20, 184, 166, 0.1);
    color: #0f766e;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.contact-alert-error {
    background: rgba(252, 91, 98, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(252, 91, 98, 0.2);
}

.contact-hp-field {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

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

    .contact-info-card,
    .contact-form-card {
        padding: 26px;
        border-radius: 22px;
    }
}

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

    .contact-hero-content {
        padding: 54px 0;
    }

    .contact-section {
        padding: 42px 0 56px;
    }

    .contact-recaptcha {
        overflow-x: auto;
    }
}
