/* ==================================================
   BASIC JUDO - CONTACT PAGE
================================================== */

/* 01 - Page Base
-------------------------------------------------- */

.bj-contact-page {
    background: #f7f4ef;
}

.bj-contact-hero {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 02 - Shared Section Label
-------------------------------------------------- */

.bj-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #c8102e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    line-height: 1;
}

.bj-section-label::before {
    content: "";
    width: 36px;
    height: 2px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: #f5b400;
}

/* 03 - Contact Main Section
-------------------------------------------------- */

.bj-contact-section {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(circle at top right, rgba(245, 180, 0, 0.08), transparent 34%),
        radial-gradient(circle at bottom left, rgba(6, 27, 58, 0.06), transparent 38%),
        linear-gradient(180deg, #f8f5ef 0%, #f1ece4 100%);
    overflow: hidden;
}

.bj-contact-section .bj-container {
    position: relative;
    z-index: 2;
}

.bj-contact-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 60px;
    align-items: start;
}

/* 04 - Contact Info
-------------------------------------------------- */

.bj-contact-info h2 {
    margin: 20px 0;
    color: #222;
    font-size: 48px;
    line-height: 1.2;
}

.bj-contact-info h2 span {
    color: #b78a3c;
}

.bj-contact-info p {
    margin-bottom: 45px;
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}

.bj-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bj-contact-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(6, 27, 58, 0.06);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(6, 27, 58, 0.06);
    transition: 0.35s ease;
}

.bj-contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(183, 138, 60, 0.45);
    box-shadow: 0 22px 55px rgba(6, 27, 58, 0.1);
}

.bj-contact-card .icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b78a3c;
    font-size: 24px;
    background: #f5efe4;
    border-radius: 50%;
}

.bj-contact-card small {
    display: block;
    margin-bottom: 6px;
    color: #999;
}

.bj-contact-card div small + small {
    margin-top: 6px;
}

.bj-contact-card strong,
.bj-contact-card a {
    color: #222;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* 05 - Contact Form
-------------------------------------------------- */

.bj-form-card {
    padding: 45px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.93));
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(6, 27, 58, 0.09);
}

.bj-form-card h3 {
    margin: 20px 0 35px;
    color: #222;
    font-size: 34px;
    line-height: 1.25;
}

.bj-form-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bj-form-card .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bj-form-card input,
.bj-form-card textarea {
    width: 100%;
    padding: 18px 22px;
    color: #222;
    background: #fff;
    border: 1px solid rgba(6, 27, 58, 0.1);
    border-radius: 14px;
    font-size: 15px;
    transition: 0.3s ease;
}

.bj-form-card input:focus,
.bj-form-card textarea:focus {
    outline: none;
    border-color: #b78a3c;
    box-shadow: 0 0 0 4px rgba(183, 138, 60, 0.15);
}

.bj-form-card textarea {
    resize: vertical;
    min-height: 180px;
}

.bj-form-card button {
    border: 0;
    padding: 18px;
    color: #fff;
    background: #111;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.35s ease;
}

.bj-form-card button:hover {
    background: #b78a3c;
}

/* 06 - Form Feedback / KVKK
-------------------------------------------------- */

.bj-form-alert {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.bj-form-alert--success {
    color: #14532d;
    background: #dcfce7;
    border: 1px solid #86efac;
}

.bj-form-alert--error {
    color: #7f1d1d;
    background: #fee2e2;
    border: 1px solid #fecaca;
}

.bj-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.bj-kvkk-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.bj-kvkk-check input {
    width: auto;
    margin-top: 4px;
    accent-color: #b78a3c;
}

.bj-input-error {
    display: block;
    margin-top: 8px;
    color: #b91c1c;
    font-size: 13px;
    line-height: 1.5;
}

/* 07 - Contact Map
-------------------------------------------------- */

.bj-contact-map-section {
    padding: 0 0 90px;
    background: #f1ece4;
}

.bj-contact-map-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 420px 1fr;
    background: #111;
    border-radius: 28px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
}

.bj-contact-map-content {
    padding: 55px;
    color: #fff;
}

.bj-contact-map-content h2 {
    margin: 22px 0 18px;
    font-size: 38px;
    line-height: 1.2;
}

.bj-contact-map-content p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.bj-contact-map {
    min-height: 420px;
}

.bj-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    filter: grayscale(1) contrast(1.05);
}

/* 08 - Social Media
-------------------------------------------------- */

.bj-contact-social-section {
    padding: 90px 0;
    background: #fff;
}

.bj-contact-section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.bj-contact-section-head h2 {
    margin: 18px 0;
    color: #222;
    font-size: 42px;
    line-height: 1.2;
}

.bj-contact-section-head p {
    color: #666;
    line-height: 1.8;
}

.bj-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.bj-social-card {
    display: flex;
    min-height: 220px;
    padding: 32px;
    color: #222;
    text-decoration: none;
    flex-direction: column;
    justify-content: flex-end;
    background: #f7f4ef;
    border: 1px solid #eee5da;
    border-radius: 22px;
    transition: 0.35s ease;
}

.bj-social-card i {
    margin-bottom: 36px;
    color: #b78a3c;
    font-size: 36px;
}

.bj-social-card span {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
}

.bj-social-card small {
    color: #777;
    line-height: 1.6;
}

.bj-social-card:hover {
    color: #fff;
    background: #111;
    transform: translateY(-8px);
}

.bj-social-card:hover small,
.bj-social-card:hover i {
    color: rgba(255, 255, 255, 0.78);
}

/* 09 - Visit Section
-------------------------------------------------- */

.bj-contact-visit-section {
    padding: 90px 0;
    background: #fff;
}

.bj-visit-card {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: center;
    padding: 65px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.78)),
        url('/images/contact/dojo-bg.jpg') center/cover no-repeat;
    border-radius: 32px;
}

.bj-visit-content h2 {
    max-width: 780px;
    margin: 22px 0;
    font-size: 44px;
    line-height: 1.18;
}

.bj-visit-content p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.9;
}

.bj-visit-panel {
    padding: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    backdrop-filter: blur(12px);
}

.bj-visit-panel strong {
    display: block;
    margin-bottom: 22px;
    font-size: 22px;
}

.bj-visit-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bj-visit-panel li {
    padding: 13px 0;
    color: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bj-visit-panel li:last-child {
    border-bottom: 0;
}

/* 10 - FAQ
-------------------------------------------------- */

.bj-contact-faq-section {
    padding: 90px 0;
    background: #fff;
}

.bj-contact-faq-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: start;
}

.bj-contact-faq-head h2 {
    margin: 18px 0;
    font-size: 42px;
    line-height: 1.2;
}

.bj-contact-faq-head p {
    color: #666;
    line-height: 1.8;
}

.bj-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bj-faq-item {
    padding: 0 26px;
    background: #f7f4ef;
    border: 1px solid #eee5da;
    border-radius: 18px;
}

.bj-faq-item summary {
    position: relative;
    padding: 24px 40px 24px 0;
    color: #222;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    list-style: none;
}

.bj-faq-item summary::-webkit-details-marker {
    display: none;
}

.bj-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    color: #b78a3c;
    font-size: 28px;
    font-weight: 400;
    transform: translateY(-50%);
}

.bj-faq-item[open] summary::after {
    content: "−";
}

.bj-faq-item p {
    margin: 0;
    padding: 0 0 26px;
    color: #666;
    line-height: 1.8;
}

/* 11 - Final CTA
-------------------------------------------------- */

.bj-contact-cta-section {
    padding: 0 0 110px;
    background: #fff;
}

.bj-contact-cta {
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    padding: 80px;
    text-align: center;
    color: #fff;
    background:
        radial-gradient(circle at top left, rgba(183, 138, 60, 0.35), transparent 36%),
        linear-gradient(135deg, #151515, #050505);
    border-radius: 34px;
}

.bj-contact-cta::before {
    content: "";
    position: absolute;
    inset: 18px;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
}

.bj-contact-cta h2 {
    max-width: 850px;
    margin: 22px auto 20px;
    font-size: 48px;
    line-height: 1.15;
}

.bj-contact-cta p {
    max-width: 720px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
}

.bj-contact-cta-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 28px;
    color: #111;
    text-decoration: none;
    font-weight: 800;
    background: #fff;
    border-radius: 999px;
    transition: 0.3s ease;
}

.bj-contact-cta-btn:hover {
    color: #fff;
    background: #b78a3c;
}

/* 12 - Tablet Responsive
-------------------------------------------------- */

@media (max-width: 991px) {
    .bj-contact-grid,
    .bj-contact-map-card,
    .bj-visit-card,
    .bj-contact-faq-grid {
        grid-template-columns: 1fr;
    }

    .bj-contact-grid {
        gap: 50px;
    }

    .bj-form-card .row {
        grid-template-columns: 1fr;
    }

    .bj-contact-info h2 {
        font-size: 36px;
    }

    .bj-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bj-visit-card {
        padding: 38px;
    }

    .bj-contact-cta {
        padding: 52px 28px;
    }

    .bj-contact-cta h2 {
        font-size: 34px;
    }
}

/* 13 - Mobile Responsive
-------------------------------------------------- */

@media (max-width: 768px) {
    .bj-contact-hero {
        min-height: 360px;
        padding-top: 120px;
        padding-bottom: 56px;
    }

    .bj-contact-hero h1 {
        max-width: 340px;
        font-size: clamp(30px, 9vw, 42px);
        line-height: 0.98;
    }

    .bj-contact-hero p {
        max-width: 330px;
        font-size: 14px;
        line-height: 1.75;
    }

    .bj-contact-section {
        padding: 64px 0 72px;
    }

    .bj-contact-section::before {
        content: "";
        position: absolute;
        inset: 24px 14px auto;
        height: 520px;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.42);
        border: 1px solid rgba(255, 255, 255, 0.72);
        box-shadow: 0 24px 70px rgba(6, 27, 58, 0.08);
        pointer-events: none;
    }

    .bj-contact-grid {
        gap: 24px;
    }

    .bj-contact-info {
        padding: 22px 18px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.86);
        border-radius: 22px;
        box-shadow: 0 20px 55px rgba(6, 27, 58, 0.08);
        backdrop-filter: blur(12px);
    }

    .bj-contact-info h2 {
        font-size: 31px;
        line-height: 1.18;
    }

    .bj-contact-info p {
        margin-bottom: 28px;
        font-size: 14px;
        line-height: 1.8;
    }

    .bj-contact-cards {
        gap: 12px;
    }

    .bj-contact-card {
        gap: 14px;
        padding: 16px;
        border-radius: 16px;
        box-shadow: 0 12px 28px rgba(6, 27, 58, 0.055);
    }

    .bj-contact-card .icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 17px;
    }

    .bj-contact-card small {
        font-size: 11px;
    }

    .bj-contact-card strong,
    .bj-contact-card a {
        font-size: 13px;
        line-height: 1.45;
    }

    .bj-form-card {
        padding: 30px 20px;
        border-radius: 22px;
        box-shadow: 0 24px 65px rgba(6, 27, 58, 0.1);
    }

    .bj-form-card h3 {
        font-size: 30px;
        line-height: 1.2;
    }

    .bj-form-card input,
    .bj-form-card textarea {
        min-height: 54px;
        padding: 15px 17px;
        border-radius: 13px;
        font-size: 13px;
    }

    .bj-form-card textarea {
        min-height: 150px;
    }

    .bj-kvkk-check {
        gap: 8px;
        font-size: 10px;
        line-height: 1.45;
    }

    .bj-form-card button {
        min-height: 54px;
        border-radius: 12px;
        font-size: 13px;
    }

    .bj-contact-map-section,
    .bj-contact-social-section,
    .bj-contact-visit-section,
    .bj-contact-faq-section {
        padding: 64px 0;
    }

    .bj-contact-map-content {
        padding: 32px 24px;
    }

    .bj-contact-map-content h2,
    .bj-contact-section-head h2,
    .bj-visit-content h2,
    .bj-contact-faq-head h2 {
        font-size: 31px;
        line-height: 1.18;
    }

    .bj-contact-map,
    .bj-contact-map iframe {
        min-height: 360px;
    }

    .bj-social-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bj-social-card {
        min-height: 150px;
        padding: 24px 18px;
    }

    .bj-contact-cta-section {
        padding-bottom: 72px;
    }

    .bj-contact-cta {
        margin-top: 30px;
        padding: 46px 22px;
        border-radius: 26px;
    }
}

/* 14 - Small Mobile
-------------------------------------------------- */

@media (max-width: 420px) {
    .bj-contact-info {
        padding: 20px 14px;
    }

    .bj-contact-card {
        padding: 14px;
    }

    .bj-contact-card .icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .bj-contact-card strong,
    .bj-contact-card a {
        font-size: 12px;
    }

    .bj-form-card h3,
    .bj-contact-map-content h2,
    .bj-contact-section-head h2,
    .bj-visit-content h2,
    .bj-contact-faq-head h2 {
        font-size: 28px;
    }
}