/* Contact Page - Premium Design System */
.contact-hero {
    height: 60vh !important;
}

/* Barrier Section Transition */
.barrier-section {
    background: #fff;
    padding: 150px 0 60px 0;
    text-align: center;
}

.barrier-wrapper h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
}

.barrier-line {
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 0 auto;
}

/* Main Contact Section with Stadium Background */
.contact-page-section {
    padding: 100px 0;
    background:
        linear-gradient(135deg, rgba(230, 30, 36, 0.3) 0%, rgba(183, 28, 28, 0.4) 100%),
        url('../../images/stadium_background.webp') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Unified Premium Contact Console */
.contact-console {
    display: flex;
    max-width: 1250px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Sidebar Styling - Red Theme */
.console-sidebar {
    width: 35%;
    background: linear-gradient(180deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 60px 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-header h2 {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
    color: white;
}

.sidebar-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.method-info span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 800;
}

.method-info a,
.method-info p {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: block;
}

/* Form Area */
.console-form {
    width: 65%;
    padding: 60px;
}

.form-header h3 {
    font-size: 28px;
    color: var(--dark-gray);
    font-weight: 900;
    text-transform: uppercase;
}

.accent-line {
    width: 50px;
    height: 4px;
    background: var(--primary-red);
    margin: 15px 0 40px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 900;
    color: #888;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    background: white;
    outline: none;
}

.console-submit-btn {
    width: 100%;
    padding: 20px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.console-submit-btn:hover {
    background: var(--dark-red);
    transform: translateY(-5px);
}

/* Newsleter Form Specific UI */
.cta-newsletter-wrapper .newsletter-inline-form {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

/* Alerts */
.success-message {
    background: #f0fff4;
    color: #2f855a;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 700;
    border: 1px solid #c6f6d5;
}

.error-message {
    background: #fff5f5;
    color: #c53030;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 700;
    border: 1px solid #fed7d7;
}

/* Social Buttons */
.console-socials p {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    font-weight: 900;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: white;
    color: var(--primary-red);
    border-color: white;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .contact-console {
        flex-direction: column;
    }

    .console-sidebar,
    .console-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-newsletter-wrapper .newsletter-inline-form {
        flex-direction: column;
    }

    .cta-newsletter-wrapper .newsletter-inline-form input {
        width: 100%;
    }

    .cta-newsletter-wrapper .cta-btn {
        width: 100%;
        border-radius: 50px;
        justify-content: center;
    }
}