﻿:root {
    --basi-red: #e12826;
    --basi-dark: #111;
    --basi-soft: #fff8f4;
    --basi-line: rgba(0,0,0,.08);
}

.find-page {
    background: #fffaf5;
    color: #111;
    overflow: hidden;
}

    .find-page * {
        box-sizing: border-box;
    }

.find-wrap {
    width: min(1180px,calc(100% - 48px));
    margin: auto;
}

/* HERO */
.find-hero {
    min-height: 390px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.88) 45%,rgba(255,255,255,.18) 100%), url('/images/find-studio1.jpg') center/cover no-repeat;
}

.find-hero-content {
    padding: 70px 0;
}

.find-kicker {
    display: inline-flex;
    gap: 10px;
    color: var(--basi-red);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

    .find-kicker:before {
        content: "";
        width: 36px;
        height: 1px;
        background: var(--basi-red);
        margin-top: 6px;
    }

.find-hero h1 {
    margin: 0;
    max-width: 620px;
    font-size: 58px;
    line-height: 1.04;
    letter-spacing: -2px;
    font-weight: 700;
}

.find-hero p {
    margin: 18px 0 0;
    max-width: 520px;
    color: #444;
    font-size: 16px;
    line-height: 1.75;
}

.find-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* BUTTONS */
.find-btn,
.find-outline {
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition: .22s ease;
}

.find-btn {
    background: var(--basi-red);
    color: #fff;
    box-shadow: 0 15px 32px rgba(225,40,38,.22);
}

.find-outline {
    background: #fff;
    color: var(--basi-red);
    border: 1px solid rgba(225,40,38,.24);
}

    .find-btn:hover,
    .find-outline:hover {
        transform: translateY(-2px);
    }

.find-btn:hover {
    color: #fff;
}

.find-outline:hover {
    color: var(--basi-red);
}

/* MAIN LAYOUT */
.find-main {
    padding: 60px 0 84px;
}

.find-shell,
.new-find-layout {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 26px;
    align-items: start;
}

.find-left,
.find-right {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.find-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 30px;
    box-shadow: 0 22px 70px rgba(70,42,18,.08);
}

.find-filter-card,
.quick-lead-card {
    padding: 24px;
}

.find-title h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 700;
}

.find-title p {
    margin: 8px 0 0;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.find-search {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.find-input,
.find-select,
.quick-lead-input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 14px;
    background: #fffaf5;
    padding: 0 14px;
    font-size: 13px;
    color: #111;
    outline: none;
}

    .find-input:focus,
    .find-select:focus,
    .quick-lead-input:focus {
        border-color: rgba(225,40,38,.34);
        box-shadow: 0 0 0 4px rgba(225,40,38,.08);
    }

.find-filter-grid,
.find-action-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.find-reset {
    background: #fff;
    color: #111;
    border: 1px solid rgba(0,0,0,.10);
    box-shadow: none;
}

/* QUICK LEAD */
.quick-lead-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.quick-lead-grid {
    display: grid;
    gap: 10px;
}

.quick-lead-btn {
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: var(--basi-red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

/* STUDIO LIST */
.studio-list {
    height: 640px;
    min-height: 640px;
    max-height: 640px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.list-head {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0,0,0,.07);
}

    .list-head strong {
        font-size: 14px;
    }

    .list-head span {
        color: #777;
        font-size: 12px;
    }

.studio-list-scroll {
    height: calc(640px - 58px);
    max-height: calc(640px - 58px);
    overflow-y: auto;
    padding-right: 6px;
}

    .studio-list-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .studio-list-scroll::-webkit-scrollbar-thumb {
        background: rgba(225,40,38,.28);
        border-radius: 20px;
    }

.studio-item {
    position: relative;
    min-height: 145px;
    display: flex;
    gap: 14px;
    padding: 16px;
    border-bottom: 1px solid rgba(0,0,0,.06);
    background: #fff;
    transition: .25s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
}

    .studio-item:hover {
        background: #fff8f4;
    }

    .studio-item.active {
        background: #fff4ef;
        border-left-color: var(--basi-red);
    }

.studio-thumb {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 auto;
    background: #f3eee8;
}

    .studio-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.studio-content {
    flex: 1;
    min-width: 0;
}

.studio-item h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.studio-rating {
    margin-top: 6px;
    color: #f5a623;
    font-size: 12px;
    font-weight: 700;
}

    .studio-rating span {
        color: #777;
        margin-left: 4px;
    }

.studio-contact {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 7px 0 0;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}

    .studio-contact i {
        width: 14px;
        color: var(--basi-red);
        margin-top: 2px;
        flex-shrink: 0;
    }

.studio-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 13px;
}

    .studio-actions a {
        min-height: 36px;
        padding: 0 13px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        transition: .22s ease;
    }

.view-studio-btn {
    background: #111;
    color: #fff;
}

.trial-btn {
    background: var(--basi-red);
    color: #fff;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.studio-actions a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.empty-box {
    padding: 24px;
    color: #777;
    font-size: 14px;
}

/* MAP */
.map-sticky-card {
    height: 560px;
    min-height: 560px;
    overflow: hidden;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 22px 70px rgba(70,42,18,.08);
}

.studio-map-frame {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: 0;
    display: block;
    background: #f5f0eb;
}

/* FAQ */
.find-faq-section {
    padding: 90px 0;
    background: linear-gradient(180deg,#fff 0%,#fff8f4 100%);
}

.find-faq-grid {
    max-width: 980px;
    margin: 42px auto 0;
    display: grid;
    gap: 16px;
}

.find-faq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(70,42,18,.08);
}

.find-faq-question {
    width: 100%;
    border: 0;
    background: #fff;
    padding: 22px 70px 22px 24px;
    text-align: left;
    position: relative;
    cursor: pointer;
    color: #111;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}

    .find-faq-question:after {
        content: "+";
        position: absolute;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(225,40,38,.08);
        color: var(--basi-red);
        font-size: 22px;
        font-weight: 700;
    }

.find-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 24px;
}

    .find-faq-answer p {
        margin: 0;
        color: #666;
        font-size: 15px;
        line-height: 1.85;
    }

.find-faq-item.active .find-faq-answer {
    max-height: 240px;
    padding: 0 24px 24px;
}

.find-faq-item.active .find-faq-question:after {
    content: "−";
    background: var(--basi-red);
    color: #fff;
}

/* MOBILE STICKY CTA */
.mobile-sticky-cta {
    display: none;
}

/* TABLET */
@media(max-width:1100px) {
    .find-shell,
    .new-find-layout {
        grid-template-columns: 1fr;
    }

    .find-left,
    .find-right {
        display: block;
    }

    .find-filter-card,
    .quick-lead-card {
        margin-bottom: 18px;
    }

    .studio-list {
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .studio-list-scroll {
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .map-sticky-card,
    .studio-map-frame {
        height: 420px;
        min-height: 420px;
    }
}

/* MOBILE */
@media(max-width:700px) {
    .find-wrap {
        width: min(100% - 28px,1180px);
    }

    .find-main {
        padding: 30px 0 80px;
    }

    .find-hero {
        min-height: 360px;
        background: linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.84) 54%,rgba(255,255,255,.22) 100%), url('/images/find-studio1.jpg') center bottom/cover no-repeat;
    }

    .find-hero-content {
        padding: 34px 0;
    }

    .find-hero h1 {
        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .find-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .find-hero-actions {
        display: flex;
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
        width: 100%;
    }

        .find-hero-actions a {
            flex: 1 1 0;
            width: 50%;
            min-height: 44px;
            padding: 0 10px;
            font-size: 11px;
            white-space: nowrap;
        }

    .find-card {
        border-radius: 24px;
    }

    .find-filter-card,
    .quick-lead-card {
        padding: 20px;
    }

    .find-title h2 {
        font-size: 24px;
    }

    .find-filter-grid,
    .find-action-row {
        grid-template-columns: 1fr;
    }

    .studio-item {
        padding: 14px;
        gap: 12px;
    }

    .studio-thumb {
        width: 82px;
        height: 82px;
        border-radius: 16px;
    }

    .studio-actions a {
        flex: 1;
    }

    .map-sticky-card,
    .studio-map-frame {
        height: 360px;
        min-height: 360px;
        border-radius: 24px;
    }

    .find-faq-section {
        padding: 60px 0;
    }

    .find-faq-question {
        padding: 18px 58px 18px 18px;
        font-size: 14px;
    }

    .find-faq-answer p {
        font-size: 14px;
        line-height: 1.75;
    }

    .mobile-sticky-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 999;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
        padding: 10px;
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 18px 45px rgba(0,0,0,.16);
    }

        .mobile-sticky-cta a {
            height: 44px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            font-size: 11px;
            font-weight: 700;
            text-decoration: none;
            color: #fff;
        }

            .mobile-sticky-cta a:nth-child(1) {
                background: #111;
            }

            .mobile-sticky-cta a:nth-child(2) {
                background: #25D366;
            }

            .mobile-sticky-cta a:nth-child(3) {
                background: var(--basi-red);
            }
}

@media(max-width:420px) {
    .find-hero h1 {
        font-size: 31px;
    }

    .find-hero-actions a {
        font-size: 10px;
        padding: 0 8px;
    }

    .studio-item {
        flex-direction: column;
    }

    .studio-thumb {
        width: 100%;
        height: 160px;
    }
}
