/* =========================
   CONTACT PAGE
========================= */

:root {
    --contact-green: #c7f000;
    --contact-green-dark: #95a80f;
    --contact-bg: #0a0a0a;
    --contact-text: #ffffff;
    --contact-text-muted: #9a9a9a;
    --contact-text-soft: rgba(255, 255, 255, 0.75);
}

/* =========================
   HERO SECTION
========================= */
.contact-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        url('/front/images/contact/contact-hero-bg.png') center center / cover no-repeat;
    background-color: #000;
    overflow: hidden;
    padding: 140px 0 80px;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--contact-text);
    margin: 0 0 30px;
}

.contact-hero-subtitle {
    color: var(--contact-text-soft);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.8;
    text-transform: uppercase;
    margin: 0 auto;
    max-width: 560px;
}

/* =========================
   CONTACT MAIN (Info + Form)
========================= */
.contact-main {
    position: relative;
    background: #000;
    padding: 80px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

/* --- Info left --- */
.contact-info {
    padding-top: 10px;
}

.contact-info-block p {
    color: var(--contact-text-muted);
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 4px;
}

.contact-info-block strong {
    color: var(--contact-text);
    font-weight: 700;
}

.contact-socials {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-socials a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--contact-text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-socials a i {
    width: 16px;
    text-align: center;
    color: var(--contact-text-muted);
    font-size: 13px;
}

.contact-socials a strong {
    color: var(--contact-text);
    font-weight: 600;
}

.contact-socials a span {
    color: var(--contact-green-dark);
    text-decoration: underline;
}

.contact-socials a:hover {
    color: var(--contact-text);
}

.contact-socials a:hover span {
    color: var(--contact-green);
}

/* --- Form right --- */
.contact-form-wrapper {
    padding-top: 10px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--contact-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    padding: 10px 0;
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

.contact-form-field-full {
    margin-bottom: 30px;
}

.contact-form-submit {
    display: flex;
    justify-content: flex-end;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--contact-green);
    color: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 32px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn span {
    font-size: 14px;
    line-height: 1;
}

/* =========================
   CTA BSPORT
========================= */
.contact-cta {
    position: relative;
    background: #000;
    padding: 60px 0 100px;
    overflow: hidden;
}

.contact-cta-line {
    position: absolute;
    left: -80px;
    bottom: 30px;
    width: 340px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-cta-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(18px, 2.8vw, 26px);
    font-weight: 700;
    line-height: 1.6;
    color: var(--contact-text);
    margin: 0 0 32px;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #7D64AD;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.contact-cta-btn span {
    font-size: 14px;
    line-height: 1;
}

.contact-cta-btn:hover {
    background: #a8bc14;
    color: #000;
    transform: translateY(-2px);
    text-decoration: none;
}



/* =========================
   RESPONSIVE - TABLET
========================= */
@media (max-width: 991.98px) {
    .contact-hero {
        min-height: 55vh;
        padding: 130px 0 70px;
    }

    .contact-hero-title {
        font-size: 56px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-main {
        padding: 60px 0 80px;
    }

    .contact-cta-line {
        width: 160px;
        left: -30px;
    }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */
@media (max-width: 767.98px) {
    .contact-hero {
        min-height: 50vh;
        padding: 120px 0 60px;
    }

    .contact-hero-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .contact-hero-subtitle {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .contact-hero-subtitle br {
        display: none;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .contact-main {
        padding: 50px 0 70px;
    }

    .contact-cta {
        padding: 40px 0 80px;
    }

    .contact-cta-title {
        font-size: 18px;
    }

    .contact-cta-title br {
        display: none;
    }

    .contact-cta-line {
        width: 120px;
        left: -20px;
        bottom: 30px;
    }

    .contact-scroll-top {
        display: none;
    }
}

/* =========================
   RESPONSIVE - SMALL MOBILE
========================= */
@media (max-width: 575.98px) {
    .contact-hero {
        padding: 110px 0 50px;
    }

    .contact-hero-title {
        font-size: 34px;
    }

    .contact-cta-line {
        width: 90px;
    }
}
