.contact-page-main { padding: 140px 0 80px; }
.contact-page-shell { width: min(calc(100% - 32px), 1200px); margin: 0 auto; }
.contact-page-heading { margin-bottom: 38px; }
.contact-page-heading .section-subtitle { max-width: 860px; margin-right: auto; margin-left: auto; }
.contact-page-heading .header-line { width: 58px; height: 3px; margin: 20px auto 0; background: var(--brand); border-radius: 999px; }
.contact-premium-layout { display: flex; width: 100%; max-width: 980px; margin: 0 auto; overflow: hidden; border-radius: 24px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); }
.contact-brand-info { flex: 1; min-width: 330px; padding: 52px 38px; color: #fff; background: linear-gradient(135deg, var(--brand) 0%, #a21a1a 100%); }
.contact-brand-header img { width: auto; height: 85px; max-width: 100%; margin-bottom: 10px; object-fit: contain; }
.contact-brand-header h2 { margin: 0 0 10px; color: #fff; font-size: 2.35rem; }
.contact-brand-header p, .contact-brand-info .method-text p { margin: 0; color: rgba(255, 255, 255, 0.86); }
.contact-methods { display: grid; gap: 18px; margin: 28px 0; }
.contact-brand-info .method-item { margin: 0; }
.contact-brand-info .method-text strong { margin-bottom: 5px; }
.contact-brand-info .method-text p, .contact-brand-info .method-text a { display: block; font-size: 0.86rem; line-height: 1.55; }
.contact-brand-info .method-text a { width: fit-content; color: #fff; font-weight: 700; text-decoration: none; }
.contact-brand-info .method-text a:hover { text-decoration: underline; }
.social-icons-row { gap: 10px; }
.social-dot { color: #fff; }
.contact-form-section { flex: 1.5; padding: 60px; background: var(--bg-primary); }
.contact-form-section .form-header h2 { margin: 0 0 8px; color: var(--text-primary); font-size: 1.8rem; }
.contact-form-section .form-header p { margin: 0; color: var(--text-secondary); }
.contact-form-section .premium-modern-form { display: flex; margin-top: 0; flex-direction: column; gap: 20px; }
.contact-form-section .floating-group input, .contact-form-section .floating-group textarea { border-radius: 0; color: var(--text-primary); }
.contact-form-section .floating-group textarea { resize: vertical; }
.contact-form-section .premium-submit { min-height: 56px; }
.contact-form-section .form-status {
    display: none;
    margin-bottom: -6px;
}

.contact-form-section .form-status.show {
    display: block;
    padding: 17px 20px 17px 58px;
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.5;
    border: 1px solid;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    animation: contact-status-enter 0.4s ease both;
}

.contact-form-section .form-status.success {
    position: relative;
    color: #14532d;
    background: linear-gradient(135deg, #ecfdf3 0%, #dcfce7 100%);
    border-color: #86efac;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.16);
}

.contact-form-section .form-status.success::before {
    position: absolute;
    top: 50%;
    left: 17px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    content: "✓";
    background: #16a34a;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 5px 12px rgba(22, 163, 74, 0.3);
}

.contact-form-section .form-status.error {
    color: #991b1b;
    background: #fff1f2;
    border-color: #fda4af;
}

@keyframes contact-status-enter {
    from { opacity: 0; transform: translateY(-8px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

[data-theme="dark"] .contact-form-section .form-status.success {
    color: #bbf7d0;
    background: linear-gradient(135deg, rgba(20, 83, 45, 0.72), rgba(22, 101, 52, 0.58));
    border-color: #22c55e;
}
.contact-form-section .form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
@media (max-width: 900px) { .contact-premium-layout { flex-direction: column; } .contact-brand-info { min-width: 0; padding: 40px; } .contact-form-section { padding: 40px; } }
@media (max-width: 600px) { .contact-page-main { padding: 105px 0 48px; } .contact-page-shell { width: min(calc(100% - 20px), 1200px); } .contact-page-heading { margin-bottom: 28px; } .contact-brand-info, .contact-form-section { padding: 32px 22px; } .contact-brand-header h2 { font-size: 2rem; } }
[data-theme="dark"] .contact-premium-layout { box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35); }
