/* Loncin Contact Page — Premium brand layout */
.contact-page {
    min-height: 70vh;
    padding-bottom: 72px;
    background:
        radial-gradient(circle at 0 0, rgba(234, 28, 38, 0.05), transparent 36%),
        #f4f6f8;
}

.contact-hero {
    min-height: 150px;
    padding: 28px 0;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(ellipse 70% 90% at 100% 0%, rgba(234, 28, 38, 0.22), transparent 58%),
        linear-gradient(135deg, #111 0%, #1a1a1a 62%, #2d0508 100%);
    border-bottom: 3px solid #ea1c26;
}

.contact-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-hero-copy span {
    display: block;
    margin-bottom: 7px;
    color: #ea1c26;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-hero-copy h1 {
    margin: 0 0 7px;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.contact-hero-copy p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.55;
}

.contact-hero-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea1c26;
    font-size: 24px;
    border: 1px solid rgba(234, 28, 38, 0.35);
    border-radius: 18px;
    background: rgba(234, 28, 38, 0.12);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.5fr);
    gap: 24px;
    margin-top: 32px;
    align-items: stretch;
}

.contact-info-panel,
.contact-form-panel {
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-info-head {
    padding: 24px;
    color: #fff;
    background:
        radial-gradient(ellipse 80% 70% at 100% 0%, rgba(234, 28, 38, 0.2), transparent 55%),
        #111;
    border-bottom: 3px solid #ea1c26;
}

.contact-info-head h2,
.contact-form-head h2 {
    margin: 0 0 7px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-info-head h2 {
    color: #fff;
}

.contact-info-head p,
.contact-form-head p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.contact-info-head p {
    color: rgba(255, 255, 255, 0.58);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 22px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
    border-bottom: 0;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ea1c26;
    border: 1px solid rgba(234, 28, 38, 0.15);
    border-radius: 11px;
    background: rgba(234, 28, 38, 0.07);
}

.contact-info-content strong {
    display: block;
    margin-bottom: 4px;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.contact-info-content a,
.contact-info-content span {
    display: block;
    color: #64748b;
    font-size: 13px;
    line-height: 1.65;
    text-decoration: none;
}

.contact-info-content a:hover {
    color: #ea1c26;
}

.contact-social-row {
    margin-top: auto;
    padding: 17px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid #eee;
    background: #fafbfc;
}

.contact-social-row span {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.contact-social-link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 10px;
    background: #ea1c26;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.contact-social-link:hover {
    color: #fff;
    background: #c91820;
    transform: translateY(-2px);
}

.contact-form-panel {
    padding: 28px;
}

.contact-form-head {
    margin-bottom: 22px;
    padding-bottom: 17px;
    border-bottom: 1px solid #eee;
}

.contact-form-head h2 {
    color: #111;
}

.contact-form-head p {
    color: #64748b;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-field label {
    display: block;
    margin-bottom: 7px;
    color: #333;
    font-size: 12px;
    font-weight: 700;
}

.contact-field label i {
    width: 18px;
    color: #ea1c26;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 11px;
    outline: none;
    background: #fafbfc;
    color: #111;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.contact-field input {
    height: 46px;
    padding: 0 14px;
}

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

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #ea1c26;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(234, 28, 38, 0.1);
}

.contact-field-error {
    margin-top: 5px;
    color: #ea1c26;
    font-size: 11px;
}

.contact-submit-row {
    margin-top: 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.contact-submit-row p {
    margin: 0;
    color: #94a3b8;
    font-size: 12px;
}

.contact-submit-btn-premium {
    min-width: 170px;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    border: 0;
    border-radius: 11px;
    background: #ea1c26;
    box-shadow: 0 8px 24px rgba(234, 28, 38, 0.3);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}

.contact-submit-btn-premium:hover {
    background: #c91820;
    transform: translateY(-2px);
}

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

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

@media (max-width: 576px) {
    .contact-page {
        padding-bottom: 48px;
    }

    .contact-hero {
        min-height: 130px;
    }

    .contact-hero-icon {
        display: none;
    }

    .contact-layout {
        margin-top: 20px;
    }

    .contact-form-panel {
        padding: 21px 17px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-field--full {
        grid-column: auto;
    }

    .contact-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-submit-btn-premium {
        width: 100%;
    }
}
