/* Karşıyaka Mezar Mermer - Premium Minimal */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #FFFFFF;
    --marble: #ECE8E1;
    --gold: #C6A46C;
    --dark: #1F1F1F;
    --gray: #777777;
    --white: #FFFFFF;
    --border: #E5E2DC;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: auto; }

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
}

.header-top {
    border-bottom: 1px solid var(--border);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
}

.header-slogan {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.4;
    text-align: left;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}

.header-phone svg { stroke: var(--gold); }

.phone-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
}

.phone-label {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--gray);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--dark);
    color: var(--white);
    border-radius: 14px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: 0.3s;
}

.btn-whatsapp:hover { background: #333; }

.header-nav {
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.nav a,
.nav-dropdown-trigger {
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--gray);
    padding: 14px 12px;
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav a:hover,
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--gold); }

.nav a.active,
.nav-dropdown.active .nav-dropdown-trigger { color: var(--dark); }

.nav a.active::after,
.nav-dropdown.active .nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--gold);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger svg {
    transition: 0.2s ease;
    margin-top: 1px;
}

.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: 6px;
    transition: 0.2s ease;
}

.nav-dropdown-menu a svg {
    flex-shrink: 0;
    stroke: var(--gold);
    transition: 0.2s ease;
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover {
    background: var(--bg);
    color: var(--gold);
    padding-left: 18px;
}

.nav-dropdown-menu a:hover svg { transform: scale(1.1); }

/* Mobile dropdown */
.mobile-dropdown {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.mobile-dropdown-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-dropdown a {
    padding: 8px 0 8px 12px;
    font-size: 0.82rem;
    color: var(--gray);
    border-bottom: none;
}

.mobile-dropdown a:hover { color: var(--gold); }

.mobile-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    transition: 0.3s;
}

.mobile-toggle:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.mobile-toggle .hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-toggle .hamburger-lines span {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--white);
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active { display: flex; }

.mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.mm-logo {
    height: 40px;
    width: auto;
}

.mm-close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--dark);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.mm-close:hover {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 20px;
    gap: 2px;
    overflow-y: auto;
}

.mm-link {
    display: flex;
    align-items: center;
    padding: 15px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    transition: 0.15s ease;
}

.mm-link:active {
    background: var(--bg);
    color: var(--gold);
}

.mm-icon {
    font-size: 1rem;
    width: 24px;
    text-align: center;
}

/* Accordion */
.mm-accordion {
    border-bottom: 1px solid var(--border);
}

.mm-acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: 0.15s ease;
}

.mm-acc-btn:active { color: var(--gold); }

.mm-chevron {
    transition: transform 0.3s ease;
    color: var(--gray);
}

.mm-accordion.open .mm-chevron {
    transform: rotate(180deg);
    color: var(--gold);
}

.mm-acc-panel {
    display: none;
    padding: 0 12px 12px;
}

.mm-accordion.open .mm-acc-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.mm-acc-panel a {
    padding: 11px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: 0.15s ease;
}

.mm-acc-panel a:active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.mm-section {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 14px 6px;
}

.mm-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 0 6px;
    margin-bottom: 6px;
}

.mm-sub-grid a {
    padding: 10px 12px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--bg);
    border-radius: 8px;
    transition: 0.15s ease;
}

.mm-sub-grid a:active {
    background: var(--gold);
    color: var(--white);
}

.mm-footer {
    padding: 14px 20px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.mm-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: 0.2s ease;
}

.mm-btn-wa {
    background: #25D366;
    color: var(--white);
}

.mm-btn-tel {
    background: var(--dark);
    color: var(--white);
}

.mobile-phone { display: none; }

/* === MAIN === */
main {
    padding-top: 130px;
    min-height: 60vh;
}

/* === GENEL BUTONLAR === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
}

/* === SECTION COMMON === */
.section-header {
    text-align: center;
    margin-bottom: 26px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.section-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.section-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--gray);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 24px;
}

/* === PAGE BANNER === */
.page-banner {
    padding: 28px 0 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: var(--gray);
    letter-spacing: 0.3px;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb-sep { color: var(--border); }

.breadcrumb span:not(.breadcrumb-sep) {
    color: var(--dark);
    font-weight: 500;
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 6px;
}

.page-banner-desc {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gray);
    line-height: 1.5;
    max-width: 480px;
    margin: 0 auto;
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 40px 0 0;
}

.footer-top {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
    gap: 30px;
}

.footer-logo {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 300px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
}

.footer-contact a:hover { color: var(--gold); }

.footer-contact svg { stroke: var(--gold); }

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.footer-social a:hover { background: var(--gold); }

.footer-col h4 {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-col ul { list-style: none; }

.footer-col li {
    margin-bottom: 7px;
    font-size: 0.74rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-col li a:hover { color: var(--gold); }

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-address svg {
    stroke: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
}

.footer-bottom p {
    font-size: 0.66rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-bottom-links a {
    font-size: 0.66rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links a:hover { color: var(--gold); }

.footer-credit {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit a {
    color: var(--gold);
    font-weight: 600;
}

.footer-credit a:hover { color: #fff; }

/* === WHATSAPP PRO WIDGET === */
.wa-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

/* Float Button */
.wa-float-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(37,211,102,0.45);
    transition: all 0.3s ease;
    position: relative;
    animation: waEntrance 0.6s ease 1s both;
}

@keyframes waEntrance {
    from { transform: scale(0) rotate(-180deg); opacity: 0; }
    to { transform: scale(1) rotate(0); opacity: 1; }
}

.wa-float-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}

.wa-float-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: waPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.wa-float-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #EF4444;
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    animation: waBadgeBounce 2s ease infinite 4s;
}

@keyframes waBadgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Popup */
.wa-popup {
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 340px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-popup.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.wa-popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: #075E54;
    color: #fff;
}

.wa-popup-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    padding: 6px;
}

.wa-popup-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wa-online {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 50%;
    border: 2px solid #075E54;
}

.wa-popup-info {
    flex: 1;
    min-width: 0;
}

.wa-popup-info strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
}

.wa-popup-info span {
    font-size: 0.62rem;
    opacity: 0.8;
}

.wa-popup-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.wa-popup-close:hover { background: rgba(255,255,255,0.3); }

.wa-popup-body {
    padding: 18px;
    background: #ECE5DD;
    min-height: 120px;
}

.wa-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 10px;
    position: relative;
}

.wa-msg-in {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.wa-msg p {
    font-size: 0.8rem;
    color: #1F1F1F;
    line-height: 1.5;
    margin: 0;
}

.wa-msg-time {
    display: block;
    font-size: 0.55rem;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

.wa-services {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.wa-svc {
    display: block;
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #075E54;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: 0.2s ease;
}

.wa-svc:hover {
    background: #25D366;
    color: #fff;
    transform: translateX(4px);
}

.wa-popup-footer {
    padding: 12px 18px;
    background: #fff;
    border-top: 1px solid #E5E5E5;
}

.wa-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: 0.2s ease;
}

.wa-send-btn:hover { background: #1da851; }

/* Mobilde widget gizle (sticky CTA var) */
@media (max-width: 768px) {
    .wa-widget { display: none; }
}

/* === FADE ANIMATIONS === */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* === MEZAR MODELLERİ — Minimal Editorial === */
/* ============================================ */

/* Tüm Mezarlarımız - Index Liste */
.models-index {
    padding: 36px 0 50px;
    background: var(--white);
}

.mi-list {
    border-top: 1px solid var(--border);
}

.mi-row {
    display: grid;
    grid-template-columns: 60px 100px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 14px 6px;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
    transition: 0.25s ease;
}

.mi-row:hover {
    background: var(--bg);
    padding-left: 16px;
}

.mi-num {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.mi-thumb {
    width: 100px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg);
}

.mi-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mi-text h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    line-height: 1.2;
}

.mi-text p {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.mi-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: 0.25s ease;
    flex-shrink: 0;
}

.mi-row:hover .mi-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* === MODEL DETAY SAYFASI === */
.model-detail {
    padding: 30px 0 50px;
    background: var(--white);
}

.md-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.md-visual {
    position: sticky;
    top: 130px;
}

.md-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 12px;
}

.md-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.md-quick {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.md-quick-item {
    padding: 10px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.md-quick-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 2px;
}

.md-quick-item span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.md-cta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.md-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.74rem;
}

/* Sağ içerik */
.md-content .section-eyebrow {
    margin-bottom: 8px;
}

.md-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.md-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.md-lead {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-style: italic;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.55;
    margin-bottom: 12px;
    padding-left: 14px;
    border-left: 2px solid var(--gold);
}

.md-content > p {
    font-family: var(--font-body);
    font-size: 0.76rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.md-content > p strong {
    color: var(--dark);
    font-weight: 600;
}

/* Özellikler - 2 sütun, sıkı */
.md-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.md-section-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.md-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 16px;
}

.md-feature {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 0;
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--dark);
}

.md-feature svg {
    stroke: var(--gold);
    flex-shrink: 0;
}

/* Malzemeler - inline minimal */
.md-materials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.md-material {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.md-material-swatch {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.md-material-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.md-material-info span {
    font-family: var(--font-body);
    font-size: 0.62rem;
    color: var(--gray);
}

/* Modeller mini grid */
.md-models {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.md-model {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.25s ease;
    background: var(--white);
    color: var(--dark);
}

.md-model:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.md-model-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.md-model-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.md-model-body {
    padding: 8px 10px 10px;
}

.md-model-body strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1px;
    line-height: 1.2;
}

.md-model-body span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .header-nav,
    .header-slogan,
    .btn-whatsapp { display: none; }
    .mobile-toggle { display: flex; }
    .header-top-inner { padding: 18px 0; height: auto; }
    .logo-img { height: 52px; }
    .header-top-right { gap: 14px; }
    .header-top-right .header-phone { display: none; }
    .header-top-right .btn-whatsapp { display: none; }
    .container { padding: 0 20px; }
    main { padding-top: 72px; }
    .mobile-toggle { position: static; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-grid .footer-brand { grid-column: 1; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        position: static;
    }
    .footer-bottom-links {
        position: static;
        transform: none;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-credit {
        margin-top: 4px;
    }

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .footer-grid .footer-brand {
        grid-column: 1 / -1;
    }
}

    /* Models */
    .mi-row {
        grid-template-columns: 50px 80px 1fr auto;
        gap: 14px;
    }

    .md-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .md-visual {
        position: static;
        max-width: 100%;
        width: 100%;
    }

    .md-visual .md-img {
        aspect-ratio: 16/9;
    }

    .md-models { grid-template-columns: repeat(2, 1fr); }
    .md-features,
    .md-materials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .models-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .mi-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: var(--white);
    }
    .mi-row:hover { padding-left: 10px; }
    .mi-num { display: none; }
    .mi-arrow { display: none; }
    .mi-img { border-radius: 6px; height: 90px; width: 100%; }
    .mi-info h3 { font-size: 0.75rem; }
    .mi-info span { font-size: 0.58rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .mi-price { font-size: 0.65rem; }

    .md-grid { gap: 18px; }
    .md-visual { max-width: 100%; width: 100%; position: static; }
    .md-visual .md-img { aspect-ratio: 16/9; height: auto; }
    .md-models { grid-template-columns: repeat(2, 1fr); }
    .md-quick { grid-template-columns: repeat(2, 1fr); }
    .md-features { grid-template-columns: repeat(2, 1fr); }
    .md-materials { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================ */
/* === ANASAYFA STİLLERİ === */
/* ============================================ */

/* HERO */
.hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: var(--white);
    margin-top: -130px;
    padding-top: 130px;
    border-bottom: 1px solid var(--border);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.96) 25%, rgba(255,255,255,0.85) 38%, rgba(255,255,255,0.45) 52%, rgba(255,255,255,0) 68%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content {
    flex-shrink: 0;
    max-width: 420px;
    padding-top: 20px;
}

.hero-eyebrow {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 8px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 18px;
}

.hero-title span { color: var(--gold); }

.hero-desc {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats-mid {
    flex-shrink: 0;
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 18px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.hero-stat-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-item:first-child { padding-top: 0; }

.hero-stat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(198,164,108,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-icon svg { stroke: var(--gold); }

.hero-stat-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.hero-stat-item span {
    font-size: 0.66rem;
    color: var(--gray);
}

/* SERVICES - Ana Sayfa */
.services {
    padding: 40px 0 50px;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.svc-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
}

.svc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: transparent;
    transition: 0.3s;
}

.svc-img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.svc-body { padding: 14px 14px 16px; }

.svc-body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.svc-body p {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 10px;
}

.svc-link {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
}

/* PROCESS */
.process {
    padding: 50px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.process-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 20px;
    transition: 0.3s ease;
}

.process-step:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.ps-num {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 12px;
}

.ps-icon {
    width: 42px;
    height: 42px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.ps-icon svg { stroke: var(--dark); }

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.process-step p {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.55;
}

/* REGIONS */
.regions {
    padding: 50px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.regions-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.regions-left .section-eyebrow {
    text-align: left;
    margin-bottom: 14px;
}

.regions-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 14px;
}

.regions-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.regions-desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 440px;
}

.regions-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.r-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.r-stat span {
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: var(--gray);
    letter-spacing: 0.3px;
}

.regions-list {
    border-top: 1px solid var(--border);
}

.r-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    transition: 0.3s ease;
}

.r-row:hover {
    padding-left: 14px;
    background: var(--bg);
}

.r-row-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.r-num {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    min-width: 28px;
}

.r-row h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    transition: 0.3s ease;
}

.r-row:hover h3 { color: var(--gold); }

.r-row-left > div span {
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: var(--gray);
}

.r-row-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.r-row:hover .r-row-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* WHY US */
.whyus {
    padding: 40px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.whyus-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.whyus-left .section-eyebrow {
    text-align: left;
    margin-bottom: 12px;
}

.whyus-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 14px;
}

.whyus-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.whyus-desc {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 420px;
}

.whyus-quote {
    position: relative;
    padding: 18px 18px 18px 22px;
    background: var(--white);
    border-left: 3px solid var(--gold);
    border-radius: 0 10px 10px 0;
}

.whyus-quote-icon {
    position: absolute;
    top: 14px;
    right: 16px;
    stroke: var(--gold);
    opacity: 0.25;
}

.whyus-quote p {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
    max-width: 340px;
}

.whyus-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: 0.3s ease;
}

.whyus-feature:first-child { border-top: 1px solid var(--border); }

.whyus-feature:hover { padding-left: 8px; }
.whyus-feature:hover .wf-num { color: var(--gold); }
.whyus-feature:hover .wf-icon {
    background: var(--gold);
    border-color: var(--gold);
}
.whyus-feature:hover .wf-icon svg { stroke: var(--white); }

.wf-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray);
    min-width: 28px;
    transition: 0.3s ease;
}

.wf-content { flex: 1; }

.wf-content h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 2px;
}

.wf-content p {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.wf-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: 0.3s ease;
}

.wf-icon svg { stroke: var(--dark); }

/* TESTIMONIALS */
.testimonials {
    padding: 50px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.testi-top {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.testi-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 22px;
}

.testi-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.testi-rating-bar {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 12px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 60px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.trb-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.trb-item:not(.trb-google) {
    flex-direction: column;
    text-align: center;
    gap: 0;
}

.trb-item:not(.trb-google) strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.trb-item:not(.trb-google) span {
    font-family: var(--font-body);
    font-size: 0.62rem;
    color: var(--gray);
    margin-top: 2px;
}

.trb-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trb-stars strong {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
}

.trb-stars-icons { display: flex; gap: 1px; }

.trb-google > div span {
    font-family: var(--font-body);
    font-size: 0.62rem;
    color: var(--gray);
}

.trb-divider {
    width: 1px;
    height: 26px;
    background: var(--border);
}

.testi-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.testi-track {
    display: flex;
    gap: 18px;
    animation: marqueeScroll 50s linear infinite;
    width: max-content;
    padding: 8px 0;
}

.testi-marquee:hover .testi-track { animation-play-state: paused; }

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 9px)); }
}

.testi-card {
    flex-shrink: 0;
    width: 320px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.testi-card-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testi-author { flex: 1; min-width: 0; }

.testi-author strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.testi-meta {
    display: flex;
    align-items: center;
    gap: 6px;
}

.testi-stars { display: flex; gap: 1px; }

.testi-meta span {
    font-family: var(--font-body);
    font-size: 0.64rem;
    color: var(--gray);
}

.testi-card p {
    font-family: var(--font-body);
    font-size: 0.76rem;
    color: var(--dark);
    line-height: 1.55;
    margin: 0;
}

/* TRUST */
.trust {
    padding: 36px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-header { text-align: center; margin-bottom: 22px; }

.trust-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.trust-logo {
    text-align: center;
    padding: 18px 12px;
    border-right: 1px solid var(--border);
    transition: 0.3s ease;
}

.trust-logo:last-child { border-right: none; }
.trust-logo:hover { background: var(--bg); }

.trust-logo strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.trust-logo span {
    font-family: var(--font-body);
    font-size: 0.62rem;
    color: var(--gray);
}

/* FAQ */
.faq {
    padding: 50px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}

.faq-left .section-eyebrow {
    text-align: left;
    margin-bottom: 12px;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 14px;
}

.faq-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.faq-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 360px;
}

.faq-right { border-top: 1px solid var(--border); }

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--dark);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.faq-item[open] .faq-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-content { padding: 0 0 14px 0; }

.faq-content p {
    font-family: var(--font-body);
    font-size: 0.76rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
    padding-right: 36px;
}

/* CTA */
.cta {
    padding: 28px 0;
    background: var(--bg);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 14px 40px rgba(0,0,0,0.05);
    min-height: 300px;
}

.cta-visual {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.cta-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31,31,31,0.4) 0%, rgba(31,31,31,0.1) 60%);
    z-index: 1;
}

.cta-visual-pattern {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(198,164,108,0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.cta-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.4px;
}

.cta-badge svg { stroke: var(--gold); fill: var(--gold); width: 12px; height: 12px; }

.cta-content {
    padding: 26px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-eyebrow { text-align: left; margin-bottom: 8px; }

.cta-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 8px;
}

.cta-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.cta-desc {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cta-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.cta-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--dark);
    transition: 0.3s ease;
}

.cta-option:hover {
    border-color: var(--gold);
    transform: translateX(3px);
}

.cta-option-primary {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.cta-option-primary:hover {
    background: #2a2a2a;
    border-color: #2a2a2a;
}

.cta-option-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(198,164,108,0.1);
    color: var(--gold);
}

.cta-option-icon svg { width: 16px; height: 16px; }

.cta-option-primary .cta-option-icon {
    background: rgba(198,164,108,0.2);
    color: #25D366;
}

.cta-option-text { flex: 1; display: flex; flex-direction: column; }

.cta-option-text strong {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
}

.cta-option-text span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
}

.cta-option-primary .cta-option-text span { color: rgba(255,255,255,0.6); }

.cta-option-arrow {
    width: 26px;
    height: 26px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.cta-option-arrow svg { width: 14px; height: 14px; }

.cta-option-primary .cta-option-arrow { border-color: rgba(255,255,255,0.2); }

.cta-option:hover .cta-option-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.cta-trust {
    display: flex;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 0.64rem;
    color: var(--gray);
}

.cta-trust-item svg { stroke: var(--gold); width: 12px; height: 12px; }

/* === HAKKIMIZDA - Kompakt === */
.about-quote {
    padding: 50px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.aq-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.aq-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.aq-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 18px;
}

.aq-text em {
    font-style: italic;
    color: var(--gold);
    font-weight: 600;
}

.aq-author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.aq-author-line {
    width: 22px;
    height: 1px;
    background: var(--gold);
}

.aq-author strong {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--dark);
}

.aq-author-role {
    font-size: 0.62rem;
    color: var(--gray);
}

.about-story {
    padding: 50px 0;
    background: var(--white);
}

.about-story .story-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: stretch;
}

.story-left {
    display: flex;
    flex-direction: column;
}

.story-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    flex: 1;
    min-height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.story-img-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--dark);
    z-index: 2;
}

.story-right { padding-top: 4px; }

.story-right .section-eyebrow {
    text-align: left;
    margin-bottom: 10px;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 14px;
}

.story-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.story-lead {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 2px solid var(--gold);
}

.story-right p {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 10px;
}

.story-right p strong { color: var(--dark); font-weight: 600; }

.story-meta-row {
    display: flex;
    gap: 22px;
    padding: 12px 0;
    margin: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.story-meta strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
}

.story-meta sup {
    font-size: 0.66rem;
    font-weight: 500;
    color: var(--gold);
    margin-left: 2px;
}

.story-meta span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 3px;
    display: block;
}

/* Timeline */
.about-timeline {
    padding: 40px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.tl-header {
    text-align: center;
    margin-bottom: 22px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
}

.tl-item {
    position: relative;
    padding: 14px 12px;
    border-right: 1px solid var(--border);
}

.tl-item:last-child { border-right: none; }

.tl-item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 30%;
    height: 2px;
    background: var(--gold);
}

.tl-item-now::before {
    background: var(--dark);
    width: 100%;
}

.tl-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 6px;
}

.tl-item-now .tl-year { color: var(--dark); }

.tl-item h3 {
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
    line-height: 1.2;
}

.tl-item p {
    font-family: var(--font-body);
    font-size: 0.64rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Stats */
.about-stats {
    padding: 28px 0;
    background: var(--dark);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.as-item {
    text-align: left;
    padding: 4px 18px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.as-item:first-child { padding-left: 0; }
.as-item:last-child { border-right: none; padding-right: 0; }

.as-item strong {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
}

.as-item sup {
    font-size: 0.6rem;
    font-style: italic;
    color: var(--gold);
    margin-left: 2px;
}

.as-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 7px;
}

/* Values */
.about-values {
    padding: 50px 0;
    background: var(--white);
}

.av-header {
    text-align: center;
    margin-bottom: 22px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.value-card {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 18px 22px;
    transition: 0.3s ease;
}

.value-card:hover { background: var(--bg); }

.vc-num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 8px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.value-card p {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Founder */
.about-founder {
    padding: 50px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.founder-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-left { display: flex; flex-direction: column; }

.founder-portrait {
    position: relative;
    background: var(--bg);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.founder-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.fp-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 2.5px;
    z-index: 2;
}

.founder-right { padding-top: 4px; }

.founder-right .section-eyebrow {
    text-align: left;
    margin-bottom: 10px;
}

.founder-lead {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-style: italic;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 2px solid var(--gold);
}

.founder-right p {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 10px;
}

.founder-sites {
    margin: 14px 0;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.founder-sites-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.founder-sites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.founder-site {
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: 0.3s ease;
}

.founder-site:hover {
    border-color: var(--gold);
    background: var(--white);
}

.fs-name {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.fs-url {
    font-family: var(--font-body);
    font-size: 0.58rem;
    color: var(--gold);
    margin-top: 1px;
}

.founder-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    gap: 14px;
    flex-wrap: wrap;
}

.founder-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    font-style: italic;
}

.founder-info span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
}

.founder-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: var(--dark);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.founder-cta:hover { background: var(--gold); }

/* Responsive Anasayfa */
@media (max-width: 992px) {
    .hero { height: auto; min-height: 480px; padding: 100px 0 30px; }
    .hero-bg { width: 100%; opacity: 0.25; }
    .hero-inner { flex-direction: column; gap: 24px; }
    .hero-title { font-size: 2.2rem; }
    .hero-eyebrow { display: none; }
    .hero-stats-mid {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
        background: rgba(255,255,255,0.9);
        border-radius: 14px;
    }
    .hero-stats-mid .hero-stat-item {
        width: 50%;
        padding: 12px 14px;
        border-bottom: 1px solid var(--border);
        border-right: 1px solid var(--border);
        box-sizing: border-box;
    }
    .hero-stats-mid .hero-stat-item:nth-child(2n) { border-right: none; }
    .hero-stats-mid .hero-stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .regions-layout, .whyus-layout, .faq-layout { grid-template-columns: 1fr; }
    .testi-rating-bar { flex-wrap: wrap; gap: 14px; padding: 10px 14px; justify-content: center; }
    .trb-divider { display: none; }
    .testi-card { width: 280px; }
    .trust-logos { grid-template-columns: repeat(3, 1fr); }
    .cta-card { grid-template-columns: 1fr; min-height: auto; }
    .cta-visual { min-height: 200px; }
    .cta-content { padding: 28px 24px; }

    /* About */
    .about-story .story-grid, .founder-grid { grid-template-columns: 1fr; gap: 24px; }
    .founder-portrait { min-height: 300px; }
    .founder-left { align-items: center; }
    .timeline { grid-template-columns: repeat(3, 1fr); }
    .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .as-item:nth-child(3n) { border-right: none; }
    .as-item:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .founder-sites-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .services-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline, .about-stats-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats-grid { grid-template-columns: repeat(3, 1fr); }

    /* Mobilde section'lar arası boşluk azalt */
    .services, .process, .regions, .whyus, .testimonials, .trust, .faq-section {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    /* About sayfası mobil */
    .about-timeline, .about-stats, .about-values, .about-founder {
        padding: 20px 0 !important;
    }

    /* Overflow engelle (yatay kayma) */
    body, html { overflow-x: hidden; }

    /* Regions 2'li grid */
    .regions-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        border-top: none;
    }
    .r-row {
        padding: 10px 8px;
        border: 1px solid var(--border);
        border-radius: 8px;
        margin: 3px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .r-row-left { gap: 8px; }
    .r-num { font-size: 0.8rem; min-width: 20px; }
    .r-row h3 { font-size: 0.78rem; }
    .r-row-left > div span { font-size: 0.6rem; }
    .r-row svg { display: none; }
    .testi-card { width: 240px; }
    .trust-logos { grid-template-columns: repeat(2, 1fr); }
    .as-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .founder-sites-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================ */
/* === BAKIM PAKETLERİ === */
/* ============================================ */

/* Tüm Paketler Grid */
.bakim-packages {
    padding: 24px 0 36px;
    background: var(--white);
}

.bp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.bp-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 16px 14px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--dark);
    transition: 0.3s ease;
}

.bp-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.bp-popular {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.bp-popular:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.bp-popular-badge {
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 10px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.bp-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.48rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.bp-popular .bp-tag { color: var(--gold); }

.bp-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.bp-popular .bp-title { color: var(--white); }

.bp-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.bp-popular .bp-price { border-bottom-color: rgba(255,255,255,0.15); }

.bp-price strong {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
}

.bp-popular .bp-price strong { color: var(--gold); }

.bp-price span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
}

.bp-popular .bp-price span { color: rgba(255,255,255,0.55); }

.bp-features {
    list-style: none;
    margin-bottom: 12px;
    flex: 1;
}

.bp-features li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 3px 0;
    font-family: var(--font-body);
    font-size: 0.64rem;
    color: var(--dark);
    line-height: 1.4;
}

.bp-popular .bp-features li { color: rgba(255,255,255,0.85); }

.bp-features li svg {
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
    width: 11px;
    height: 11px;
}

.bp-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: auto;
}

/* Bakım Paket Detay */
.bakim-detail {
    padding: 22px 0 36px;
    background: var(--white);
}

.bd-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
    align-items: flex-start;
}

.bd-content .section-eyebrow {
    text-align: left;
    margin-bottom: 6px;
}

.bd-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.bd-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.bd-lead {
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-style: italic;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.55;
    margin-bottom: 10px;
    padding-left: 12px;
    border-left: 2px solid var(--gold);
}

.bd-content > p {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 8px;
}

.bd-section {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.bd-section-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.bd-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 14px;
}

.bd-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: var(--dark);
    padding: 3px 0;
}

.bd-list li svg {
    stroke: var(--gold);
    flex-shrink: 0;
    width: 12px;
    height: 12px;
}

/* Fiyat kartı */
.bd-price-card {
    position: sticky;
    top: 130px;
    padding: 18px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.bd-popular {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.bd-popular-tag {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 10px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.bd-price-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.bd-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.bd-price strong {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
}

.bd-popular .bd-price strong { color: var(--gold); }

.bd-price span {
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: var(--gray);
}

.bd-popular .bd-price span { color: rgba(255,255,255,0.55); }

.bd-price-desc {
    font-family: var(--font-body);
    font-size: 0.62rem;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 11px;
    padding-bottom: 11px;
    border-bottom: 1px solid var(--border);
}

.bd-popular .bd-price-desc {
    color: rgba(255,255,255,0.6);
    border-bottom-color: rgba(255,255,255,0.15);
}

.bd-price-features {
    margin-bottom: 12px;
}

.bd-pf {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 0;
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: var(--dark);
}

.bd-popular .bd-pf { color: rgba(255,255,255,0.85); }

.bd-pf svg {
    stroke: var(--gold);
    flex-shrink: 0;
    width: 11px;
    height: 11px;
}

.bd-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 12px;
    background: #25D366;
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    margin-bottom: 5px;
    transition: 0.2s ease;
}

.bd-cta:hover { background: #1da851; }

.bd-cta-alt {
    display: block;
    text-align: center;
    padding: 7px 12px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--dark);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 600;
    transition: 0.2s ease;
}

.bd-popular .bd-cta-alt {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.bd-cta-alt:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* === ÖNCE / SONRA SLIDER === */
.ba-section {
    padding: 28px 0 36px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.ba-header {
    text-align: center;
    margin-bottom: 16px;
}

.ba-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 10px;
    cursor: ew-resize;
    user-select: none;
    --pos: 50%;
    background: var(--bg);
}

.ba-after,
.ba-before {
    position: absolute;
    inset: 0;
}

.ba-after img,
.ba-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    display: block;
}

.ba-before {
    clip-path: inset(0 calc(100% - var(--pos)) 0 0);
    -webkit-clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba-label {
    position: absolute;
    top: 14px;
    z-index: 3;
    padding: 5px 14px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
}

.ba-label-before {
    background: rgba(31,31,31,0.7);
    left: calc(var(--pos) / 2);
    transform: translateX(-50%);
}

.ba-label-after {
    background: rgba(198,164,108,0.85);
    left: calc(var(--pos) + (100% - var(--pos)) / 2);
    transform: translateX(-50%);
}

.ba-divider {
    position: absolute;
    top: 0;
    left: var(--pos);
    width: 2px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
    z-index: 4;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    color: var(--dark);
    pointer-events: auto;
    cursor: ew-resize;
}

.ba-handle svg { width: 12px; height: 12px; }

/* Responsive */
@media (max-width: 992px) {
    .bp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bd-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bd-price-card {
        position: static;
    }

    .bd-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .bp-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================ */
/* === İLETİŞİM SAYFASI - Kompakt === */
/* ============================================ */

.iletisim-hero {
    padding: 24px 0 32px;
    background: var(--white);
}

.ih-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
}

.ih-content .section-eyebrow {
    text-align: left;
    margin-bottom: 8px;
}

.ih-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.ih-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--gold);
}

.ih-desc {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Channels - Kompakt */
.ih-channels {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ih-channel {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--dark);
    transition: 0.3s ease;
}

.ih-channel:hover {
    border-color: var(--gold);
    transform: translateX(3px);
}

.ih-channel-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: transparent;
    color: var(--white);
}

.ih-channel-wa:hover {
    transform: translateX(3px) translateY(-1px);
    box-shadow: 0 8px 20px rgba(37,211,102,0.25);
}

.ih-channel-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--dark);
}

.ih-channel-icon svg { width: 16px; height: 16px; }

.ih-channel-wa .ih-channel-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.ih-channel:not(.ih-channel-wa) .ih-channel-icon svg { stroke: var(--gold); }

.ih-channel-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ih-channel-text small {
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--gold);
    margin-bottom: 2px;
}

.ih-channel-wa .ih-channel-text small { color: rgba(255,255,255,0.85); }

.ih-channel-text strong {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1px;
}

.ih-channel-wa .ih-channel-text strong { color: var(--white); }

.ih-channel-text span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
}

.ih-channel-wa .ih-channel-text span { color: rgba(255,255,255,0.75); }

.ih-channel-arrow {
    width: 26px;
    height: 26px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.ih-channel-arrow svg { width: 12px; height: 12px; }

.ih-channel-wa .ih-channel-arrow {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.ih-channel:hover .ih-channel-arrow {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.ih-channel-wa:hover .ih-channel-arrow {
    background: var(--white);
    border-color: var(--white);
    color: #25D366;
}

/* Form Card */
.ih-form-wrap {
    position: sticky;
    top: 130px;
}

.ih-form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.ih-form-head {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.ih-form-head .section-eyebrow {
    text-align: left;
    margin-bottom: 4px;
}

.ih-form-head h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 2px;
}

.ih-form-head h3 em { font-style: italic; color: var(--gold); }

.ih-form-head p {
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: var(--gray);
}

.ih-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ih-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ih-field {
    display: flex;
    flex-direction: column;
}

.ih-field label {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ih-field input,
.ih-field select,
.ih-field textarea {
    width: 100%;
    padding: 7px 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 7px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--dark);
    transition: 0.2s ease;
    resize: vertical;
}

.ih-field input:focus,
.ih-field select:focus,
.ih-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.ih-field textarea {
    min-height: 70px;
    line-height: 1.5;
    font-family: var(--font-body);
}

.ih-field input::placeholder,
.ih-field textarea::placeholder {
    color: var(--gray);
    font-size: 0.7rem;
}

.ih-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 14px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 2px;
}

.ih-submit:hover {
    background: var(--gold);
    transform: translateY(-1px);
}

.ih-form-note {
    font-family: var(--font-body);
    font-size: 0.56rem;
    color: var(--gray);
    text-align: center;
    margin-top: 2px;
}

/* HARİTA SECTION */
.iletisim-map {
    position: relative;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.ih-map-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
}

.ih-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    filter: grayscale(0.2) contrast(0.95);
}

.ih-address-card {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 16px 14px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    display: flex;
    gap: 11px;
}

.ih-address-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(198,164,108,0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.ih-address-icon svg { width: 16px; height: 16px; }

.ih-address-info { flex: 1; }

.ih-address-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ih-address-info h3 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 4px;
}

.ih-address-info p {
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 9px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--border);
}

.ih-address-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.ih-address-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: var(--dark);
    color: var(--white);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    transition: 0.2s ease;
}

.ih-address-btn:hover { background: var(--gold); }

.ih-address-btn svg { width: 11px; height: 11px; }

.ih-address-hours {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 0.56rem;
    color: var(--gray);
}

.ih-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray);
}

.ih-dot-active {
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
    animation: dotPulse 2s ease-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.2); }
    50% { box-shadow: 0 0 0 5px rgba(34,197,94,0.05); }
}

/* INFO BÖLÜM - 3 sütun küçük kart */
.iletisim-info {
    padding: 28px 0 36px;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.ii-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ii-card {
    padding: 16px 16px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: 0.3s ease;
}

.ii-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.ii-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--gold);
}

.ii-icon svg { width: 16px; height: 16px; }

.ii-card h4 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.ii-card p {
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 8px;
}

.ii-hours {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ii-hours li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 0.66rem;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border);
}

.ii-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.ii-hours li span { color: var(--gray); }
.ii-hours li strong { color: var(--dark); font-weight: 700; font-size: 0.7rem; }
.ii-emergency strong { color: var(--gold) !important; }

.ii-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    color: var(--gold);
}

.ii-link:hover { color: var(--dark); }

.ii-social { display: flex; gap: 5px; }

.ii-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: 0.2s ease;
}

.ii-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.ii-social svg { width: 12px; height: 12px; }

/* Responsive */
@media (max-width: 992px) {
    .ih-grid { grid-template-columns: 1fr; gap: 22px; }
    .ih-form-wrap { position: static; }
    .ii-grid { grid-template-columns: 1fr; }
    .ih-address-card {
        position: static;
        transform: none;
        width: 100%;
        margin: -50px auto 16px;
    }
    .ih-map-wrapper { height: 240px; }
    .ih-channels { gap: 8px; }
    .ih-channel { padding: 12px 14px; }
    .ih-channel-icon { width: 36px; height: 36px; min-width: 36px; }
    .ih-channel-text strong { font-size: 0.82rem; }
    .ih-channel-text small { font-size: 0.55rem; }
    .ih-channel-text span { font-size: 0.6rem; }
    .ih-form-card { padding: 18px; }
}

@media (max-width: 600px) {
    .ih-row { grid-template-columns: 1fr; }
    .iletisim-hero { padding: 20px 0; }
    .ih-grid { gap: 16px; }
    .ih-content h2 { font-size: 1.3rem; }
    .ih-channel { flex-direction: column; align-items: flex-start; gap: 8px; padding: 14px; }
    .ih-address-card {
        position: static;
        transform: none;
        padding: 16px;
        margin: 14px 0 0;
        width: 100%;
        border-radius: 12px;
    }
    .ih-map-wrapper { height: 220px; border-radius: 12px; overflow: hidden; }
    .ih-address-actions { flex-wrap: wrap; gap: 8px; }
}

/* ============================================ */
/* === BLOG SAYFASI === */
/* ============================================ */
.blog-section {
    padding: 30px 0 50px;
    background: var(--white);
}

/* Filtreler */
.blog-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.blog-filter {
    padding: 7px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gray);
    transition: 0.2s ease;
}

.blog-filter:hover {
    border-color: var(--gold);
    color: var(--dark);
}

.blog-filter.active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

/* Featured Post */
.blog-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 26px;
    margin-bottom: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
    transition: 0.3s ease;
}

.blog-featured:hover { transform: translateY(-2px); }

.bf-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}

.bf-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.blog-featured:hover .bf-img img {
    transform: scale(1.04);
}

.bf-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.bf-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bf-cat {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bf-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.blog-featured:hover .bf-title { color: var(--gold); }

.bf-content > p {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 14px;
}

.bf-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.bf-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: var(--gray);
}

.bf-meta svg {
    stroke: var(--gold);
}

.bf-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    transition: 0.2s ease;
}

.blog-featured:hover .bf-link {
    color: var(--dark);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.bg-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.bg-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.bg-img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.bg-img {
    width: 100%;
    height: 100%;
}

.bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.bg-card:hover .bg-img img {
    transform: scale(1.05);
}

.bg-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bg-body {
    padding: 14px 16px 16px;
}

.bg-body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 6px;
}

.bg-body h3 a {
    transition: 0.2s ease;
}

.bg-body h3 a:hover {
    color: var(--gold);
}

.bg-body p {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.bg-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.64rem;
    color: var(--gray);
}

.bg-dot {
    width: 3px;
    height: 3px;
    background: var(--border);
    border-radius: 50%;
}

.blog-more {
    text-align: center;
    margin-top: 26px;
}

/* Responsive */
@media (max-width: 992px) {
    .cc-grid { grid-template-columns: repeat(2, 1fr); }
    .cm-grid { grid-template-columns: 1fr; gap: 26px; }
    .cm-row { grid-template-columns: 1fr; }
    .blog-featured { grid-template-columns: 1fr; gap: 18px; }
    .bf-title { font-size: 1.4rem; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .cc-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .cm-actions { flex-direction: column; align-items: stretch; }
}


/* === Önce/Sonra Kart Grid === */
.ba-grid-section {
    padding: 28px 0 40px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.ba-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
    transition: 0.3s ease;
}

.ba-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.ba-card-head {
    margin-bottom: 10px;
}

.ba-card-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ba-card-tag-pop {
    color: var(--white);
    background: var(--gold);
    padding: 2px 8px;
    border-radius: 50px;
}

.ba-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.ba-slider-mini {
    aspect-ratio: 16 / 11;
    border-radius: 8px;
}

.ba-mini-label {
    position: absolute;
    top: 10px;
    z-index: 3;
    padding: 3px 9px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
}

.ba-slider-mini .ba-mini-before {
    background: rgba(31,31,31,0.7);
    left: calc(var(--pos) / 2);
    transform: translateX(-50%);
}

.ba-slider-mini .ba-mini-after {
    background: rgba(198,164,108,0.85);
    left: calc(var(--pos) + (100% - var(--pos)) / 2);
    transform: translateX(-50%);
}

.ba-slider-mini .ba-handle {
    width: 26px;
    height: 26px;
}

@media (max-width: 600px) {
    .ba-grid { grid-template-columns: 1fr; }
}


/* Regions - Ek özellikler */
.regions-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
}

.rf-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--dark);
}

.rf-item svg { stroke: var(--gold); flex-shrink: 0; }

/* Mini bölge etiketleri */
.regions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.region-tag {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--gray);
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: 0.2s ease;
    cursor: default;
}

.region-tag:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}


/* ============================================ */
/* === HİZMET BÖLGELERİMİZ - Detay Sayfası === */
/* ============================================ */

/* Stats */
.bolge-stats {
    padding: 24px 0;
    background: var(--dark);
}

.bs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.bs-item {
    text-align: center;
    padding: 4px 16px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.bs-item:last-child { border-right: none; }

.bs-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.bs-item sup {
    font-size: 0.6rem;
    color: var(--gold);
    font-style: italic;
    margin-left: 2px;
}

.bs-item span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

/* Bölge Kart Listesi */
.bolge-list {
    padding: 36px 0;
    background: var(--white);
}

.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.bl-card {
    position: relative;
    padding: 18px 16px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: 0.3s ease;
}

.bl-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.bl-card-pop {
    background: var(--bg);
    border-color: var(--gold);
}

.bl-pop {
    position: absolute;
    top: -8px;
    right: 14px;
    padding: 3px 10px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.bl-num {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 6px;
}

.bl-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 4px;
}

.bl-ilce {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 0.62rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.bl-ilce svg { stroke: var(--gold); }

.bl-card p {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.bl-services {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.bl-svc {
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(198,164,108,0.08);
    padding: 3px 8px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.bl-actions {
    display: flex;
    gap: 6px;
}

.bl-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 10px;
    border-radius: 7px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    transition: 0.2s ease;
}

.bl-btn-wa {
    background: #25D366;
    color: var(--white);
}

.bl-btn-wa:hover { background: #1da851; }

.bl-btn-tel {
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--dark);
}

.bl-btn-tel:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

/* Hizmetler Tablo */
.bolge-services {
    padding: 36px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.bsv-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: flex-start;
}

.bsv-content .section-eyebrow {
    text-align: left;
    margin-bottom: 8px;
}

.bsv-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 14px;
}

.bsv-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.5;
    padding: 4px 0;
}

.bsv-list li strong {
    color: var(--dark);
    font-weight: 700;
    margin-right: 3px;
}

.bsv-list li svg {
    stroke: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.bsv-card {
    padding: 20px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
    position: sticky;
    top: 130px;
}

.bsv-card-icon {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 12px;
}

.bsv-card-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.bsv-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 6px;
}

.bsv-card p {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 12px;
}

.bsv-card-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 0;
    margin-bottom: 12px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bsv-card-meta strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.bsv-card-meta span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
    margin-top: 2px;
    display: block;
    letter-spacing: 0.3px;
}

/* SEO Odaklı İçerik */
.bolge-seo {
    padding: 36px 0 50px;
    background: var(--white);
}

.bse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 32px;
}

.bse-block h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.bse-block p {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gray);
    line-height: 1.75;
}

.bse-block p strong { color: var(--dark); font-weight: 600; }

.bse-block p a {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px dashed var(--gold);
}

.bse-block p a:hover { color: var(--dark); }

/* Responsive */
@media (max-width: 992px) {
    .bs-grid { grid-template-columns: repeat(2, 1fr); }
    .bs-item:nth-child(2n) { border-right: none; }
    .bs-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 14px; }
    .bs-item:nth-last-child(-n+2) { padding-top: 14px; }
    .bl-grid { grid-template-columns: repeat(2, 1fr); }
    .bsv-grid { grid-template-columns: 1fr; }
    .bsv-card { position: static; }
    .bsv-list { grid-template-columns: 1fr; }
    .bse-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .bs-grid { grid-template-columns: 1fr; }
    .bs-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .bl-grid { grid-template-columns: 1fr; }
}


/* ============================================ */
/* === BLOG SAYFASI - Liste + Sidebar === */
/* ============================================ */

.blog-section {
    padding: 24px 0 36px;
    background: var(--white);
}

.blog-filters {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.blog-filter {
    padding: 6px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray);
    transition: 0.2s ease;
}

.blog-filter:hover { border-color: var(--gold); color: var(--dark); }

.blog-filter.active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

/* Featured */
.blog-featured {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 22px;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
    color: var(--dark);
    transition: 0.3s ease;
}

.blog-featured:hover { transform: translateY(-2px); }

.bf-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.bf-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s ease; }
.blog-featured:hover .bf-img img { transform: scale(1.04); }

.bf-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.bf-content { display: flex; flex-direction: column; justify-content: center; }

.bf-cat {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bf-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.blog-featured:hover .bf-title { color: var(--gold); }

.bf-content > p {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 12px;
}

.bf-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.bf-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
}

.bf-meta svg { stroke: var(--gold); }

.bf-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--gold);
}

.blog-featured:hover .bf-link { color: var(--dark); }

/* Layout: Grid + Sidebar */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 28px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bg-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

.bg-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.bg-img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.bg-img { width: 100%; height: 100%; }
.bg-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s ease; }
.bg-card:hover .bg-img img { transform: scale(1.04); }

.bg-cat {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 9px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.bg-body { padding: 12px 14px 14px; }

.bg-body h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 5px;
}

.bg-body h3 a { transition: 0.2s ease; }
.bg-body h3 a:hover { color: var(--gold); }

.bg-body p {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 8px;
}

.bg-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
}

.bg-dot { width: 3px; height: 3px; background: var(--border); border-radius: 50%; }

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bs-widget {
    padding: 14px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.bs-widget h4 {
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

/* Arama */
.bs-search {
    display: flex;
    gap: 5px;
}

.bs-search input {
    flex: 1;
    padding: 7px 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--dark);
    transition: 0.2s ease;
}

.bs-search input:focus { outline: none; border-color: var(--gold); background: var(--white); }

.bs-search button {
    padding: 7px 10px;
    background: var(--dark);
    border: none;
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bs-search button:hover { background: var(--gold); }

/* Kategoriler */
.bs-cats { list-style: none; }

.bs-cats li { margin-bottom: 4px; }

.bs-cats a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--dark);
    transition: 0.2s ease;
}

.bs-cats a:hover { background: var(--bg); color: var(--gold); }

.bs-cats a.active {
    background: var(--gold);
    color: var(--white);
}

.bs-cats em {
    font-style: normal;
    font-size: 0.6rem;
    color: var(--gray);
    font-weight: 700;
}

.bs-cats a.active em { color: rgba(255,255,255,0.85); }

/* Popüler */
.bs-popular { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.bs-popular a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

.bs-popular li:last-child a { border-bottom: none; padding-bottom: 0; }

.bs-popular a:hover .bsp-text strong { color: var(--gold); }

.bsp-img {
    width: 50px;
    height: 38px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.bsp-img img { width: 100%; height: 100%; object-fit: cover; }

.bsp-text { flex: 1; min-width: 0; }

.bsp-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 2px;
    transition: 0.2s ease;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bsp-text span {
    font-family: var(--font-body);
    font-size: 0.58rem;
    color: var(--gray);
}

/* Etiketler */
.bs-tags { display: flex; flex-wrap: wrap; gap: 4px; }

.bs-tag {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--gray);
    background: var(--bg);
    padding: 3px 9px;
    border-radius: 50px;
    border: 1px solid var(--border);
    transition: 0.2s ease;
    cursor: default;
}

.bs-tag:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* CTA Widget */
.bs-widget-cta {
    background: var(--dark);
    border-color: var(--dark);
}

.bs-widget-cta h4 { color: var(--white); border-bottom-color: rgba(255,255,255,0.1); }

.bs-widget-cta p {
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin-bottom: 10px;
}

/* ============================================ */
/* === BLOG POST DETAY SAYFASI === */
/* ============================================ */

.blog-post-banner {
    padding: 18px 0 0;
    background: var(--bg);
}

.blog-post {
    padding: 18px 0 40px;
    background: var(--white);
}

.bp-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.bp-cat {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bp-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.bp-excerpt {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    font-style: italic;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 16px;
}

.bp-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bp-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bp-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark), var(--gold));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.66rem;
    font-weight: 700;
    font-style: italic;
}

.bp-author > div strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.bp-author > div em {
    font-style: normal;
    font-size: 0.58rem;
    color: var(--gray);
}

.bp-divider {
    width: 1px;
    height: 18px;
    background: var(--border);
}

.bp-date,
.bp-read {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    color: var(--gray);
}

.bp-date svg,
.bp-read svg { stroke: var(--gold); }

.bp-img {
    max-width: 900px;
    margin: 0 auto 24px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.bp-img img { width: 100%; height: 100%; object-fit: cover; }

.bp-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    max-width: 1080px;
    margin: 0 auto;
}

.bp-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin: 22px 0 10px;
}

.bp-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 18px 0 8px;
}

.bp-content p {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--dark);
    line-height: 1.85;
    margin-bottom: 12px;
}

.bp-content p strong { font-weight: 700; }

.bp-content a {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px dashed var(--gold);
    transition: 0.2s ease;
}

.bp-content a:hover { color: var(--dark); border-bottom-color: var(--dark); }

.bp-content ul, .bp-content ol {
    margin: 0 0 12px 20px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--dark);
    line-height: 1.85;
}

.bp-content li { margin-bottom: 4px; }

/* Tags & Share */
.bp-tags {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.bp-tags strong {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--dark);
    margin-right: 4px;
}

.bp-share {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.bp-share strong {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--dark);
    margin-right: 6px;
}

.bp-share-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: 0.2s ease;
}

.bp-share-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* Yazar Kart */
.bp-author-card {
    margin-top: 22px;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    gap: 12px;
}

.bp-avatar-lg {
    width: 50px;
    height: 50px;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.bp-author-card > div { flex: 1; }

.bp-author-card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    font-style: italic;
}

.bp-author-card em {
    display: block;
    font-style: normal;
    font-size: 0.62rem;
    color: var(--gray);
    margin-bottom: 6px;
}

.bp-author-card p {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 6px;
}

.bp-author-card a {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
}

/* Sidebar (post sayfası) */
.bp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 130px;
}

/* Önceki/Sonraki Nav */
.bp-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.bp-nav-item {
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: 0.2s ease;
    color: var(--dark);
}

.bp-nav-item:hover {
    border-color: var(--gold);
    background: var(--white);
}

.bp-nav-prev { text-align: left; }
.bp-nav-next { text-align: right; }

.bp-nav-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.bp-nav-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-featured { grid-template-columns: 1fr; gap: 16px; }
    .bf-title { font-size: 1.2rem; }
    .bp-layout { grid-template-columns: 1fr; }
    .bp-sidebar { position: static; }
    .bp-title { font-size: 1.4rem; }
}

@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
    .bp-nav { grid-template-columns: 1fr; }
}


/* ===== BLOG FAQ STYLES ===== */
.bp-faq {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.bp-faq h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.bp-faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: 0.2s ease;
}

.bp-faq-item[open] {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(198,164,108,0.08);
}

.bp-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    list-style: none;
    gap: 10px;
}

.bp-faq-item summary::-webkit-details-marker { display: none; }

.bp-faq-item summary span:first-child {
    flex: 1;
}

.bp-faq-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--gold);
    flex-shrink: 0;
    transition: 0.2s ease;
}

.bp-faq-item[open] .bp-faq-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: rotate(45deg);
}

.bp-faq-content {
    padding: 0 16px 14px;
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gray);
    line-height: 1.7;
}

.bp-faq-content p {
    margin: 0;
}

.bp-faq-content a {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px dashed var(--gold);
}

.bp-faq-content a:hover {
    color: var(--dark);
}


/* ===== LOKASYON SAYFALARI (Local SEO) ===== */
.lokasyon-hero {
    padding: 40px 0 32px;
    text-align: center;
}

.lok-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 4px 12px;
    border: 1px solid var(--gold);
    border-radius: 20px;
}

.lokasyon-hero h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.lok-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 18px;
    line-height: 1.6;
}

.lok-cta-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hizmetler Grid */
.lokasyon-services {
    padding: 32px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.lokasyon-services h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 20px;
}

.lok-srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.lok-srv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 16px;
    transition: 0.2s ease;
}

.lok-srv-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(198,164,108,0.08);
}

.lok-srv-card h3 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.lok-srv-card p {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.6;
}

.lok-srv-card a { color: var(--gold); font-weight: 600; }

/* Lokasyon Fiyat Grid */
.lokasyon-pricing {
    padding: 32px 0;
}

.lokasyon-pricing h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 20px;
}

.lok-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.lok-price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    position: relative;
    transition: 0.2s ease;
}

.lok-price-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(198,164,108,0.08);
}

.lok-popular {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(198,164,108,0.03) 0%, var(--white) 100%);
}

.lok-pop-badge {
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.lok-price-card h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.lok-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.lok-price small {
    font-size: 0.6rem;
    color: var(--gray);
    font-weight: 400;
}

.lok-price-card p {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.lok-price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 10px;
}

.lok-price-card ul li {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--dark);
    padding: 3px 0;
    border-bottom: 1px solid var(--border);
}

.lok-price-card ul li:last-child { border: none; }

.lok-price-card > a {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
}

/* Lokasyon Why */
.lokasyon-why {
    padding: 32px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.lokasyon-why h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 18px;
}

.lok-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.lok-why-item {
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.lok-why-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.lok-why-item p {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Lokasyon FAQ */
.lokasyon-faq {
    padding: 32px 0;
}

.lokasyon-faq h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 16px;
}

/* Diğer Bölgeler */
.lokasyon-others {
    padding: 28px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.lokasyon-others h2 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 14px;
}

.lok-others-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.lok-other-link {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--dark);
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: 0.2s ease;
}

.lok-other-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(198,164,108,0.04);
}

/* Lokasyon Responsive */
@media (max-width: 992px) {
    .lok-srv-grid { grid-template-columns: repeat(2, 1fr); }
    .lok-price-grid { grid-template-columns: repeat(2, 1fr); }
    .lok-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .lok-srv-grid { grid-template-columns: 1fr; }
    .lok-price-grid { grid-template-columns: 1fr; }
    .lok-why-grid { grid-template-columns: 1fr; }
    .lokasyon-hero h1 { font-size: 1.3rem; }
}


/* ===== 404 PAGE ===== */
.page404 {
    padding: 60px 0 80px;
    text-align: center;
}

.p404-num {
    font-family: var(--font-heading);
    font-size: 7rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 6px;
}

.p404-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.p404-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 22px;
}

.p404-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.p404-links {
    max-width: 380px;
    margin: 0 auto;
    text-align: left;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 22px;
}

.p404-links h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.p404-links ul {
    list-style: none;
}

.p404-links ul li {
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}

.p404-links ul li:last-child { border: none; }

.p404-links ul li a {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gold);
    font-weight: 500;
}

.p404-links ul li a:hover { color: var(--dark); }

/* ===== GALERİ ===== */
.galeri-section {
    padding: 32px 0 50px;
}

.galeri-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 22px;
}

.gal-filter {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--dark);
    padding: 7px 16px;
    border-radius: 22px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
}

.gal-filter:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gal-filter.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.galeri-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.galeri-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.gal-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg);
}

.gal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.galeri-item:hover .gal-img img { transform: scale(1.05); }

.gal-info {
    padding: 12px 14px;
}

.gal-info h3 {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.gal-info span {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 992px) { .galeri-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .galeri-grid { grid-template-columns: 1fr; } }


/* ===== SSS PAGE ===== */
.sss-section {
    padding: 32px 0 50px;
}

.sss-cat {
    margin-bottom: 28px;
}

.sss-cat h2 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

/* ===== STICKY MOBILE CTA ===== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 8px;
    gap: 6px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}

.mobile-sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    transition: 0.2s ease;
}

.ms-cta-tel {
    background: var(--dark);
    color: var(--white);
}

.ms-cta-wa {
    background: #25D366;
    color: var(--white);
    font-weight: 700;
}

.ms-cta-wa svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

@media (max-width: 768px) {
    .mobile-sticky-cta { display: flex; }
    body { padding-bottom: 56px; }
}

/* ===== LOKASYON SEO CONTENT ===== */
.lokasyon-seo-content {
    padding: 36px 0;
}

.lok-article {
    max-width: 880px;
    margin: 0 auto;
}

.lok-article h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 24px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.lok-article h2:first-child { margin-top: 0; }

.lok-article h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin: 16px 0 6px;
}

.lok-article p {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 10px;
}

.lok-article p strong { color: var(--dark); }

.lok-article a {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px dashed var(--gold);
}

.lok-article a:hover { color: var(--dark); }

.lok-article ul, .lok-article ol {
    margin: 8px 0 14px 18px;
}

.lok-article li {
    font-family: var(--font-body);
    font-size: 0.76rem;
    color: var(--gray);
    line-height: 1.7;
    padding: 3px 0;
}

.lok-article li strong { color: var(--dark); }


/* ===== BLOG TOC + SNIPPET BOX ===== */
.bp-toc {
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: 14px 18px;
    margin: 0 0 22px;
}

.bp-toc-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.bp-toc ol {
    list-style: decimal;
    padding-left: 18px;
    margin: 0;
}

.bp-toc ol li {
    padding: 3px 0;
}

.bp-toc ol li a {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gold);
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

.bp-toc ol li a:hover {
    color: var(--dark);
    text-decoration: underline;
}

.bp-snippet {
    background: linear-gradient(135deg, rgba(198,164,108,0.08) 0%, rgba(198,164,108,0.03) 100%);
    border: 1px solid rgba(198,164,108,0.3);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    padding: 12px 16px;
    margin: 0 0 18px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--dark);
    line-height: 1.7;
}

.bp-snippet strong {
    color: var(--gold);
    font-weight: 700;
    margin-right: 4px;
}

/* Footer 6 col layout */
@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.6fr 1fr 1.2fr 1fr 1.2fr 1fr;
    }
}


/* ========================================================
   BLOG v2 — Premium Magazine Tasarım
   ======================================================== */

/* Hero */
.blogv2-hero {
    padding: 36px 0 22px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--border);
}

.blogv2-crumb {
    display: flex;
    gap: 6px;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--gray);
    margin-bottom: 14px;
}

.blogv2-crumb a {
    color: var(--gray);
    transition: 0.2s ease;
}

.blogv2-crumb a:hover { color: var(--gold); }
.blogv2-crumb span:last-child { color: var(--dark); font-weight: 500; }

.blogv2-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2.5px;
    margin-bottom: 10px;
    padding: 4px 12px;
    border: 1px solid var(--gold);
    border-radius: 20px;
}

.blogv2-h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.blogv2-lead {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.65;
    max-width: 680px;
    margin-bottom: 22px;
}

.blogv2-lead strong {
    color: var(--dark);
    font-weight: 600;
}

.blogv2-search {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 580px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 6px 6px 6px 16px;
    transition: 0.2s ease;
}

.blogv2-search:focus-within {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(198,164,108,0.1);
}

.blogv2-search > svg {
    color: var(--gray);
    flex-shrink: 0;
}

.blogv2-search input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--dark);
    background: transparent;
    padding: 10px 0;
}

.blogv2-search input::placeholder { color: var(--gray); }

.blogv2-search button {
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 9px 18px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.blogv2-search button:hover { background: var(--gold); }

/* Chips */
.blogv2-chips {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.95);
}

.bv2-chips-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.bv2-chips-row::-webkit-scrollbar { display: none; }

.bv2-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 7px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 22px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--dark);
    transition: 0.2s ease;
}

.bv2-chip em {
    font-style: normal;
    font-size: 0.6rem;
    color: var(--gray);
    background: var(--white);
    border-radius: 10px;
    padding: 2px 7px;
    font-weight: 600;
}

.bv2-chip:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.bv2-active {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.bv2-active em {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.bv2-active:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}


/* Featured Editorial */
.blogv2-featured {
    padding: 32px 0;
}

.bv2-feat {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.3s ease;
}

.bv2-feat:hover {
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.bv2-feat-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg);
}

.bv2-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.bv2-feat:hover .bv2-feat-img img { transform: scale(1.04); }

.bv2-feat-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 20px;
}

.bv2-feat-text {
    padding: 28px 32px 28px 0;
}

.bv2-feat-cat {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.bv2-feat-text h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.bv2-feat-text p {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 16px;
}

.bv2-feat-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--gray);
}

.bv2-feat-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bv2-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold), #B8966B);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bv2-feat-author > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.bv2-feat-author strong {
    font-size: 0.7rem;
    color: var(--dark);
    font-weight: 600;
}

.bv2-feat-author em {
    font-style: normal;
    font-size: 0.58rem;
    color: var(--gray);
}

.bv2-feat-divider {
    width: 3px;
    height: 3px;
    background: var(--border);
    border-radius: 50%;
}

.bv2-feat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    transition: 0.2s ease;
}

.bv2-feat:hover .bv2-feat-link { gap: 10px; }


/* Grid Section */
.blogv2-grid-section {
    padding: 24px 0 40px;
}

.bv2-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
}

.bv2-results-bar strong {
    color: var(--dark);
    font-weight: 600;
}

.bv2-page-info {
    color: var(--gold);
    font-weight: 500;
}

.bv2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 22px;
}

.bv2-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.bv2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.bv2-card:hover::before { opacity: 1; }

.bv2-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(31,31,31,0.08), 0 4px 12px rgba(198,164,108,0.08);
}

.bv2-card-lg {
    grid-column: span 2;
    grid-row: span 2;
    flex-direction: row;
}

.bv2-card-lg .bv2-card-img {
    flex: 1.2;
    aspect-ratio: auto;
    min-height: 100%;
}

.bv2-card-lg .bv2-card-body {
    flex: 1;
    padding: 28px 30px;
    justify-content: center;
}

.bv2-card-lg h3 {
    font-size: 1.35rem !important;
    margin-bottom: 12px !important;
}

.bv2-card-lg p {
    font-size: 0.78rem !important;
    -webkit-line-clamp: 4;
}

.bv2-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg);
    display: block;
}

.bv2-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.bv2-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bv2-card:hover .bv2-card-img img { transform: scale(1.08); }

.bv2-card-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.96);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.bv2-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bv2-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
    margin-bottom: 9px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-weight: 500;
}

.bv2-dot {
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
}

.bv2-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.28;
    margin-bottom: 9px;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bv2-card-body h3 a {
    color: var(--dark);
    transition: color 0.2s ease;
    background: linear-gradient(currentColor, currentColor) no-repeat right bottom / 0 1px;
    transition: background-size 0.3s ease;
}

.bv2-card-body h3 a:hover {
    color: var(--gold);
    background-size: 100% 1px;
    background-position: left bottom;
}

.bv2-card-body p {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bv2-card-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: auto;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.bv2-card-more:hover {
    gap: 12px;
    color: var(--dark);
}

/* Empty state */
.bv2-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.bv2-empty svg {
    color: var(--border);
    margin-bottom: 14px;
}

.bv2-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.bv2-empty p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    margin-bottom: 18px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


/* Pagination */
.bv2-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.bv2-pg-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark);
    transition: 0.2s ease;
}

.bv2-pg-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(198,164,108,0.04);
}

.bv2-pg-numbers {
    display: flex;
    gap: 4px;
    align-items: center;
}

.bv2-pg-num {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark);
    background: transparent;
    transition: 0.2s ease;
}

.bv2-pg-num:hover {
    background: var(--bg);
    color: var(--gold);
}

.bv2-pg-active {
    background: var(--dark);
    color: var(--white);
}

.bv2-pg-active:hover {
    background: var(--gold);
    color: var(--white);
}

.bv2-pg-dots {
    color: var(--gray);
    padding: 0 4px;
    font-size: 0.7rem;
}

/* Tags Cloud */
.blogv2-tags-cloud {
    padding: 32px 0 50px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.bv2-tags-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 18px;
}

.bv2-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 980px;
    margin: 0 auto;
}

.bv2-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--dark);
    transition: 0.2s ease;
}

.bv2-tag em {
    font-style: normal;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(198,164,108,0.1);
    border-radius: 9px;
    padding: 1px 6px;
}

.bv2-tag:hover {
    border-color: var(--gold);
    background: rgba(198,164,108,0.04);
    color: var(--gold);
}

/* Responsive */
@media (max-width: 992px) {
    .bv2-grid { grid-template-columns: repeat(2, 1fr); }
    .bv2-card-lg { grid-column: span 2; flex-direction: column; }
    .bv2-card-lg .bv2-card-img { aspect-ratio: 16/10; }
    .bv2-card-lg h3 { font-size: 1rem !important; }
    .bv2-feat { grid-template-columns: 1fr; }
    .bv2-feat-text { padding: 22px; }
    .bv2-feat-text h2 { font-size: 1.25rem; }
    .blogv2-h1 { font-size: 1.6rem; }
}

@media (max-width: 600px) {
    .bv2-grid { grid-template-columns: 1fr; }
    .bv2-card-lg { grid-column: span 1; }
    .blogv2-h1 { font-size: 1.4rem; }
    .blogv2-search button { padding: 9px 12px; font-size: 0.65rem; }
    .bv2-pagination { flex-wrap: wrap; gap: 10px; }
    .bv2-pg-btn { padding: 8px 12px; font-size: 0.65rem; }
}


/* ===== BLOG YAZAR KARTI v2 (Ali Kotan resimli) ===== */
.bp-author-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    margin-top: 24px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.bp-author-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.bp-author-img {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    background: var(--white);
    position: relative;
}

.bp-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
}

.bp-author-info {
    flex: 1;
    padding-top: 4px;
}

.bp-author-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 2px;
}

.bp-author-info em {
    display: block;
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.62rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bp-author-info p {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 10px;
}

.bp-author-info a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: gap 0.25s ease;
}

.bp-author-info a:hover { gap: 10px; color: var(--dark); }

/* Avatar img desteği (eski .bp-avatar ve yeni .bv2-avatar için) */
.bp-avatar img,
.bv2-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
}

.bp-avatar {
    overflow: hidden;
    background: var(--bg);
    padding: 0;
    border: 2px solid var(--gold);
}

.bv2-avatar {
    padding: 0;
    overflow: hidden;
    background: var(--white);
    border: 2px solid var(--gold);
}

/* Mobile yazar kart */
@media (max-width: 600px) {
    .bp-author-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .bp-author-card::before {
        width: 100%;
        height: 4px;
    }
    .bp-author-info { padding-top: 0; }
}


/* ========================================================
   BLOG v3 — Editorial Premium (Yenilenmiş)
   ======================================================== */

/* HERO */
.blogv3-hero {
    padding: 32px 0 28px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.blogv3-crumb {
    display: flex;
    gap: 6px;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.62rem;
    color: var(--gray);
    margin-bottom: 22px;
    letter-spacing: 0.4px;
}

.blogv3-crumb a {
    color: var(--gray);
    transition: 0.2s ease;
}

.blogv3-crumb a:hover { color: var(--gold); }
.blogv3-crumb span:last-child { color: var(--dark); font-weight: 500; }

.blogv3-hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: end;
}

.blogv3-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 12px;
    padding: 4px 0;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.blogv3-h1 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.08;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.blogv3-lead {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 640px;
}

.blogv3-lead strong {
    color: var(--dark);
    font-weight: 600;
}

.blogv3-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px 6px 6px 14px;
    transition: 0.25s ease;
}

.blogv3-search:focus-within {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 6px 18px rgba(198,164,108,0.1);
}

.blogv3-search > svg { color: var(--gray); flex-shrink: 0; }

.blogv3-search input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--dark);
    background: transparent;
    padding: 9px 0;
}

.blogv3-search input::placeholder { color: var(--gray); }

.blogv3-search button {
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    letter-spacing: 0.4px;
}

.blogv3-search button:hover { background: var(--gold); }

/* CATEGORIES BAR */
.blogv3-cats {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.92);
}

.bv3-cats-row {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.bv3-cats-row::-webkit-scrollbar { display: none; }

.bv3-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 9px 16px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gray);
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.bv3-cat em {
    font-style: normal;
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--gray);
    opacity: 0.6;
}

.bv3-cat:hover {
    color: var(--dark);
    background: var(--bg);
}

.bv3-active {
    color: var(--dark);
    font-weight: 700;
}

.bv3-active em {
    color: var(--gold);
    opacity: 1;
}

.bv3-active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}


/* FEATURED v3 */
.blogv3-featured {
    padding: 36px 0 8px;
}

.bv3-section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.56rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 28px;
}

.bv3-section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.bv3-feat {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.35s ease;
}

.bv3-feat:hover {
    border-color: var(--dark);
    box-shadow: 0 24px 60px rgba(31,31,31,0.08);
}

.bv3-feat-img {
    aspect-ratio: 5/4;
    overflow: hidden;
    background: var(--bg);
    position: relative;
}

.bv3-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bv3-feat:hover .bv3-feat-img img { transform: scale(1.05); }

.bv3-feat-text {
    padding: 38px 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bv3-feat-cat {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    align-self: flex-start;
    padding: 4px 12px;
    background: rgba(198,164,108,0.08);
    border-radius: 4px;
}

.bv3-feat-text h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.bv3-feat-text p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 22px;
}

.bv3-feat-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.bv3-feat-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bv3-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    background: var(--white);
    flex-shrink: 0;
}

.bv3-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    display: block;
}

.bv3-feat-author > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.bv3-feat-author strong {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dark);
}

.bv3-feat-author em {
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
}

.bv3-feat-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 9px 14px;
    background: var(--bg);
    border-radius: 8px;
    transition: all 0.25s ease;
}

.bv3-feat:hover .bv3-feat-link {
    background: var(--gold);
    color: var(--white);
    gap: 11px;
}


/* GRID v3 */
.blogv3-grid-section {
    padding: 36px 0 50px;
}

.bv3-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--dark);
}

.bv3-section-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.4px;
    line-height: 1;
}

.bv3-page-info {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
}

.bv3-page-info strong {
    color: var(--dark);
    font-weight: 700;
}

.bv3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 22px;
}

.bv3-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bv3-card:hover {
    border-color: var(--dark);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(31,31,31,0.06);
}

.bv3-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg);
    display: block;
}

.bv3-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bv3-card:hover .bv3-card-img img { transform: scale(1.06); }

.bv3-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--white);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.bv3-card-body {
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bv3-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
    margin-bottom: 10px;
    letter-spacing: 0.4px;
}

.bv3-dot {
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
}

.bv3-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.28;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.bv3-card-body h3 a {
    color: var(--dark);
    transition: color 0.2s ease;
}

.bv3-card-body h3 a:hover { color: var(--gold); }

.bv3-card-body p {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bv3-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.bv3-card-author {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--gray);
    font-weight: 500;
}

.bv3-card-author img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 1px solid var(--gold);
    flex-shrink: 0;
}

.bv3-card-arrow {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 50%;
    color: var(--dark);
    transition: all 0.25s ease;
}

.bv3-card-arrow:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateX(2px);
}

/* Empty */
.bv3-empty {
    text-align: center;
    padding: 80px 20px;
}

.bv3-empty svg {
    color: var(--border);
    margin-bottom: 16px;
}

.bv3-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.bv3-empty p {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 22px;
}


/* PAGINATION v3 */
.bv3-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.bv3-pg-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--dark);
    transition: 0.2s ease;
}

.bv3-pg-btn:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: var(--white);
}

.bv3-pg-numbers {
    display: flex;
    gap: 4px;
    align-items: center;
}

.bv3-pg-num {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dark);
    background: transparent;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.bv3-pg-num:hover {
    background: var(--bg);
    border-color: var(--border);
}

.bv3-pg-active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.bv3-pg-active:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* TAGS CLOUD v3 */
.blogv3-tags-cloud {
    padding: 44px 0 56px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.blogv3-tags-cloud .bv3-section-label {
    display: block;
    text-align: center;
    padding-left: 0;
}

.blogv3-tags-cloud .bv3-section-label::before { display: none; }

.bv3-tags-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.bv3-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.bv3-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--dark);
    transition: 0.2s ease;
}

.bv3-tag em {
    font-style: normal;
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(198,164,108,0.1);
    border-radius: 9px;
    padding: 1px 6px;
}

.bv3-tag:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: var(--white);
}

.bv3-tag:hover em {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

/* RESPONSIVE v3 */
@media (max-width: 992px) {
    .blogv3-hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .blogv3-h1 { font-size: 1.8rem; }
    .bv3-grid { grid-template-columns: repeat(2, 1fr); }
    .bv3-feat { grid-template-columns: 1fr; }
    .bv3-feat-text { padding: 28px; }
    .bv3-feat-text h2 { font-size: 1.35rem; }
}

@media (max-width: 600px) {
    .blogv3-h1 { font-size: 1.5rem; }
    .bv3-grid { grid-template-columns: 1fr; }
    .bv3-section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .bv3-pagination { flex-wrap: wrap; gap: 6px; }
    .bv3-pg-num, .bv3-pg-btn { min-width: 32px; height: 32px; font-size: 0.65rem; }
    .blogv3-search button { padding: 7px 10px; font-size: 0.62rem; }
    .bv3-feat-text { padding: 22px; }
    .bv3-feat-text h2 { font-size: 1.15rem; }
    .bv3-feat-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ===== GALERİ v2 (62 görsel + lightbox) ===== */
.galeri-stats {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.galeri-stats strong {
    color: var(--dark);
    font-weight: 700;
    font-size: 0.78rem;
}

.gal-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.galeri-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: 0.3s ease;
    position: relative;
}

.galeri-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    border-color: var(--gold);
}

.gal-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg);
    position: relative;
}

.gal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeri-item:hover .gal-img img { transform: scale(1.06); }

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31,31,31,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeri-item:hover .gal-overlay { opacity: 1; }

.gal-zoom {
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.85);
    transition: transform 0.3s ease;
}

.galeri-item:hover .gal-zoom { transform: scale(1); }

.gal-info {
    padding: 10px 12px 12px;
}

.gal-info h3 {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gal-info span {
    font-family: var(--font-body);
    font-size: 0.55rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Lightbox */
.gal-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20,20,20,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 40px 20px;
}

.gal-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.gal-lb-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
    position: relative;
}

.gal-lb-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gal-lb-caption {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-top: 18px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.gal-lb-close,
.gal-lb-prev,
.gal-lb-next {
    position: absolute;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
    backdrop-filter: blur(8px);
}

.gal-lb-close {
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
}

.gal-lb-prev,
.gal-lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    padding: 0;
}

.gal-lb-prev { left: 24px; }
.gal-lb-next { right: 24px; }

.gal-lb-close:hover,
.gal-lb-prev:hover,
.gal-lb-next:hover {
    background: var(--gold);
    transform: scale(1.05);
}

.gal-lb-prev:hover,
.gal-lb-next:hover { transform: translateY(-50%) scale(1.05); }

/* Responsive */
@media (max-width: 992px) {
    .galeri-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
@media (max-width: 600px) {
    .galeri-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gal-info h3 { font-size: 0.7rem; }
    .gal-lb-prev, .gal-lb-next { width: 40px; height: 40px; font-size: 1.5rem; }
    .gal-lb-prev { left: 8px; }
    .gal-lb-next { right: 8px; }
}


/* ===== COOKIE / KVKK BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    z-index: 9998;
    padding: 14px 18px;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-inner {
    display: flex;
    gap: 14px;
    align-items: center;
}

.cookie-icon {
    width: 38px;
    height: 38px;
    background: var(--bg);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 0;
}

.cookie-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.cookie-text p {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--gold);
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.cookie-btn-reject:hover {
    background: var(--bg);
    border-color: var(--gray);
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 70px;
        left: 12px;
        right: 12px;
        padding: 12px 14px;
    }
    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .cookie-icon { display: none; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; }
}


/* ===== GOOGLE REVIEWS WIDGET ===== */
.g-reviews-section {
    padding: 50px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.g-rev-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 24px;
}

.g-rev-logo {
    width: 48px;
    height: 48px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.g-rev-meta {
    flex: 1;
    min-width: 0;
}

.g-rev-meta strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.g-rev-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.g-rev-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FBBC05;
}

.g-rev-stars {
    display: inline-flex;
    gap: 1px;
}

.g-rev-count {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--gray);
}

.g-rev-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 600;
    color: var(--dark);
    transition: 0.2s ease;
    white-space: nowrap;
}

.g-rev-link:hover {
    background: #4285F4;
    border-color: #4285F4;
    color: var(--white);
}

.g-rev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.g-rev-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    transition: 0.2s ease;
}

.g-rev-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.g-rev-head-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.g-rev-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}

.g-rev-head-mini > div {
    flex: 1;
    min-width: 0;
    line-height: 1.3;
}

.g-rev-head-mini strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dark);
}

.g-rev-head-mini em {
    font-style: normal;
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gray);
}

.g-rev-stars-sm {
    display: inline-flex;
    gap: 1px;
}

.g-rev-card p {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.g-rev-cta {
    text-align: center;
}

@media (max-width: 992px) {
    .g-rev-grid { grid-template-columns: repeat(2, 1fr); }
    .g-rev-head { flex-wrap: wrap; }
}

@media (max-width: 600px) {
    .g-rev-grid { grid-template-columns: 1fr; }
}


/* ===== LOKASYON GALLERY SHOWCASE ===== */
.lokasyon-gallery {
    padding: 36px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.lokasyon-gallery h2 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 6px;
}

.lok-gal-desc {
    font-family: var(--font-body);
    font-size: 0.74rem;
    color: var(--gray);
    text-align: center;
    margin-bottom: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lok-gal-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}

.lok-gal-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: 0.25s ease;
}

.lok-gal-item:hover {
    border-color: var(--gold);
    transform: scale(1.03);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.lok-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lok-gal-item:hover img { transform: scale(1.08); }

.lok-gal-cta {
    text-align: center;
}

@media (max-width: 992px) {
    .lok-gal-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .lok-gal-grid { grid-template-columns: repeat(2, 1fr); }
}
