/*
 * Play Organizasyon - Etkinlik & Organizasyon Tema CSS v3.0
 * Siyah bazlı, altın vurgulu premium organizasyon estetiği
 */

/* =========================================
   GOOGLE FONTS + CSS VARIABLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;700&display=swap');

:root {
    --bc-primary:     #0d0d0d;
    --bc-primary-dk:  #000000;
    --bc-primary-lt:  #1a1a1a;
    --bc-accent:      #C8A96E;
    --bc-accent-lt:   #e0c890;
    --bc-accent-dk:   #a8894e;
    --bc-white:       #f5f0e8;
    --bc-font:        'Cormorant Garamond', Georgia, serif;
    --bc-font-body:   'Jost', 'Helvetica Neue', sans-serif;
    --bc-shadow:      0 8px 40px rgba(0,0,0,.6);
    --bc-shadow-sm:   0 4px 20px rgba(0,0,0,.4);
    --bc-radius:      6px;
    --bc-transition:  .3s ease;
}

/* =========================================
   BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; }

body,
body.beauty-center {
    background: var(--bc-primary) !important;
    color: var(--bc-white);
    font-family: var(--bc-font-body);
    margin: 0; padding: 0;
    font-size: 15px;
    line-height: 1.7;
}

body a, body.beauty-center a { color: var(--bc-accent); text-decoration: none; transition: color var(--bc-transition); }
body a:hover, body.beauty-center a:hover { color: var(--bc-accent-lt); }
body img, body.beauty-center img { max-width: 100%; height: auto; display: block; }

.bc-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* =========================================
   HEADER
   ========================================= */
.bc-header {
    background: linear-gradient(180deg, var(--bc-primary-dk) 0%, var(--bc-primary) 100%);
    padding: 24px 0 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
    transition: transform .35s ease, box-shadow .35s ease;
    will-change: transform;
}

/* Aşağı kaydırınca header yukarı kayar */
.bc-header.bc-header--hidden {
    transform: translateY(-100%);
}

.bc-logo { display: block; margin: 0 auto 16px; }
.bc-logo img { max-height: 90px; width: auto; margin: 0 auto; }

.bc-logo .bc-site-name {
    font-family: var(--bc-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--bc-white);
    letter-spacing: 3px;
    display: block;
    line-height: 1;
}
.bc-logo .bc-site-tagline {
    font-size: 10px;
    letter-spacing: 5px;
    color: var(--bc-accent);
    text-transform: uppercase;
    display: block;
    margin-top: 5px;
}

/* Nav */
.bc-nav {
    padding: 12px 0;
    border-top: 1px solid rgba(232,146,122,.2);
    margin-top: 4px;
}
.bc-nav ul { list-style:none; margin:0; padding:0; display:flex; justify-content:center; flex-wrap:wrap; }
.bc-nav ul li a {
    display: block;
    padding: 8px 22px;
    font-family: var(--bc-font);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
    text-transform: none;
    color: rgba(255,255,255,.85);
    transition: color var(--bc-transition);
    position: relative;
}
.bc-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 22px; right: 22px;
    height: 1px;
    background: var(--bc-accent);
    transform: scaleX(0);
    transition: transform var(--bc-transition);
}
.bc-nav ul li a:hover,
.bc-nav ul li.current-menu-item > a { color: var(--bc-accent); }
.bc-nav ul li a:hover::after,
.bc-nav ul li.current-menu-item > a::after { transform: scaleX(1); }

.bc-nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,.3);
    color: var(--bc-white);
    padding: 8px 14px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* =========================================
   HERO SLIDER
   ========================================= */
.bc-hero {
    position: relative;
    overflow: hidden;
    background: var(--bc-primary-dk);
}

.bc-slider-wrap { position: relative; }

.bc-slide {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
}

/* Görsel + güçlü gradient overlay */
.bc-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 1;
}
.bc-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.75) 40%,
        rgba(0,0,0,.2) 100%
    );
}

/* Dalga efekti */
.bc-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--bc-primary) !important;
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 3;
}

.bc-slide-content {
    position: relative;
    z-index: 4;
    max-width: 640px;
    padding: 100px 0 100px 40px;
}

/* Ince dekoratif çizgi */
.bc-slide-content::before {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--bc-accent);
    margin-bottom: 20px;
}

.bc-slide-content h2 {
    font-family: var(--bc-font);
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 700;
    color: var(--bc-white);
    line-height: 1.15;
    margin: 0 0 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.bc-slide-content p {
    font-size: 15px;
    color: rgba(255,255,255,.88);
    margin: 0 0 32px;
    line-height: 1.8;
    max-width: 480px;
    font-weight: 300;
}

/* Slider dots */
.bc-slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.bc-slider-dots span {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: all .3s;
}
.bc-slider-dots span.active {
    background: var(--bc-accent);
    width: 24px;
    border-radius: 4px;
}

/* Ok butonları */
.bc-slider-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--bc-white);
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all var(--bc-transition);
    font-size: 22px;
    text-decoration: none;
}
.bc-slider-arrow:hover {
    background: var(--bc-accent);
    border-color: var(--bc-accent);
    color: var(--bc-white);
}
.bc-slider-arrow.prev { left: 24px; }
.bc-slider-arrow.next { right: 24px; }

/* =========================================
   BUTTONS
   ========================================= */
.bc-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--bc-transition);
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.bc-btn-accent {
    background: var(--bc-accent);
    color: var(--bc-white);
    border-color: var(--bc-accent);
    box-shadow: 0 4px 20px rgba(232,146,122,.35);
}
.bc-btn-accent:hover {
    background: transparent;
    color: var(--bc-accent);
    box-shadow: none;
}
.bc-btn-outline {
    background: transparent;
    color: var(--bc-accent);
    border-color: var(--bc-accent);
}
.bc-btn-outline:hover {
    background: var(--bc-accent);
    color: var(--bc-white);
    box-shadow: 0 4px 20px rgba(232,146,122,.35);
}

/* =========================================
   SECTION BAŞLIKLAR
   ========================================= */
.bc-section-title { text-align: center; margin-bottom: 52px; }
.bc-section-title h2 {
    font-family: var(--bc-font);
    font-size: clamp(28px, 3vw, 42px);
    color: var(--bc-accent);
    margin: 0 0 14px;
    font-weight: 400;
    font-style: italic;
}
.bc-section-title .bc-divider {
    display: block;
    width: 50px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--bc-accent), transparent);
    margin: 0 auto;
}

/* =========================================
   ABOUT
   ========================================= */
.bc-about {
    padding: 100px 0;
    position: relative;
}
/* Soluk arka plan desen */
.bc-about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 10% 50%, rgba(232,146,122,.06) 0%, transparent 60%);
    pointer-events: none;
}

.bc-about-inner { display: flex; align-items: center; gap: 70px; position: relative; }

.bc-about-img { flex: 0 0 300px; }
.bc-about-img img {
    width: 300px; height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(232,146,122,.4);
    box-shadow:
        0 0 0 14px rgba(232,146,122,.08),
        0 0 0 28px rgba(232,146,122,.04),
        var(--bc-shadow);
    transition: transform .4s, box-shadow .4s;
}
.bc-about-img img:hover {
    transform: scale(1.03);
    box-shadow:
        0 0 0 14px rgba(232,146,122,.14),
        0 0 0 28px rgba(232,146,122,.06),
        var(--bc-shadow);
}

.bc-about-text { flex: 1; }
.bc-about-text h2 {
    font-family: var(--bc-font);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--bc-accent);
    margin: 0 0 16px;
    font-weight: 400;
    font-style: italic;
}
.bc-about-text .bc-divider {
    display: block;
    width: 50px; height: 2px;
    background: var(--bc-accent);
    margin-bottom: 22px;
}
.bc-about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,.82);
    margin: 0 0 32px;
    font-weight: 300;
}

/* =========================================
   SERVICES
   ========================================= */
.bc-services {
    padding: 90px 0;
    background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.08) 100%);
    position: relative;
}
.bc-services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,146,122,.3), transparent);
}
.bc-services::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,146,122,.3), transparent);
}

.bc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.bc-service-card {
    text-align: center;
    background: rgba(255,255,255,.04);
    border-radius: var(--bc-radius);
    overflow: hidden;
    border: 1px solid rgba(232,146,122,.12);
    transition: transform var(--bc-transition), box-shadow var(--bc-transition), border-color var(--bc-transition);
    padding-bottom: 28px;
}
.bc-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bc-shadow);
    border-color: rgba(232,146,122,.3);
}

.bc-service-card-img {
    overflow: hidden;
    margin-bottom: 22px;
    height: 200px;
}
.bc-service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s;
}
.bc-service-card:hover .bc-service-card-img img { transform: scale(1.08); }

.bc-service-card h3 {
    font-family: var(--bc-font);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--bc-white);
    margin: 0 0 12px;
    padding: 0 20px;
}
.bc-service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
    margin: 0 0 22px;
    padding: 0 24px;
    font-weight: 300;
}

/* =========================================
   PRICING
   ========================================= */
.bc-pricing {
    padding: 90px 0;
    position: relative;
}
.bc-pricing::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 90% 50%, rgba(232,146,122,.05) 0%, transparent 60%);
    pointer-events: none;
}

.bc-pricing-inner { display: flex; gap: 50px; align-items: flex-start; position: relative; }

.bc-pricing-promo {
    flex: 0 0 280px;
    text-align: center;
    padding: 44px 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(232,146,122,.15);
    border-radius: var(--bc-radius);
}
.bc-pricing-promo h2 {
    font-family: var(--bc-font);
    font-size: 24px;
    color: var(--bc-accent);
    font-weight: 400;
    font-style: italic;
    margin: 0 0 14px;
}
.bc-pricing-promo .bc-divider {
    display: block;
    width: 40px; height: 2px;
    background: var(--bc-accent);
    margin: 0 auto 28px;
}
.bc-discount-badge {
    font-family: var(--bc-font);
    font-size: 38px;
    font-weight: 700;
    color: var(--bc-white);
    display: block;
    margin-bottom: 6px;
    letter-spacing: -1px;
}
.bc-discount-time {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bc-accent);
    margin-bottom: 24px;
    display: block;
}
.bc-pricing-promo p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.65);
    margin: 0;
    font-style: italic;
    font-weight: 300;
}

/* Fiyat listesi */
.bc-price-list {
    flex: 1;
    background: rgba(0,0,0,.2);
    border-radius: var(--bc-radius);
    border: 1px solid rgba(232,146,122,.1);
    overflow: hidden;
}
.bc-price-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background var(--bc-transition);
}
.bc-price-item:last-child { border-bottom: none; }
.bc-price-item:hover { background: rgba(232,146,122,.07); }

.bc-price-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(232,146,122,.25);
}
.bc-price-name { flex: 1; font-size: 15px; color: rgba(255,255,255,.9); }
/* Noktalı çizgi */
.bc-price-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255,255,255,.2);
    margin: 0 12px;
    align-self: center;
}
.bc-price-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--bc-accent);
    flex-shrink: 0;
    font-family: var(--bc-font);
}

/* =========================================
   FOOTER
   ========================================= */
.bc-footer {
    background: var(--bc-primary-dk);
    padding: 50px 0 30px;
    text-align: center;
    position: relative;
}
.bc-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--bc-accent), transparent);
}
.bc-footer-logo {
    font-family: var(--bc-font);
    font-size: 24px;
    color: var(--bc-accent);
    margin-bottom: 8px;
    display: block;
    font-style: italic;
}
.bc-footer-tagline {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 28px;
    display: block;
}
.bc-footer-socials {
    list-style: none; margin: 0 0 24px; padding: 0;
    display: flex; justify-content: center; gap: 12px;
}
.bc-footer-socials li a {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(232,146,122,.3);
    color: var(--bc-accent);
    font-size: 14px;
    transition: all var(--bc-transition);
}
.bc-footer-socials li a:hover {
    background: var(--bc-accent);
    color: var(--bc-white);
    border-color: var(--bc-accent);
    transform: translateY(-2px);
}
.bc-footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,.35);
    letter-spacing: 1px;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
    .bc-services-grid { grid-template-columns: repeat(2, 1fr); }
    .bc-about-inner { flex-direction: column; text-align: center; }
    .bc-about-img { flex: none; }
    .bc-about-text .bc-divider { margin: 0 auto 22px; }
    .bc-pricing-inner { flex-direction: column; }
    .bc-pricing-promo { flex: none; width: 100%; }
    .bc-slide-content { padding: 80px 0 80px 20px; }
}
@media (max-width: 600px) {
    /* Nav */
    .bc-nav ul { flex-wrap: wrap; justify-content: center; }
    .bc-nav ul li a { padding: 7px 14px; font-size: 15px; letter-spacing: 0.5px; }
    .bc-nav ul li a::after { display: none; }

    /* Slider */
    .bc-slide { min-height: 480px; align-items: center; }

    .bc-slide-content {
        padding: 60px 20px 80px;
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Üst dekoratif çizgiyi ortala */
    .bc-slide-content::before {
        margin: 0 auto 20px;
    }

    .bc-slide-content h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .bc-slide-content p {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    /* Buton tam görünsün */
    .bc-slide-content .bc-btn {
        display: inline-block;
        padding: 13px 30px;
        font-size: 11px;
        position: relative;
        z-index: 10;
    }

    /* Oklar slider dışına taşmasın */
    .bc-slider-arrow { display: none; }

    /* Dots biraz yukarı */
    .bc-slider-dots { bottom: 24px; }

    /* Slider dalga boşluğunu azalt */
    .bc-hero::after { height: 40px; }

    /* About boşluğunu azalt */
    .bc-about { padding: 50px 0 40px; }
    .bc-about-inner { gap: 30px; }
    .bc-about-img img { width: 200px; height: 200px; }

    /* Services */
    .bc-services-grid { grid-template-columns: 1fr; }
    .bc-services { padding: 50px 0; }

    /* Pricing */
    .bc-pricing { padding: 50px 0; }
    .bc-pricing-promo { padding: 30px 20px; }
}

/* =========================================
   SLIDER JS STATES
   ========================================= */
.bc-slide { display: none; }
.bc-slide.active { display: flex; animation: bc-fadein .6s ease; }

@keyframes bc-fadein {
    from { opacity: 0; transform: scale(1.02); }
    to   { opacity: 1; transform: scale(1); }
}

/* =========================================
   SCROLL ANİMASYON (isteğe bağlı)
   ========================================= */
.bc-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.bc-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   İÇ SAYFALAR — BREADCRUMB & SAYFA BAŞLIĞI
   ========================================= */

/* Breadcrumb şeridini tamamen gizle (tema kendi yapıyor) */
.breadC {
    display: none !important;
}

/* Sayfa hero başlık bölümü */
.bc-page-wrap {
    padding: 0 !important;
}

/* Sayfa başlık banner */
article.page .entry-header,
.page-area .entry-header {
    background: linear-gradient(135deg, var(--bc-primary-dk) 0%, var(--bc-primary) 60%, var(--bc-primary-lt) 100%);
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

/* Dekoratif daireler arka planda */
article.page .entry-header::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(232,146,122,.12);
    pointer-events: none;
}
article.page .entry-header::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(232,146,122,.10);
    pointer-events: none;
}

/* Başlık metninin üstüne ince çizgi */
.Pagex-title {
    font-family: var(--bc-font) !important;
    font-size: clamp(30px, 4vw, 50px) !important;
    font-weight: 700 !important;
    font-style: italic !important;
    color: var(--bc-white) !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}
.Pagex-title::before {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--bc-accent);
    margin: 0 auto 20px;
}

/* Manuel breadcrumb - başlığın altına */
.bc-breadcrumb {
    background: rgba(0,0,0,.18);
    padding: 12px 0;
    border-bottom: 1px solid rgba(232,146,122,.1);
}
.bc-breadcrumb .bc-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.55);
}
.bc-breadcrumb a {
    color: var(--bc-accent);
    transition: color var(--bc-transition);
}
.bc-breadcrumb a:hover { color: var(--bc-accent-lt); }
.bc-breadcrumb .sep { opacity: .4; }
.bc-breadcrumb .current { color: rgba(255,255,255,.75); }

/* İçerik alanı */
article.page .entry-content,
.page-template {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
}

/* İçerik tipografi */
article.page .entry-content h2,
article.page .entry-content h3,
article.page .entry-content h4 {
    font-family: var(--bc-font);
    color: var(--bc-accent);
    font-weight: 400;
    font-style: italic;
    margin-top: 40px;
    margin-bottom: 16px;
}
article.page .entry-content h2 { font-size: 30px; }
article.page .entry-content h3 { font-size: 24px; }
article.page .entry-content p  { margin-bottom: 20px; }

article.page .entry-content a {
    color: var(--bc-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
article.page .entry-content a:hover { color: var(--bc-accent-lt); }

article.page .entry-content ul,
article.page .entry-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
article.page .entry-content li { margin-bottom: 8px; }

article.page .entry-content strong { color: var(--bc-white); font-weight: 700; }

article.page .entry-content blockquote {
    border-left: 3px solid var(--bc-accent);
    margin: 28px 0;
    padding: 16px 24px;
    background: rgba(232,146,122,.06);
    border-radius: 0 var(--bc-radius) var(--bc-radius) 0;
    font-style: italic;
    color: rgba(255,255,255,.8);
}

/* İletişim formu stilleri (Contact Form 7 vb.) */
article.page .entry-content input[type="text"],
article.page .entry-content input[type="email"],
article.page .entry-content input[type="tel"],
article.page .entry-content textarea,
article.page .entry-content select {
    width: 100%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(232,146,122,.25);
    border-radius: var(--bc-radius);
    color: var(--bc-white);
    padding: 14px 18px;
    font-size: 14px;
    font-family: var(--bc-font-body);
    transition: border-color var(--bc-transition), background var(--bc-transition);
    margin-bottom: 14px;
}
article.page .entry-content input::placeholder,
article.page .entry-content textarea::placeholder { color: rgba(255,255,255,.35); }

article.page .entry-content input:focus,
article.page .entry-content textarea:focus {
    outline: none;
    border-color: var(--bc-accent);
    background: rgba(232,146,122,.06);
}

article.page .entry-content input[type="submit"],
article.page .entry-content button[type="submit"] {
    background: var(--bc-accent);
    color: var(--bc-white);
    border: 2px solid var(--bc-accent);
    padding: 13px 36px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--bc-transition);
    box-shadow: 0 4px 20px rgba(232,146,122,.3);
    width: auto !important;
}
article.page .entry-content input[type="submit"]:hover,
article.page .entry-content button[type="submit"]:hover {
    background: transparent;
    color: var(--bc-accent);
    box-shadow: none;
}

/* Tablo stilleri */
article.page .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
article.page .entry-content th {
    background: rgba(232,146,122,.15);
    color: var(--bc-accent);
    padding: 12px 16px;
    text-align: left;
    font-family: var(--bc-font);
    font-weight: 400;
    font-style: italic;
    border-bottom: 1px solid rgba(232,146,122,.2);
}
article.page .entry-content td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.8);
}
article.page .entry-content tr:last-child td { border-bottom: none; }
article.page .entry-content tr:hover td { background: rgba(255,255,255,.03); }

/* =========================================
   TEKİL YAZI (single.php) STİLLERİ
   ========================================= */
article.post .entry-header {
    background: linear-gradient(135deg, var(--bc-primary-dk) 0%, var(--bc-primary) 100%);
    padding: 60px 0 50px;
    text-align: center;
}

/* =========================================
   ARŞİV / KATEGORİ SAYFASI
   ========================================= */
.bc-archive-desc {
    color: rgba(255,255,255,.6);
    font-size: 15px;
    margin-top: 12px;
    font-weight: 300;
    font-style: italic;
}

.bc-archive-body {
    padding: 60px 0 80px;
}

/* 2 kolonlu grid: yazılar + sidebar */
.bc-archive-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.bc-post-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Mevcut post_wide kartını temaya uyarla */
.bc-post-list .post_wide {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(232,146,122,.12);
    border-radius: var(--bc-radius);
    overflow: hidden;
    margin-bottom: 24px;
    transition: transform var(--bc-transition), box-shadow var(--bc-transition), border-color var(--bc-transition);
    display: flex !important;
    flex-direction: row;
}
.bc-post-list .post_wide:hover {
    transform: translateY(-4px);
    box-shadow: var(--bc-shadow);
    border-color: rgba(232,146,122,.3);
}

/* Yazı görseli */
.bc-post-list .post_thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .5s;
}
.bc-post-list .post_wide:hover .post_thumb img {
    transform: scale(1.05);
}

/* Yazı içerik metni */
.bc-post-list .post_text,
.bc-post-list .archivePostText {
    padding: 22px 24px;
    background: transparent !important;
}

.bc-post-list .post-title a,
.bc-post-list .kryex-post-title a {
    font-family: var(--bc-font);
    font-size: 20px;
    font-style: italic;
    color: var(--bc-white) !important;
    font-weight: 400;
    line-height: 1.35;
    transition: color var(--bc-transition);
}
.bc-post-list .post-title a:hover,
.bc-post-list .kryex-post-title a:hover {
    color: var(--bc-accent) !important;
}

.bc-post-list .post-meta,
.bc-post-list .kryex-meta {
    font-size: 12px;
    color: rgba(255,255,255,.4) !important;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bc-post-list .post-excerpt,
.bc-post-list .kryex-excerpt {
    font-size: 14px;
    color: rgba(255,255,255,.65) !important;
    line-height: 1.7;
    font-weight: 300;
}

.bc-post-list .cat-list a,
.bc-post-list .category-list a {
    background: rgba(232,146,122,.18);
    color: var(--bc-accent) !important;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background var(--bc-transition);
}
.bc-post-list .cat-list a:hover {
    background: var(--bc-accent);
    color: var(--bc-white) !important;
}

/* Sayfalama */
.bc-pagination { margin-top: 8px; }
.bc-pagination .page-numbers {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    flex-wrap: wrap;
}
.bc-pagination .page-numbers li a,
.bc-pagination .page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(232,146,122,.25);
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: all var(--bc-transition);
    text-decoration: none;
}
.bc-pagination .page-numbers li a:hover {
    background: var(--bc-accent);
    border-color: var(--bc-accent);
    color: var(--bc-white);
}
.bc-pagination .page-numbers li span.current {
    background: var(--bc-accent);
    border-color: var(--bc-accent);
    color: var(--bc-white);
}

/* Sidebar */
.bc-archive-sidebar .widget {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(232,146,122,.12);
    border-radius: var(--bc-radius);
    padding: 24px;
    margin-bottom: 24px;
}
.bc-archive-sidebar .widget-title {
    font-family: var(--bc-font);
    font-size: 18px;
    font-style: italic;
    color: var(--bc-accent);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(232,146,122,.15);
}
.bc-archive-sidebar .widget ul { list-style: none; padding: 0; margin: 0; }
.bc-archive-sidebar .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 14px;
    color: rgba(255,255,255,.7);
}
.bc-archive-sidebar .widget ul li:last-child { border-bottom: none; }
.bc-archive-sidebar .widget ul li a {
    color: rgba(255,255,255,.75);
    transition: color var(--bc-transition);
}
.bc-archive-sidebar .widget ul li a:hover { color: var(--bc-accent); }

/* İçerik bulunamadı */
.bc-not-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}
.bc-not-found-icon {
    font-size: 48px;
    color: rgba(232,146,122,.3);
    display: block;
    margin-bottom: 20px;
}
.bc-not-found h2 {
    font-family: var(--bc-font);
    font-size: 28px;
    color: var(--bc-accent);
    font-style: italic;
    margin: 0 0 12px;
}
.bc-not-found p {
    color: rgba(255,255,255,.55);
    margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 768px) {
    .bc-archive-grid { grid-template-columns: 1fr; }
    .bc-archive-sidebar { display: none; }
    .bc-post-list .post_wide { flex-direction: column; }
}

/* =========================================
   SLIDER BUTON — her zaman görünür
   ========================================= */
.bc-slide-btn-wrap {
    position: relative;
    z-index: 10;
    margin-top: 4px;
}

.bc-slide-btn-wrap .bc-btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobilde buton tam ortalanmış görünsün */
@media (max-width: 600px) {
    .bc-slide-btn-wrap {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    /* Slider içerik min yüksekliği ayarla ki buton wave'e gömülmesin */
    .bc-slide-content {
        padding-bottom: 100px !important;
    }
}

/* =========================================
   ŞUBELERİMİZ BÖLÜMÜ
   ========================================= */
.bc-branches {
    padding: 90px 0;
    position: relative;
}
.bc-branches::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,146,122,.3), transparent);
}

.bc-branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.bc-branch-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(232,146,122,.12);
    border-radius: var(--bc-radius);
    overflow: hidden;
    transition: transform var(--bc-transition), box-shadow var(--bc-transition), border-color var(--bc-transition);
}
.bc-branch-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--bc-shadow);
    border-color: rgba(232,146,122,.3);
}

.bc-branch-card-img {
    height: 220px;
    overflow: hidden;
}
.bc-branch-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
    display: block;
}
.bc-branch-card:hover .bc-branch-card-img img {
    transform: scale(1.07);
}

.bc-branch-card-body {
    padding: 24px;
}
.bc-branch-card-body h3 {
    font-family: var(--bc-font);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--bc-white);
    margin: 0 0 12px;
}
.bc-branch-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
    margin: 0 0 20px;
    font-weight: 300;
}

@media (max-width: 991px) {
    .bc-branches-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .bc-branches-grid { grid-template-columns: 1fr; }
    .bc-branches { padding: 50px 0; }
}

/* =========================================
   TEKİL YAZI (single.php)
   ========================================= */

/* Öne çıkan görsel — tam genişlik, ortalı */
.bc-single-hero {
    position: relative;
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bc-primary-dk);
}
.bc-single-hero img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.bc-single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.2) 0%,
        rgba(0,0,0,.6) 100%
    );
}

/* İçerik sarmalayıcı */
.bc-single-wrap {
    padding: 60px 0 80px;
}

.bc-single-content {
    max-width: 780px;
    margin: 0 auto;
}

/* Başlık */
.bc-single-title {
    font-family: var(--bc-font);
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    font-style: italic;
    color: var(--bc-white);
    line-height: 1.25;
    margin: 0 0 20px;
}

/* Meta bilgiler */
.bc-single-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(232,146,122,.15);
}
.bc-single-meta span { display: flex; align-items: center; gap: 6px; }
.bc-single-meta a { color: var(--bc-accent); }
.bc-single-meta a:hover { color: var(--bc-accent-lt); }

/* Yazı gövdesi */
.bc-single-body {
    font-size: 16px;
    line-height: 1.95;
    color: rgba(255,255,255,.88);
    font-weight: 300;
}

.bc-single-body p { margin-bottom: 22px; }

.bc-single-body h2,
.bc-single-body h3,
.bc-single-body h4 {
    font-family: var(--bc-font);
    color: var(--bc-accent);
    font-weight: 400;
    font-style: italic;
    margin: 40px 0 16px;
    line-height: 1.3;
}
.bc-single-body h2 { font-size: 30px; }
.bc-single-body h3 { font-size: 24px; }
.bc-single-body h4 { font-size: 20px; }

.bc-single-body a {
    color: var(--bc-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.bc-single-body a:hover { color: var(--bc-accent-lt); }

.bc-single-body strong { color: var(--bc-white); font-weight: 700; }
.bc-single-body em { font-style: italic; color: rgba(255,255,255,.75); }

.bc-single-body ul,
.bc-single-body ol {
    padding-left: 24px;
    margin-bottom: 22px;
}
.bc-single-body li {
    margin-bottom: 10px;
    color: rgba(255,255,255,.82);
}
.bc-single-body li::marker { color: var(--bc-accent); }

.bc-single-body blockquote {
    border-left: 3px solid var(--bc-accent);
    margin: 32px 0;
    padding: 18px 28px;
    background: rgba(232,146,122,.06);
    border-radius: 0 var(--bc-radius) var(--bc-radius) 0;
    font-style: italic;
    font-size: 17px;
    color: rgba(255,255,255,.8);
}

/* Yazı içindeki görseller */
.bc-single-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--bc-radius);
    margin: 24px auto;
    display: block;
    box-shadow: var(--bc-shadow);
}

/* Tablo */
.bc-single-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
    font-size: 14px;
}
.bc-single-body th {
    background: rgba(232,146,122,.15);
    color: var(--bc-accent);
    padding: 12px 16px;
    text-align: left;
    font-family: var(--bc-font);
    font-style: italic;
    border-bottom: 1px solid rgba(232,146,122,.2);
}
.bc-single-body td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.bc-single-body tr:hover td { background: rgba(255,255,255,.03); }

/* Ayraç çizgi */
.bc-single-body hr {
    border: none;
    border-top: 1px solid rgba(232,146,122,.2);
    margin: 36px 0;
}

/* Geri butonu */
.bc-single-back {
    margin-top: 50px;
    padding-top: 28px;
    border-top: 1px solid rgba(232,146,122,.15);
}

/* Mobil */
@media (max-width: 600px) {
    .bc-single-hero img { height: 260px; }
    .bc-single-wrap { padding: 36px 0 60px; }
    .bc-single-body { font-size: 15px; }
    .bc-single-meta { gap: 12px; }
}

/* =========================================
   TEKİL YAZI — RENK OVERRIDE
   Tema kendi CSS'i siyah renk verebilir, hepsini ezip beyaz yapıyoruz
   ========================================= */
.bc-single .entry-content,
.bc-single .entry-content *,
.bc-single-body,
.bc-single-body p,
.bc-single-body li,
.bc-single-body span,
.bc-single-body div {
    color: rgba(255,255,255,.88) !important;
    background-color: transparent !important;
}

.bc-single-body h1,
.bc-single-body h2,
.bc-single-body h3,
.bc-single-body h4,
.bc-single-body h5,
.bc-single-body h6 {
    color: var(--bc-accent) !important;
    background-color: transparent !important;
}

.bc-single-body a {
    color: var(--bc-accent) !important;
}

.bc-single-body strong,
.bc-single-body b {
    color: var(--bc-white) !important;
    font-weight: 700 !important;
}

/* Tema'nın post wrapper'larına da uygula */
.bc-single,
.bc-single .post,
.bc-single article,
.bc-single .page-template {
    background: transparent !important;
    color: rgba(255,255,255,.88) !important;
}

/* =========================================
   SAYFA İÇERİĞİ (page.php) — RENK OVERRIDE
   ========================================= */
.page .entry-content,
.page .entry-content *,
.page-template,
.page-template p,
.page-template li,
.page-template span,
.page-template div,
.page-template label {
    color: rgba(255,255,255,.88) !important;
    background-color: transparent !important;
}

.page .entry-content h1,
.page .entry-content h2,
.page .entry-content h3,
.page .entry-content h4,
.page-template h1,
.page-template h2,
.page-template h3 {
    color: var(--bc-accent) !important;
    background: transparent !important;
}

.page .entry-content a,
.page-template a {
    color: var(--bc-accent) !important;
}

.page .entry-content strong,
.page-template strong {
    color: var(--bc-white) !important;
}

/* =========================================
   İLETİŞİM FORMU — Contact Form 7
   ========================================= */
.wpcf7-form,
.wpcf7 {
    max-width: 680px;
    margin: 0 auto;
}

/* Input & Textarea */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 textarea,
.wpcf7 select,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100% !important;
    background: rgba(255,255,255,.07) !important;
    border: 1px solid rgba(232,146,122,.3) !important;
    border-radius: var(--bc-radius) !important;
    color: var(--bc-white) !important;
    padding: 14px 18px !important;
    font-size: 15px !important;
    font-family: var(--bc-font-body) !important;
    transition: border-color var(--bc-transition), background var(--bc-transition) !important;
    margin-bottom: 16px !important;
    display: block !important;
    box-sizing: border-box !important;
    outline: none !important;
    box-shadow: none !important;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder,
input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,.35) !important;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
input:focus,
textarea:focus {
    border-color: var(--bc-accent) !important;
    background: rgba(232,146,122,.07) !important;
}

.wpcf7 textarea,
textarea {
    min-height: 150px !important;
    resize: vertical !important;
}

/* Gönder butonu */
.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"],
input[type="submit"] {
    background: transparent !important;
    color: var(--bc-accent) !important;
    border: 2px solid var(--bc-accent) !important;
    padding: 13px 40px !important;
    border-radius: 40px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all var(--bc-transition) !important;
    width: auto !important;
    display: inline-block !important;
    margin-top: 8px !important;
}

.wpcf7 input[type="submit"]:hover,
input[type="submit"]:hover {
    background: var(--bc-accent) !important;
    color: var(--bc-white) !important;
    box-shadow: 0 4px 20px rgba(232,146,122,.3) !important;
}

/* Başarı & hata mesajları */
.wpcf7-mail-sent-ok {
    background: rgba(232,146,122,.15) !important;
    border: 1px solid var(--bc-accent) !important;
    color: var(--bc-accent) !important;
    padding: 14px 20px !important;
    border-radius: var(--bc-radius) !important;
    margin-top: 16px !important;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
    background: rgba(200,50,50,.15) !important;
    border: 1px solid rgba(200,50,50,.4) !important;
    color: #ff9a9a !important;
    padding: 14px 20px !important;
    border-radius: var(--bc-radius) !important;
    margin-top: 16px !important;
}

.wpcf7-not-valid-tip {
    color: #ff9a9a !important;
    font-size: 12px !important;
    margin-top: -10px !important;
    margin-bottom: 10px !important;
    display: block !important;
}

/* =========================================
   SAYFA GENEL İÇERİK PADDING
   ========================================= */
article.page {
    padding: 60px 0 80px;
}

article.page .entry-header { display: none; }

/* =========================================
   SAYFA BANNER & BODY (page.php)
   ========================================= */
.bc-page-banner {
    background: linear-gradient(135deg, var(--bc-primary-dk) 0%, var(--bc-primary) 60%, var(--bc-primary-lt) 100%);
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bc-page-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(232,146,122,.12);
    pointer-events: none;
}
.bc-page-banner::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(232,146,122,.10);
    pointer-events: none;
}
.bc-page-banner-title {
    font-family: var(--bc-font) !important;
    font-size: clamp(28px, 4vw, 48px) !important;
    font-weight: 700 !important;
    font-style: italic !important;
    color: var(--bc-white) !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}
.bc-page-banner-title::before {
    content: '';
    display: block;
    width: 50px; height: 2px;
    background: var(--bc-accent);
    margin: 0 auto 20px;
}

.bc-page-body {
    padding: 60px 0 80px;
}

.bc-page-inner {
    max-width: 780px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
    color: rgba(255,255,255,.88);
}

.bc-page-inner * {
    color: rgba(255,255,255,.88) !important;
    background: transparent !important;
}

.bc-page-inner h1,
.bc-page-inner h2,
.bc-page-inner h3,
.bc-page-inner h4 {
    font-family: var(--bc-font) !important;
    color: var(--bc-accent) !important;
    font-style: italic !important;
    font-weight: 400 !important;
    margin: 36px 0 16px !important;
}

.bc-page-inner p { margin-bottom: 20px; }

.bc-page-inner a { color: var(--bc-accent) !important; text-decoration: underline; }
.bc-page-inner a:hover { color: var(--bc-accent-lt) !important; }
.bc-page-inner strong { color: var(--bc-white) !important; font-weight: 700 !important; }

/* =========================================
   DİĞER HİZMETLERİMİZ — Yazı altı kartlar
   ========================================= */
.bc-single-others {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid rgba(232,146,122,.15);
}

.bc-single-others-title {
    font-family: var(--bc-font) !important;
    font-size: 22px !important;
    font-style: italic !important;
    color: var(--bc-accent) !important;
    margin: 0 0 24px !important;
    font-weight: 400 !important;
    background: transparent !important;
}

.bc-single-others-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bc-other-card {
    display: block;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(232,146,122,.12);
    border-radius: var(--bc-radius);
    overflow: hidden;
    text-decoration: none !important;
    transition: transform var(--bc-transition), box-shadow var(--bc-transition), border-color var(--bc-transition);
}
.bc-other-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bc-shadow);
    border-color: rgba(232,146,122,.35);
}

.bc-other-card-img {
    height: 160px;
    overflow: hidden;
}
.bc-other-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.bc-other-card:hover .bc-other-card-img img {
    transform: scale(1.07);
}

.bc-other-card-title {
    display: block;
    padding: 14px 16px;
    font-family: var(--bc-font);
    font-size: 15px;
    font-style: italic;
    color: var(--bc-white) !important;
    line-height: 1.4;
    transition: color var(--bc-transition);
}
.bc-other-card:hover .bc-other-card-title {
    color: var(--bc-accent) !important;
}

@media (max-width: 600px) {
    .bc-single-others-grid { grid-template-columns: 1fr; }
}

/* Hizmet & Şube kartı — resim yüksekliği mobilde daha az */
@media (max-width: 600px) {
    .bc-service-card-img { height: 160px !important; }
}

/* =========================================
   İLETİŞİM LİSTESİ (pricing bölümü yerine)
   ========================================= */
.bc-contact-list {
    flex: 1;
    background: rgba(0,0,0,.2);
    border-radius: var(--bc-radius);
    border: 1px solid rgba(232,146,122,.1);
    overflow: hidden;
}

.bc-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background var(--bc-transition);
    text-decoration: none !important;
    color: inherit !important;
}
.bc-contact-item:last-child { border-bottom: none; }
a.bc-contact-item:hover { background: rgba(232,146,122,.07); }

.bc-contact-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.bc-contact-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    flex-shrink: 0;
    min-width: 80px;
}

.bc-contact-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255,255,255,.15);
    align-self: center;
    margin: 0 8px;
}

.bc-contact-value {
    font-size: 15px;
    color: var(--bc-accent);
    font-weight: 400;
    text-align: right;
    flex-shrink: 0;
}

a.bc-contact-item:hover .bc-contact-value {
    color: var(--bc-accent-lt);
}

@media (max-width: 600px) {
    .bc-contact-item { padding: 14px 16px; gap: 10px; }
    .bc-contact-label { min-width: 60px; font-size: 11px; }
    .bc-contact-value { font-size: 13px; }
    .bc-contact-dots { display: none; }
}

/* =========================================
   İLETİŞİM — MOBİL DÜZELTME
   ========================================= */
@media (max-width: 768px) {

    .bc-pricing-inner {
        flex-direction: column;
        gap: 24px;
    }

    /* Promo kutusu ile aynı stil */
    .bc-contact-list {
        background: rgba(255,255,255,.03) !important;
        border: 1px solid rgba(232,146,122,.15) !important;
        border-radius: var(--bc-radius) !important;
        overflow: hidden;
        width: 100%;
    }

    .bc-contact-item {
        padding: 16px 20px;
        gap: 12px;
        flex-wrap: nowrap;
    }

    .bc-contact-icon {
        font-size: 18px;
        width: 28px;
    }

    .bc-contact-label {
        min-width: 70px;
        font-size: 11px;
    }

    .bc-contact-dots { display: none; }

    .bc-contact-value {
        font-size: 13px;
        text-align: right;
        word-break: break-all;
    }

    /* Promo kutusunu tam genişlik yap */
    .bc-pricing-promo {
        width: 100% !important;
        flex: none !important;
        border: 1px solid rgba(232,146,122,.15);
        border-radius: var(--bc-radius);
        background: rgba(255,255,255,.03);
    }
}
/* =========================================
   İLETİŞİM SAYFASI KARTLARI
   ========================================= */
.bc-contact-page {
    max-width: 100%;
    margin: 0 auto;
}

.bc-contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.bc-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(200,169,110,.2) !important;
    border-radius: var(--bc-radius);
    text-decoration: none !important;
    color: var(--bc-white) !important;
    transition: transform var(--bc-transition), box-shadow var(--bc-transition), border-color var(--bc-transition);
    gap: 10px;
}

a.bc-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0,0,0,.5);
    border-color: rgba(200,169,110,.5) !important;
    background: rgba(200,169,110,.05) !important;
}

.bc-contact-card * {
    background: transparent !important;
}

.bc-contact-card-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 4px;
    color: var(--bc-accent) !important;
    background: transparent !important;
}

.bc-contact-card-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245,240,232,.45) !important;
    display: block;
    background: transparent !important;
}

.bc-contact-card-value {
    font-size: 16px;
    color: var(--bc-accent) !important;
    font-weight: 400;
    display: block;
    line-height: 1.5;
    background: transparent !important;
}

a.bc-contact-card:hover .bc-contact-card-value {
    color: var(--bc-accent-lt) !important;
}

/* Form alanı */
.bc-contact-form-wrap {
    border-top: 1px solid rgba(200,169,110,.15);
    padding-top: 40px;
}

@media (max-width: 600px) {
    .bc-contact-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .bc-contact-card { padding: 28px 20px; }
    .bc-contact-card-icon { font-size: 28px; }
    .bc-contact-card-value { font-size: 14px; }
}
/* =========================================
   İLETİŞİM SAYFASI — TAM GENİŞLİK DÜZELTME
   ========================================= */

/* WordPress sidebar layout'unu iletişim sayfasında devre dışı bırak */
.page-template-template-contact .row {
    display: block !important;
    width: 100% !important;
}
.page-template-template-contact .col-xl-8,
.page-template-template-contact .col-md-8,
.page-template-template-contact .col-12 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}
.page-template-template-contact .sidebar_sticky,
.page-template-template-contact .col-xl-4,
.page-template-template-contact .col-md-4 {
    display: none !important;
}

/* Sayfa arka planını garanti et */
html, body {
    background-color: #0d0d0d !important;
}

/* Tüm sayfalarda kart/içerik arka planı siyah kalmalı */
.bc-contact-card,
.bc-contact-card * {
    background-color: transparent !important;
}
.bc-contact-card {
    background: rgba(255,255,255,.04) !important;
}
