/* İş Merkezi profil — PDF örnek düzeni, modern */

.bc-site {
    --bc-accent: var(--c-primary, #0f766e);
    --bc-accent-soft: var(--c-primary-l, #f0fdfa);
    --bc-border: #cbd5e1;
    --bc-border-strong: #94a3b8;
    --bc-muted: var(--text-muted, #64748b);
    --bc-text: var(--text, #0f172a);
    --bc-sale: #dc2626;
    --bc-rent: #16a34a;
    --bc-rail-w: 340px;
    --bc-gutter: 6px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Galeri üstte tam genişlik; altında sol içerik + sağ sticky sidebar */
.bc-site__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--bc-rail-w);
    gap: 24px 28px;
    align-items: start;
    margin-top: 22px;
}

.bc-media {
    margin-bottom: 0;
}

.bc-site__primary {
    min-width: 0;
}

.bc-site__rail {
    position: sticky;
    top: calc(var(--header-h, 72px) + 16px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    z-index: 5;
}

@media (max-width: 960px) {
    .bc-site__layout {
        grid-template-columns: 1fr;
    }
    .bc-site__rail {
        position: static;
        max-width: 420px;
    }
}

.bc-site__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    margin: 0 0 14px;
}

.bc-site__back {
    margin: 0;
    font-size: 13px;
}

.bc-site__back a {
    color: var(--bc-accent);
    font-weight: 700;
    text-decoration: none;
}

.bc-site__back a:hover { text-decoration: underline; }

.bc-site__toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bc-site__action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 0 14px;
    border: 2px solid var(--bc-border-strong);
    border-radius: 10px;
    background: #fff;
    color: var(--bc-text);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.bc-site__action-btn:hover {
    border-color: var(--bc-accent);
    color: var(--bc-accent);
}

.bc-site__action-btn--map {
    background: var(--bc-accent);
    border-color: var(--bc-accent);
    color: #fff;
}

.bc-site__action-btn--map:hover {
    background: var(--primary-dark, #0d5f58);
    border-color: var(--primary-dark, #0d5f58);
    color: #fff;
}

.bc-share {
    position: relative;
    display: inline-flex;
}

.bc-share__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    padding: 6px;
    border: 1px solid var(--bc-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16);
}

.bc-share__menu[hidden] { display: none; }

.bc-share__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border: 0;
    border-radius: 8px;
    background: none;
    color: var(--bc-text);
    font: inherit;
    font-size: 13px;
    font-weight: 650;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    width: 100%;
}

.bc-share__item:hover { background: #f1f5f9; }

.bc-share__item--whatsapp { color: #25d366; }
.bc-share__item--whatsapp svg { color: #25d366; }

/* Hero */
.bc-hero {
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, var(--c-primary-d, #134e4a) 55%, var(--bc-accent) 100%);
    background-size: cover;
    background-position: center;
    color: #fff;
}

.bc-hero__inner { padding: 22px 24px 0; }

.bc-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.bc-hero__title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bc-hero__title {
    margin: 0 6px 6px 0;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.bc-hero__logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 6px 10px;
    margin-bottom: 6px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.bc-hero__logo img {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
    display: block;
}

.bc-hero__loc {
    margin: 0 0 16px;
    font-size: 14px;
    opacity: 0.85;
}

.bc-hero__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 -24px;
    background: rgba(255,255,255,.08);
    border-top: 1px solid rgba(255,255,255,.12);
}

.bc-hero__contact-item {
    flex: 1 1 140px;
    padding: 12px 16px;
    text-decoration: none;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.1);
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bc-hero__contact-item:last-child { border-right: 0; }

.bc-hero__contact-item:hover { background: rgba(255,255,255,.1); }

.bc-hero__contact-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255,255,255,.14);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-hero__contact-icon svg { width: 16px; height: 16px; }

.bc-hero__contact-label {
    display: block;
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    margin-top: 2px;
}

.bc-hero__contact-item strong {
    display: block;
    font-size: 13px;
    font-weight: 750;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bc-hero__contact-item--stat strong {
    font-size: 18px;
}

.bc-admin-bar {
    margin-bottom: 14px;
    padding: 12px 14px;
    border: 1px solid var(--bc-border);
    border-radius: 12px;
    background: #fff;
}

.bc-admin-bar .bc-site__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

.bc-admin-bar .bc-site__actions .btn,
.bc-admin-bar .bc-site__actions form {
    width: auto;
}

/* Mosaic gallery — portal style */
.bc-media {
    display: block;
    margin-bottom: 20px;
    min-width: 0;
}

.bc-media__gallery {
    min-width: 0;
    max-width: 100%;
}

.bc-media__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.bc-media__tab {
    padding: 9px 16px;
    border: 1px solid var(--bc-border);
    border-radius: 10px;
    background: #fff;
    color: var(--bc-muted);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.bc-media__tab:hover { color: var(--bc-text); }

.bc-media__tab.is-active {
    background: var(--bc-accent);
    border-color: var(--bc-accent);
    color: #fff;
}

.bc-media__panel[hidden] { display: none; }

.bc-gallery-main {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #e2e8f0;
    cursor: zoom-in;
    aspect-ratio: 16 / 8;
}

.bc-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-media__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.bc-media__thumb,
.bc-gallery-more {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: #e8ecf3;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.bc-media__thumb img,
.bc-gallery-more img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-media__thumb.is-active { border-color: var(--bc-accent); }

.bc-gallery-more { cursor: zoom-in; }

.bc-gallery-more__badge {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6px;
    background: rgba(15, 23, 42, 0.5);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.bc-mosaic__all { display: none !important; }

.bc-media__empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    border: 1px dashed var(--bc-border);
    border-radius: 14px;
    color: var(--bc-muted);
    font-weight: 650;
    background: #f8fafc;
}

@media (max-width: 720px) {
    .bc-gallery-main { aspect-ratio: 16 / 10; }
    .bc-media__thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Primary map block */
.bc-map {
    margin-bottom: 20px;
}

.bc-map__card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--bc-border);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.bc-map__frame {
    position: relative;
    width: 100%;
    height: clamp(240px, 32vw, 340px);
    background: #e2e8f0;
}

.bc-map__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.bc-map__frame--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bc-muted);
    font-weight: 650;
    text-align: center;
    padding: 24px;
}

.bc-map__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    padding: 14px 16px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-top: 1px solid var(--bc-border);
}

.bc-map__addr {
    margin: 0;
    flex: 1 1 180px;
    font-size: 13px;
    font-weight: 650;
    color: var(--bc-text);
    line-height: 1.4;
}

.bc-map__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--bc-accent);
    color: #fff;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    border: 0;
    box-shadow: 0 8px 20px rgba(var(--c-primary-rgb, 15, 118, 110), .28);
    flex-shrink: 0;
}

.bc-map__cta:hover {
    background: var(--primary-dark, #0d5f58);
    color: #fff;
}

.bc-map__cta svg { flex-shrink: 0; }

/* Sidebar cards */
.bc-side-card {
    padding: 16px 16px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.bc-side-card.bc-contact {
    background: #fff;
}

.bc-side-card__title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--bc-text);
}

/* Contact form */
.bc-contact__flash {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.4;
}

.bc-contact__flash--ok {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.bc-contact__flash--err {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.bc-contact__form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bc-contact__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.bc-contact__field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bc-contact__field > span {
    font-size: 12px;
    font-weight: 700;
    color: var(--bc-muted);
}

.bc-contact__field em,
.bc-contact__check em {
    color: var(--bc-sale);
    font-style: normal;
}

.bc-contact__field input,
.bc-contact__field textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: 1px solid var(--bc-border);
    border-radius: 10px;
    background: #f8fafc;
    color: var(--bc-text);
    font: inherit;
    font-size: 14px;
    transition: border-color .15s, box-shadow .15s, background .15s;
}

.bc-contact__field textarea {
    min-height: 96px;
    resize: vertical;
}

.bc-contact__field input:focus,
.bc-contact__field textarea:focus {
    outline: none;
    border-color: var(--bc-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(var(--c-primary-rgb, 15, 118, 110), .15);
}

.bc-contact__check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--bc-text);
    cursor: pointer;
}

.bc-contact__check input {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    accent-color: var(--bc-accent);
}

.bc-contact__kvkk-link {
    display: inline;
    padding: 0;
    border: 0;
    background: none;
    color: var(--bc-accent);
    font: inherit;
    font-weight: 750;
    text-decoration: underline;
    cursor: pointer;
}

.bc-contact__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: stretch;
    width: 100%;
    min-height: 46px;
    margin-top: 4px;
    border: 1px solid var(--bc-accent);
    border-radius: 12px;
    background: var(--bc-accent);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: none;
}

.bc-contact__submit:hover {
    background: var(--primary-dark, #0d5f58);
    border-color: var(--primary-dark, #0d5f58);
}

.bc-contact__submit--ghost {
    background: #fff;
    color: var(--bc-text);
    border: 1px solid var(--bc-border);
    box-shadow: none;
}

.bc-contact__submit--ghost:hover {
    background: #f8fafc;
    color: var(--bc-text);
}

.bc-kvkk-dialog {
    border: 0;
    border-radius: 16px;
    padding: 0;
    max-width: min(440px, calc(100vw - 32px));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}

.bc-kvkk-dialog::backdrop {
    background: rgba(15, 23, 42, 0.45);
}

.bc-kvkk-dialog__inner { padding: 0; }

.bc-kvkk-dialog__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--bc-border);
}

.bc-kvkk-dialog__head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
}

.bc-kvkk-dialog__close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: #f1f5f9;
    color: var(--bc-text);
    font-size: 22px;
    cursor: pointer;
}

.bc-kvkk-dialog__body {
    padding: 16px 18px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--bc-text);
}

.bc-kvkk-dialog__body p { margin: 0 0 10px; }
.bc-kvkk-dialog__body p:last-child { margin-bottom: 0; }

.bc-kvkk-dialog__foot {
    padding: 0 18px 18px;
}

.bc-rail__quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.bc-rail__qstat {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--bc-border);
    background: #fff;
}

.bc-rail__qstat span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--bc-muted);
}

.bc-rail__qstat strong {
    display: block;
    margin-top: 2px;
    font-size: 18px;
    color: var(--bc-sale);
}

.bc-rail__qstat--rent strong { color: var(--bc-rent); }

.bc-rail__qstat em {
    display: block;
    margin-top: 2px;
    font-style: normal;
    font-size: 12px;
    color: var(--bc-muted);
}

.bc-rail__ad-slot {
    min-width: 0;
}

/* Blocks */
.bc-block {
    margin-bottom: 18px;
    padding: 18px 20px;
    border: 1px solid var(--bc-border);
    border-radius: 14px;
    background: #fff;
}

.bc-block__title {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.bc-block__count {
    font-size: 0.85em;
    font-weight: 650;
    color: var(--bc-muted);
}

.bc-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin: 18px 0;
}

@media (max-width: 900px) {
    .bc-overview { grid-template-columns: repeat(2, 1fr); }
}

.bc-overview__item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--bc-border);
    box-shadow: 0 6px 18px rgba(15, 23, 42, .04);
}

.bc-overview__icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bc-accent-soft);
    color: var(--bc-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-overview__icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.bc-overview__value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--bc-text);
}

.bc-overview__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--bc-muted);
}

/* Accordion */
.bc-accordions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.bc-acc {
    border: 1px solid var(--bc-border);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.bc-acc__summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 800;
    color: var(--bc-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    user-select: none;
}

.bc-acc__summary::-webkit-details-marker { display: none; }

.bc-acc__summary::after {
    content: '▾';
    color: var(--bc-accent);
    font-size: 14px;
}

.bc-acc:not([open]) .bc-acc__summary::after { content: '▸'; }

.bc-acc__summary em {
    font-style: normal;
    font-size: 12px;
    font-weight: 700;
    color: var(--bc-muted);
    margin-left: auto;
    margin-right: 8px;
}

.bc-acc__body {
    padding: 0 18px 16px;
    border-top: 1px solid var(--bc-border);
    padding-top: 14px;
}

.bc-site__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--bc-text);
}

.bc-site__desc p { margin: 0 0 12px; }

.bc-feature-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 14px;
}

@media (max-width: 800px) {
    .bc-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .bc-feature-grid { grid-template-columns: 1fr; }
}

.bc-feature-grid li {
    position: relative;
    padding: 8px 10px 8px 28px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid var(--bc-border);
    font-size: 13px;
    font-weight: 650;
}

.bc-feature-grid li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: var(--bc-accent);
    font-weight: 800;
}

.bc-video-preview {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0f172a;
    border: 1px solid var(--bc-border);
}

.bc-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-video-preview__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.bc-video-preview__play svg { margin-left: 3px; }

.bc-video-preview:hover .bc-video-preview__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
}

.bc-video-preview__hint {
    margin: 10px 0 0;
    font-size: 12px;
    color: var(--bc-muted);
    text-align: center;
}

/* Alt "Video & Sanal Tur" kartı — üstteki medya sekmelerinden ayrı, sabit tanıtım bloğu */
.bc-video-card {
    margin-bottom: 20px;
    min-height: 220px;
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(7,18,39,.88) 0%, rgba(7,18,39,.35) 100%),
        linear-gradient(135deg, #0f172a 0%, var(--c-primary-d, #134e4a) 70%, var(--bc-accent) 100%);
    color: #fff;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bc-video-card__copy h3 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.bc-video-card__copy p {
    margin: 0 0 18px;
    color: rgba(255,255,255,.72);
}

.bc-video-card__tour-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    background: transparent;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
}
.bc-video-card__tour-btn:hover { background: rgba(255,255,255,.1); }

.bc-video-card__play {
    flex: 0 0 auto;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #fff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 40px rgba(0,0,0,.24);
    transition: transform .2s ease;
}
.bc-video-card__play svg { margin-left: 3px; }
.bc-video-card__play:hover { transform: scale(1.06); }

@media (max-width: 640px) {
    .bc-video-card { flex-direction: column; align-items: flex-start; }
}

.bc-site__media-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.bc-site__media-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--bc-accent);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
}

.bc-site__media-btn:hover { filter: brightness(0.95); color: #fff; }

.bc-site__floor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.bc-site__floor-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--bc-border);
    aspect-ratio: 4/3;
    background: #f8fafc;
}

.bc-site__floor-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fiyat analizi */
.bc-price {
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--bc-border);
    background: #fff;
}
.bc-price + .bc-price {
    margin-top: 4px;
}

.bc-price__head {
    padding: 16px 20px;
    background: linear-gradient(90deg, #b91c1c, #dc2626);
    color: #fff;
}
.bc-price#fiyat-analizi-dukkan .bc-price__head {
    background: linear-gradient(90deg, #0f766e, #14b8a6);
}

.bc-price__title {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 800;
}

.bc-price__sub {
    margin: 0;
    font-size: 12px;
    opacity: 0.9;
    font-weight: 600;
}

.bc-price__summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
}

@media (max-width: 800px) {
    .bc-price__summary { grid-template-columns: repeat(2, 1fr); }
}

.bc-price__card {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--bc-border);
    background: #f8fafc;
}

.bc-price__card span {
    display: block;
    font-size: 11px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--bc-muted);
    margin-bottom: 4px;
}

.bc-price__card strong {
    font-size: 20px;
    font-weight: 800;
}

.bc-price__card--sale strong { color: var(--bc-sale); }
.bc-price__card--rent strong { color: var(--bc-rent); }

.bc-price__table-wrap {
    overflow-x: auto;
    padding: 0 16px 8px;
}

.bc-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.bc-price-table th,
.bc-price-table td {
    padding: 9px 11px;
    border-bottom: 1px solid var(--bc-border);
    text-align: right;
    white-space: nowrap;
}

.bc-price-table th:first-child,
.bc-price-table td:first-child {
    text-align: left;
    font-weight: 750;
}

.bc-price-table thead th {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.bc-price-table th.is-sale-count { background: #dc2626; color: #fff; }
.bc-price-table th.is-sale-m2 { background: #86efac; color: #14532d; }
.bc-price-table th.is-rent-count { background: #b91c1c; color: #fff; }
.bc-price-table th.is-rent-m2 { background: #22c55e; color: #052e16; }

.bc-price-table td.is-muted { color: var(--bc-muted); }

.bc-price__disclaimer {
    margin: 0;
    padding: 12px 16px 16px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    color: #9a3412;
}

/* İlanlar */
.bc-listings__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.bc-listings__head .bc-block__title { margin: 0; }

.bc-listings__tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bc-site__per-page {
    display: inline-flex;
    gap: 2px;
    padding: 2px;
    border: 1px solid var(--bc-border);
    border-radius: 8px;
    background: #fff;
}

.bc-site__per-page-item {
    min-width: 32px;
    padding: 4px 8px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    color: var(--bc-text);
    text-align: center;
}

.bc-site__per-page-item.is-active,
.bc-site__per-page-item:hover {
    background: var(--bc-accent);
    color: #fff;
}

.bc-site__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.bc-site__tab {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--bc-border);
    background: #fff;
    color: var(--bc-text);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.bc-site__tab.is-active,
.bc-site__tab:hover {
    background: var(--bc-accent-soft);
    border-color: var(--bc-accent);
    color: var(--bc-accent);
}

.bc-site__empty {
    text-align: center;
    padding: 36px 16px;
    color: var(--bc-muted);
    font-weight: 650;
    background: #f8fafc;
    border-radius: 12px;
}

.bc-site__listing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 900px) {
    .bc-site__listing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .bc-site__listing-grid { grid-template-columns: 1fr; }
}

.bc-site__card {
    border: 1px solid var(--bc-border);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .15s;
}

.bc-site__card:hover { box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08); }

.bc-site__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.bc-site__card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #f1f5f9;
    overflow: hidden;
}

.bc-site__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-site__card-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bc-muted);
    font-weight: 700;
}

.bc-site__card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.bc-site__card-body { padding: 10px 12px 12px; }

.bc-site__card-price {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 800;
    color: var(--bc-accent);
}

.bc-site__card-price small {
    font-size: 11px;
    font-weight: 600;
    color: var(--bc-muted);
}

.bc-site__card-title {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bc-site__card-loc {
    margin: 0;
    font-size: 11px;
    color: var(--bc-muted);
}

.bc-site__listings-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.bc-site__range { font-size: 13px; color: var(--bc-muted); }

.bc-site__pagination {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.bc-site__pagination a,
.bc-site__pagination span {
    min-width: 34px;
    padding: 7px 10px;
    border: 1px solid var(--bc-border);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--bc-text);
    background: #fff;
}

.bc-site__pagination a.is-active,
.bc-site__pagination a:hover {
    background: var(--bc-accent);
    border-color: var(--bc-accent);
    color: #fff;
}

.bc-site__ellipsis {
    border: 0 !important;
    background: transparent !important;
    color: var(--bc-muted) !important;
}

.bc-admin-extra {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.bc-site__side-card {
    padding: 14px 16px;
    border: 1px solid var(--bc-border);
    border-radius: 14px;
    background: #fff;
}

.bc-site__side-card h3 {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--bc-muted);
}

.bc-site__dl {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 12px;
    font-size: 13px;
}

.bc-site__dl dt { color: var(--bc-muted); font-weight: 650; }
.bc-site__dl dd { margin: 0; font-weight: 650; text-align: right; word-break: break-word; }
.bc-site__dl a { color: var(--bc-accent); text-decoration: none; }

.bc-site__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bc-site__actions .btn {
    justify-content: center;
    width: 100%;
}

.bc-site__muted {
    margin: 0;
    font-size: 13px;
    color: var(--bc-muted);
}

.bc-site__hint {
    margin: -6px 0 12px;
    font-size: 13px;
    color: var(--bc-muted);
}

/* Alt CTA */
.bc-cta {
    margin: 28px 0 8px;
    border-radius: 18px;
    overflow: hidden;
    background:
        radial-gradient(700px 280px at 12% 0%, rgba(var(--c-primary-rgb, 15, 118, 110), .22), transparent 55%),
        linear-gradient(135deg, #0f172a 0%, var(--c-primary-d, #134e4a) 55%, var(--bc-accent) 100%);
    color: #fff;
}

.bc-cta__inner {
    padding: 28px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.bc-cta__copy {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.bc-cta__icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--bc-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-cta__title {
    margin: 0 0 6px;
    font-size: clamp(18px, 2.2vw, 23px);
    font-weight: 800;
    letter-spacing: -.02em;
}

.bc-cta__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,.75);
}

.bc-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 0 auto;
}

.bc-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 12px;
    background: #fff;
    color: #0f172a;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    white-space: nowrap;
}

.bc-cta__btn--call { background: var(--bc-accent); color: #fff; }
.bc-cta__btn--call:hover { background: var(--primary-dark, #0d5f58); }

.bc-cta__btn--wa { background: #25d366; color: #fff; }
.bc-cta__btn--wa:hover { background: #1ebc59; }

.bc-cta__btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.4);
}
.bc-cta__btn--outline:hover { background: rgba(255,255,255,.1); }

@media (max-width: 640px) {
    .bc-cta__inner { flex-direction: column; align-items: stretch; }
    .bc-cta__actions { width: 100%; }
    .bc-cta__btn { flex: 1; }
}

/* Lightbox uyumu */
.gallery-item--zoomable { cursor: zoom-in; }

.image-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 4000;
    background: rgba(15, 23, 42, .88);
    align-items: center;
    justify-content: center;
    padding: 64px 48px 28px;
}
.image-lightbox.is-open { display: flex; }
.image-lightbox__toolbar {
    position: absolute;
    top: 12px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #fff;
}
.image-lightbox__counter { font-size: 14px; font-weight: 600; }
.image-lightbox__close {
    width: 40px; height: 40px; border: 0; border-radius: 10px;
    background: rgba(255,255,255,.18); color: #fff; font-size: 24px; cursor: pointer;
}
.image-lightbox__close:hover { background: rgba(255,255,255,.28); }
.image-lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border: 0; border-radius: 12px;
    background: rgba(255,255,255,.18); color: #fff; font-size: 26px; cursor: pointer;
}
.image-lightbox__nav:hover { background: rgba(255,255,255,.28); }
.image-lightbox__nav--prev { left: 12px; }
.image-lightbox__nav--next { right: 12px; }
.image-lightbox__stage {
    max-width: min(1100px, 100%);
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-lightbox__img {
    max-width: 100%;
    max-height: calc(100vh - 100px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

@media print {
    .no-print,
    .piyasa-header,
    .piyasa-footer,
    .bc-site__toolbar,
    .bc-site__rail,
    .bc-contact,
    .image-lightbox { display: none !important; }
    .bc-site { max-width: none; }
    .bc-site__layout { display: block; }
    .bc-media { display: block; }
    a { color: inherit !important; text-decoration: none !important; }
}
