/* Beyaz Gülüş — DijiWOW Aqua-Indigo Tema (aqua + indigo + pembe gradient) */
:root {
    /* === DijiWOW Aqua-Indigo Palette === */
    --primary: #0891b2;          /* aqua ana */
    --primary-dark: #0e7490;
    --primary-light: #67e8f9;    /* aqua light */
    --secondary: #6366f1;        /* indigo */
    --secondary-dark: #4f46e5;
    --accent: #ec4899;           /* pembe vurgu */
    --accent-dark: #db2777;
    --cyan: #06b6d4;
    --cyan-light: #67e8f9;
    --indigo: #6366f1;
    --pink: #ec4899;
    --bg-dark: #0f172a;
    --bg-darker: #0a0e1a;
    --bg-soft: #f8fafc;
    --bg: #ffffff;
    --dark: #0f172a;
    --text: #1e293b;
    --muted: #64748b;
    --muted-dark: #94a3b8;
    --border: #e5e7eb;
    --border-dark: rgba(255, 255, 255, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 14px rgba(99, 102, 241, 0.08);
    --shadow-lg: 0 24px 60px rgba(99, 102, 241, 0.18);
    --shadow-glow: 0 12px 40px rgba(236, 72, 153, 0.32);
    /* WOW gradient (DijiWOW signature: aqua → indigo → pembe) */
    --gradient-wow: linear-gradient(135deg, #0891b2 0%, #6366f1 50%, #ec4899 100%);
    --gradient-wow-soft: linear-gradient(135deg, rgba(8,145,178,0.08), rgba(99,102,241,0.08), rgba(236,72,153,0.08));
    --gradient-wow-strong: linear-gradient(135deg, #0e7490 0%, #4f46e5 50%, #db2777 100%);
    --display: 'Sora', 'Inter', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--bg-darker); color: rgba(255,255,255,0.75); font-size: 12.5px; padding: 10px 0; position: relative; overflow: hidden; }
.tb-rotator { position: relative; min-height: 18px; min-width: 280px; display: inline-block; }
.tb-slide { position: absolute; left: 0; top: 0; opacity: 0; transform: translateY(-6px); transition: all .5s cubic-bezier(.2,.8,.2,1); white-space: nowrap; pointer-events: none; }
.tb-slide.active { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.tb-slide strong { background: linear-gradient(135deg, #67e8f9, #fcd34d); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }
.tb-locations { font-weight: 500; }
.top-bar::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 0% 50%, rgba(8,145,178,0.25), transparent 40%), radial-gradient(circle at 100% 50%, rgba(245,158,11,0.2), transparent 40%); pointer-events: none; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.top-bar .tb-left, .top-bar .tb-right { display: flex; gap: 18px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,0.85); transition: color .2s; }
.top-bar a:hover { color: var(--cyan-light); }
.top-bar i { background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-right: 6px; }

/* === Gerçek Logo (Header + Footer) === */
.logo-img { max-height: 56px; width: auto; display: block; transition: transform .25s; }
.logo:hover .logo-img { transform: scale(1.04); }
.footer-logo-img { max-height: 64px; width: auto; display: block; }
.hn-logo-img { max-height: 48px; width: auto; }
@media (max-width: 992px) { .logo-img { max-height: 44px; } }

/* === DİL SEÇİCİ === */
.lang-switcher { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 100px; color: rgba(255,255,255,0.9); font-size: 11.5px; font-weight: 700; cursor: pointer; transition: all .2s; font-family: inherit; }
.lang-btn:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.lang-flag { font-size: 14px; line-height: 1; }
.lang-code { font-weight: 800; letter-spacing: 0.5px; }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 160px; background: rgba(15,23,42,0.97); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 6px; box-shadow: 0 12px 32px rgba(0,0,0,0.3); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all .2s; z-index: 200; }
.lang-switcher:hover .lang-menu, .lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 8px; color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 600; transition: all .15s; }
.lang-item:hover { background: var(--gradient-wow); color: #fff; }
.lang-item.active { background: rgba(8,145,178,0.2); color: var(--cyan-light); }
.lang-item span { font-size: 16px; }
@media (max-width: 600px) { .lang-menu { right: auto; left: 0; } }

/* ===== HEADER ===== */
.site-header { background: rgba(255, 255, 255, 0.85); backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid rgba(8, 145, 178, 0.08); position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; align-items: center; gap: 30px; padding: 14px 20px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; box-shadow: 0 10px 24px rgba(16, 185, 129, 0.35); position: relative; transition: transform .3s; }
.logo-mark svg { width: 100%; height: 100%; display: block; border-radius: 12px; }
.logo:hover .logo-mark { transform: rotate(-4deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 6px; }
.logo-text strong { font-family: var(--display); font-size: 21px; font-weight: 800; letter-spacing: -0.3px; color: var(--dark); }
.logo-text strong em { font-style: normal; background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.logo-wordmark { display: block; width: 142px; height: auto; filter: saturate(1.5) contrast(1.1); opacity: 1 !important; }
.logo-mark { filter: saturate(1.4) contrast(1.05); opacity: 1 !important; }
.logo-mark svg, .logo-wordmark { will-change: auto; transform: translateZ(0); }
.logo, .logo *, .logo svg, .logo-mark *, .logo-wordmark * { opacity: 1 !important; }
.logo-wordmark .lw-mag { transform-origin: 0 0; transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.logo:hover .logo-wordmark .lw-mag { transform: translate(116px, 18px) scale(1.06); }
.logo-text small { display: block; font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; }

/* ===== NAV ===== */
.header-nav { flex: 1; display: flex; justify-content: center; gap: 2px; flex-wrap: nowrap; min-width: 0; }
.hn-mob-head, .hn-mob-foot { display: none; } /* Desktop: gizli */
.header-nav a { padding: 11px 14px; font-weight: 600; font-size: 13.5px; color: var(--text); border-radius: 10px; transition: all .25s; display: inline-flex; align-items: center; gap: 6px; position: relative; white-space: nowrap; }

/* Orta-desktop: nav daralt (1280px max + 1100-1200px arasında sıkışma) */
@media (max-width: 1280px) and (min-width: 993px) {
    .site-header .container { gap: 16px; }
    .header-nav { gap: 0; }
    .header-nav a { padding: 10px 11px; font-size: 13px; gap: 5px; }
    .header-nav a i { font-size: 11px; }
    .logo-text small { display: none; }
    .btn-cta-header { padding: 9px 14px; font-size: 12.5px; }
}
@media (max-width: 1100px) and (min-width: 993px) {
    .header-nav a { padding: 9px 8px; font-size: 12.5px; }
    .header-nav a i { display: none; }
}
.header-nav a:hover { color: var(--primary-dark); background: var(--gradient-wow-soft); }
.header-nav a.active { color: var(--primary-dark); background: var(--gradient-wow-soft); }
.header-nav a.active::after { content: ''; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%); width: 22px; height: 2.5px; background: var(--gradient-wow); border-radius: 2px; }
.header-nav a i { font-size: 12px; }

/* === Dropdown (Kurumsal) === */
.hn-dd { position: relative; }
.hn-dd-toggle { cursor: pointer; }
.hn-dd-caret { font-size: 9px !important; transition: transform .25s; opacity: 0.7; }
.hn-dd:hover .hn-dd-caret, .hn-dd.is-open .hn-dd-caret { transform: rotate(180deg); }
.hn-dd-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 320px; padding: 10px; background: rgba(255,255,255,0.98); backdrop-filter: saturate(180%) blur(20px); border: 1px solid rgba(8,145,178,0.12); border-radius: 16px; box-shadow: 0 18px 50px rgba(15,23,42,0.12), 0 4px 12px rgba(8,145,178,0.08); opacity: 0; visibility: hidden; pointer-events: none; transition: all .2s cubic-bezier(.2,.8,.2,1); z-index: 200; }
.hn-dd-menu::before { content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 14px; height: 14px; background: rgba(255,255,255,0.98); border-left: 1px solid rgba(8,145,178,0.12); border-top: 1px solid rgba(8,145,178,0.12); }
.hn-dd:hover .hn-dd-menu, .hn-dd.is-open .hn-dd-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.hn-dd-menu a { display: flex !important; align-items: center; gap: 12px; padding: 10px 12px !important; font-size: 13px !important; color: var(--text) !important; border-radius: 10px; white-space: normal !important; }
.hn-dd-menu a i:first-child { width: 32px; height: 32px; flex-shrink: 0; display: inline-flex !important; align-items: center; justify-content: center; background: var(--gradient-wow-soft); border-radius: 9px; color: var(--primary-dark); font-size: 13px !important; transition: all .2s; }
.hn-dd-menu a:hover { background: var(--gradient-wow-soft) !important; }
.hn-dd-menu a:hover i:first-child { background: var(--gradient-wow); color: #fff; transform: scale(1.05); }
.hn-dd-menu a.active { background: var(--gradient-wow-soft) !important; color: var(--primary-dark) !important; }
.hn-dd-menu a.active::after { display: none; }
.hn-dd-menu a span { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; flex: 1; min-width: 0; }
.hn-dd-menu a span strong { font-size: 13.5px; font-weight: 700; color: var(--dark); letter-spacing: -0.2px; }
.hn-dd-menu a span small { font-size: 11.5px; font-weight: 500; color: var(--muted); }
.hn-dd-sep { padding: 12px 12px 6px; font-size: 10.5px; font-weight: 800; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; border-top: 1px solid rgba(8,145,178,0.08); margin-top: 6px; }

/* ===== HEADER ACTIONS ===== */
.header-actions { display: flex; gap: 10px; align-items: center; }
.btn-cta-header { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--gradient-wow); color: #fff; border-radius: 100px; font-weight: 700; font-size: 13.5px; box-shadow: 0 8px 22px rgba(16, 185, 129, 0.35); transition: all .25s; position: relative; overflow: hidden; }
.btn-cta-header:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(16, 185, 129, 0.5); }

.nav-toggle { display: none; background: none; border: none; font-size: 22px; color: var(--primary); cursor: pointer; padding: 8px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 700; font-family: inherit; cursor: pointer; transition: all .25s; border: 2px solid transparent; text-decoration: none; }
.btn-primary { background: var(--gradient-wow); color: #fff; border: 0; box-shadow: 0 10px 26px rgba(16, 185, 129, 0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(16, 185, 129, 0.5); }
.btn-secondary { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-secondary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { background: var(--gradient-wow-soft); border-color: var(--primary); color: var(--primary-dark); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55); transform: translateY(-2px); }
.btn-wa { background: #25d366; color: #fff; border-color: #25d366; }
.btn-wa:hover { background: #128c7e; border-color: #128c7e; transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ===== SECTION ===== */
.section { padding: 90px 0; }
.section-sm { padding: 56px 0; }
.section-title { font-family: var(--display); font-size: 38px; font-weight: 800; color: var(--dark); margin-bottom: 14px; letter-spacing: -1.2px; line-height: 1.15; }
.section-title em { font-style: normal; background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle { color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 640px; }
.section-head { margin-bottom: 44px; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: var(--gradient-wow-soft); color: var(--primary-dark); border-radius: 100px; font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 16px; border: 1px solid rgba(8, 145, 178, 0.15); }
.section-tag i { background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ===== PAGE HERO (global, tüm iç sayfalar için) ===== */
.page-hero { background: var(--bg-dark); color: #fff; padding: 70px 0 90px; position: relative; overflow: hidden; }
.page-hero .ph-mesh { position: absolute; inset: 0; background:
    radial-gradient(circle at 15% 30%, rgba(8, 145, 178, 0.3), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(245, 158, 11, 0.25), transparent 50%);
    pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.85); transition: color .2s; }
.page-hero .breadcrumb a:hover { color: var(--cyan-light); }
.page-hero .breadcrumb i { font-size: 9px; color: var(--cyan-light); }
.page-hero h1 { font-family: var(--display); font-size: 48px; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; margin: 18px 0 14px; color: #fff; }
.page-hero h1 em { font-style: normal; background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.78); max-width: 720px; margin: 0 auto; line-height: 1.7; text-align: center; }
.page-hero .container { text-align: center; }
.page-hero .breadcrumb { justify-content: center; }
.page-hero h1 { text-align: center; }

@media (max-width: 768px) {
    .page-hero { padding: 50px 0 60px; }
    .page-hero h1 { font-size: 28px; letter-spacing: -0.6px; word-wrap: break-word; overflow-wrap: anywhere; }
    .page-hero p { font-size: 14.5px; word-wrap: break-word; overflow-wrap: anywhere; }
    .page-hero .breadcrumb { font-size: 12px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .page-hero h1 { font-size: 24px; }
    .page-hero { padding: 36px 0 44px; }
}

/* ===== WA FLOAT ===== */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 14px 32px rgba(37,211,102,.45); z-index: 999; animation: wa-pulse 2s infinite; }
@keyframes wa-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.mobile-bottom-nav { display: none; }
.nav-overlay { display: none; }

::selection { background: var(--accent); color: #fff; }

@media (max-width: 992px) {
    .top-bar { padding: 7px 0; font-size: 11.5px; }
    .top-bar .container { justify-content: center; gap: 10px; }
    .top-bar .tb-left { gap: 0; }
    .top-bar .tb-left .tb-hide-sm { display: none; }
    .top-bar .tb-right { display: flex !important; gap: 8px !important; }
    .top-bar .tb-right > *:not(.lang-switcher) { display: none !important; }

    .site-header .container { padding: 12px 16px; gap: 12px; flex-wrap: nowrap; justify-content: space-between; }
    .logo { flex-shrink: 0; }
    .header-actions { margin-left: auto; gap: 8px; }
    .logo-mark { width: 40px; height: 40px; }
    .logo-text strong { font-size: 18px; }
    .logo-text small { font-size: 8.5px; letter-spacing: 1.4px; }

    /* === MOBİL MENÜ (full screen, modern) === */
    .header-nav {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
        z-index: 9999;
        flex-direction: column;
        gap: 0;
        transform: translateX(100%);
        transition: transform .32s cubic-bezier(.2,.8,.2,1);
        visibility: hidden;
        will-change: transform;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        overflow-y: auto;
    }
    .header-nav.open { transform: translateX(0); visibility: visible; }

    /* Mobil menü üst satırı */
    .hn-mob-head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 14px 18px;
        background: rgba(255,255,255,0.03);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        flex-shrink: 0;
        position: sticky;
        top: 0;
        z-index: 2;
        backdrop-filter: blur(8px);
    }
    .hn-mob-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .hn-logo-mark { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; box-shadow: 0 6px 14px rgba(16,185,129,0.35); }
    .hn-logo-mark svg { width: 100%; height: 100%; display: block; border-radius: 10px; }
    .hn-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
    .hn-logo-text strong { font-family: var(--display); font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
    .hn-logo-text strong em { font-style: normal; background: linear-gradient(135deg, #22d3ee, #c4b5fd, #fcd34d); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
    .hn-wordmark { display: block; width: 110px; height: auto; margin-bottom: 4px; }
    .hn-logo-text small { font-size: 9.5px; color: rgba(255,255,255,0.5); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

    /* Linkler */
    .header-nav a {
        padding: 13px 22px;
        border: 0;
        font-size: 14.5px;
        font-weight: 600;
        border-radius: 0;
        justify-content: flex-start;
        color: rgba(255,255,255,0.85);
        flex-shrink: 0;
        position: relative;
        transition: all .2s;
    }
    .header-nav a:not(:last-of-type) { border-bottom: 1px solid rgba(255,255,255,0.04); }
    .header-nav a:hover, .header-nav a.active { background: linear-gradient(90deg, rgba(16, 185, 129, 0.18), transparent); color: #fff; }
    .header-nav a.active { font-weight: 700; }
    .header-nav a.active::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, #0891b2, #f59e0b); }
    .header-nav a.active::after { display: none; }
    .header-nav a i { color: var(--cyan-light); width: 20px; font-size: 13px; opacity: 0.85; }

    /* === Mobil dropdown — accordion === */
    .hn-dd { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.04); }
    .hn-dd-toggle { width: 100%; cursor: pointer; border-bottom: 0 !important; }
    .hn-dd-toggle .hn-dd-caret { margin-left: auto; }
    .hn-dd-menu { position: static !important; transform: none !important; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; padding: 0 !important; min-width: 0 !important; max-height: 0; overflow: hidden; background: rgba(0,0,0,0.2) !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important; backdrop-filter: none !important; transition: max-height .3s ease; }
    .hn-dd-menu::before { display: none; }
    .hn-dd.is-open .hn-dd-menu { max-height: 700px; }
    .hn-dd-menu a { padding: 12px 22px 12px 50px !important; border-bottom: 1px solid rgba(255,255,255,0.04); color: rgba(255,255,255,0.78) !important; gap: 10px; }
    .hn-dd-menu a i:first-child { width: 28px !important; height: 28px !important; background: rgba(16,185,129,0.18) !important; color: var(--cyan-light) !important; font-size: 11px !important; }
    .hn-dd-menu a:hover, .hn-dd-menu a.active { background: linear-gradient(90deg, rgba(16, 185, 129, 0.18), transparent) !important; color: #fff !important; }
    .hn-dd-menu a span strong { color: #fff !important; font-size: 13px; }
    .hn-dd-menu a span small { color: rgba(255,255,255,0.5) !important; font-size: 11px; }
    .hn-dd-sep { padding: 8px 22px 4px 50px !important; color: rgba(255,255,255,0.4) !important; border-top: 0 !important; background: rgba(0,0,0,0.15); font-size: 10px !important; }

    /* Alt CTA bölümü */
    .hn-mob-foot {
        display: flex !important;
        flex-direction: column;
        gap: 14px;
        padding: 20px 22px 28px;
        margin-top: auto;
        border-top: 1px solid rgba(255,255,255,0.08);
        background: linear-gradient(180deg, transparent, rgba(16,185,129,0.06));
        flex-shrink: 0;
    }
    .hn-mob-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px 18px;
        background: linear-gradient(135deg, #0891b2, #10b981, #f59e0b);
        color: #fff !important;
        border-radius: 12px;
        font-size: 14.5px;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 12px 26px rgba(16,185,129,0.4);
    }
    .hn-mob-tel { text-align: center; padding: 6px 0; }
    .hn-mob-tel a { color: rgba(255,255,255,0.85) !important; font-size: 13.5px; font-weight: 700; text-decoration: none; padding: 0 !important; background: none !important; border: 0 !important; display: inline-flex !important; align-items: center; gap: 8px; }
    .hn-mob-tel a:hover { color: #fff !important; }
    .hn-mob-tel a i { color: var(--cyan-light) !important; width: auto !important; }
    .hn-mob-social { display: flex; gap: 10px; justify-content: center; }
    .hn-mob-social a { width: 38px; height: 38px; padding: 0 !important; border: 1px solid rgba(255,255,255,0.12) !important; background: rgba(255,255,255,0.04) !important; border-radius: 10px; display: flex !important; align-items: center; justify-content: center; color: rgba(255,255,255,0.85) !important; font-size: 14px; transition: all .2s; }
    .hn-mob-social a:hover { background: linear-gradient(135deg, #0891b2, #10b981) !important; border-color: transparent !important; color: #fff !important; transform: translateY(-2px); }
    .hn-mob-social a i { color: inherit !important; width: auto !important; font-size: inherit; }

    .nav-toggle { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; padding: 0; }
    .nav-overlay { display: none !important; }

    .nav-close-x {
        display: flex;
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 50%;
        color: #fff;
        font-size: 14px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: all .25s;
        padding: 0;
    }
    .nav-close-x:hover { background: rgba(255,255,255,0.18); transform: rotate(90deg); }

    .btn-cta-header { padding: 9px 14px; font-size: 12px; }
    .btn-cta-header span { display: none; }

    .mobile-bottom-nav { display: grid; grid-template-columns: repeat(4, 1fr); position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(20px); border-top: 1px solid rgba(8,145,178,0.1); z-index: 100; padding: 6px 4px 8px; padding-bottom: max(8px, env(safe-area-inset-bottom)); box-shadow: 0 -8px 24px rgba(8, 145, 178, 0.08); }
    .mbn-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 6px 4px; color: var(--muted); font-size: 10px; font-weight: 700; transition: color .15s; }
    .mbn-item i { font-size: 18px; }
    .mbn-item.active { color: var(--primary-dark); }
    .mbn-item.mbn-cta i { color: var(--accent); }
    .mbn-item.mbn-cta { color: var(--accent); font-weight: 800; }

    .wa-float { display: none !important; }
    body { padding-bottom: 64px; }
    .section { padding: 60px 0; }
    .section-title { font-size: 28px; }
    .container { padding: 0 16px; }
}
/* DijiWOW lokasyon CSS */
.hd-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: flex-start; }
.hd-content { font-size: 15.5px; line-height: 1.85; color: var(--text); }
.hd-content h2 { font-family: var(--display); font-size: 26px; font-weight: 800; color: var(--dark); margin: 32px 0 14px; letter-spacing: -0.6px; line-height: 1.2; }
.hd-content h2:first-child { margin-top: 0; }
.hd-content h3 { font-family: var(--display); font-size: 20px; font-weight: 800; color: var(--dark); margin: 24px 0 12px; }
.hd-content p { color: var(--text); margin-bottom: 14px; }
.hd-content strong { color: var(--primary-dark); font-weight: 700; }
.hd-content ul, .hd-content ol { margin: 14px 0 18px 24px; }
.hd-content li { margin-bottom: 8px; }

.hd-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.hd-cta { padding: 28px 26px; background: linear-gradient(135deg, var(--bg-dark), #1e293b); color: #fff; border-radius: 18px; position: relative; overflow: hidden; }
.hd-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.4), transparent 50%); pointer-events: none; }
.hd-cta > * { position: relative; z-index: 1; }
.hd-cta-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--gradient-wow); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; box-shadow: 0 10px 22px rgba(16, 185, 129, 0.4); }
.hd-cta h4 { font-family: var(--display); font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.hd-cta p { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 16px; }

.hd-other { padding: 24px; background: #fff; border: 1px solid var(--border); border-radius: 16px; }
.hd-yakin { background: linear-gradient(135deg, #fff, var(--bg-soft)); border-color: rgba(16, 185, 129, 0.18); }
.hd-yakin h4 i { background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hd-yakin-sub { font-size: 12px; color: var(--muted); margin: -6px 0 12px; line-height: 1.5; }
.hd-yakin-tum { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; padding: 8px 14px; font-size: 12px; font-weight: 700; color: var(--primary-dark); background: var(--gradient-wow-soft); border-radius: 100px; border: 1px solid rgba(8,145,178,0.18); transition: all .2s; }
.hd-yakin-tum:hover { background: var(--gradient-wow); color: #fff; border-color: transparent; transform: translateY(-2px); }
.hd-yakin-tum i { font-size: 9px; }
.hd-other h4 { font-family: var(--display); font-size: 13px; font-weight: 800; color: var(--dark); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--bg-soft); display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.hd-other h4 i { background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hd-other ul { list-style: none; padding: 0; margin: 0; }
.hd-other li a { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-radius: 8px; color: var(--text); font-size: 13px; font-weight: 600; transition: all .25s; }
.hd-other li a:hover { background: var(--gradient-wow-soft); color: var(--primary-dark); padding-left: 16px; }
.hd-other li a i { font-size: 10px; opacity: 0.5; }

.sss-list { display: flex; flex-direction: column; gap: 10px; max-width: 880px; margin: 0 auto; }
.sss-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.sss-item[open] { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.sss-item summary { padding: 18px 22px; font-weight: 700; color: var(--dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: var(--display); font-size: 15px; }
.sss-item summary::-webkit-details-marker { display: none; }
.sss-toggle { width: 30px; height: 30px; border-radius: 50%; background: var(--gradient-wow-soft); display: flex; align-items: center; justify-content: center; color: var(--primary-dark); font-size: 12px; flex-shrink: 0; transition: all .25s; }
.sss-item[open] .sss-toggle { background: var(--gradient-wow); color: #fff; transform: rotate(45deg); }
.sss-body { padding: 0 22px 20px; color: var(--muted); line-height: 1.75; font-size: 14px; }

@media (max-width: 992px) {
    .hd-grid { grid-template-columns: 1fr; }
    .hd-side { position: static; }
}
/* DijiWOW hizmet CSS */
.hizmet-hero { padding: 60px 0 70px; }
.hh-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: center; text-align: left; }
.hh-content h1 { font-family: var(--display); font-size: 46px; font-weight: 800; line-height: 1.1; letter-spacing: -1.2px; margin: 16px 0 16px; color: #fff; }
.hh-content p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 30px; max-width: 580px; line-height: 1.7; }
.hh-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hh-visual { display: flex; align-items: center; justify-content: center; }
.hh-icon { width: 220px; height: 220px; border-radius: 32px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 100px; box-shadow: 0 30px 60px rgba(16, 185, 129, 0.45); transform: rotate(-6deg); animation: floatIcon 4s ease-in-out infinite; }
.hh-foto { position: relative; width: 100%; max-width: 460px; aspect-ratio: 4/3; border-radius: 24px; background-size: cover; background-position: center; box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05); overflow: hidden; }
.hh-foto::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,145,178,0.18), transparent 50%, rgba(245,158,11,0.18)); pointer-events: none; }
.hh-foto-icon { position: absolute; bottom: 18px; right: 18px; width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 26px; box-shadow: 0 14px 28px rgba(0,0,0,0.35); z-index: 2; }
@keyframes floatIcon { 0%, 100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-12px); } }

.hd-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: flex-start; }

.hd-content { font-size: 15.5px; line-height: 1.85; color: var(--text); }
.hd-content h2 { font-family: var(--display); font-size: 28px; font-weight: 800; color: var(--dark); margin: 32px 0 16px; letter-spacing: -0.6px; line-height: 1.2; }
.hd-content h2:first-child { margin-top: 0; }
.hd-content h3 { font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--dark); margin: 28px 0 14px; letter-spacing: -0.4px; }
.hd-content h4 { font-family: var(--display); font-size: 18px; font-weight: 800; color: var(--dark); margin: 22px 0 12px; }
.hd-content p { color: var(--text); margin-bottom: 14px; }
.hd-content strong { color: var(--primary-dark); font-weight: 700; }
.hd-content ul, .hd-content ol { margin: 14px 0 18px 24px; }
.hd-content li { margin-bottom: 8px; color: var(--text); }
.hd-content a { color: var(--primary-dark); border-bottom: 1px solid currentColor; transition: color .2s; }
.hd-content a:hover { color: var(--accent); }
.hd-content blockquote { border-left: 3px solid var(--primary); padding: 16px 22px; background: var(--bg-soft); border-radius: 0 12px 12px 0; margin: 18px 0; color: var(--muted); font-style: italic; }

.hd-side { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 90px; }
.hd-cta { padding: 30px 26px; background: linear-gradient(135deg, var(--bg-dark), #1e293b); color: #fff; border-radius: 18px; position: relative; overflow: hidden; }
.hd-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.4), transparent 50%); pointer-events: none; }
.hd-cta > * { position: relative; z-index: 1; }
.hd-cta-icon { width: 50px; height: 50px; border-radius: 14px; background: var(--gradient-wow); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; box-shadow: 0 10px 24px rgba(16, 185, 129, 0.45); }
.hd-cta h4 { font-family: var(--display); font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.hd-cta p { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 18px; }

.hd-other { padding: 26px; background: #fff; border: 1px solid var(--border); border-radius: 16px; }
.hd-bolgeler { background: linear-gradient(135deg, #fff, var(--bg-soft)); border-color: rgba(16, 185, 129, 0.18); }
.hd-tum-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; padding: 9px 16px; font-size: 12px; font-weight: 700; color: var(--primary-dark); background: var(--gradient-wow-soft); border-radius: 100px; border: 1px solid rgba(8,145,178,0.2); transition: all .25s; }
.hd-tum-link:hover { background: var(--gradient-wow); color: #fff; border-color: transparent; transform: translateY(-2px); }
.hd-tum-link i { font-size: 9px; }

/* === Hizmet sayfası alt — şehir grid'i === */
.hzlok-list { display: flex; flex-direction: column; gap: 18px; max-width: 1080px; margin: 0 auto; }
.hzlok-grup { display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: flex-start; padding: 22px 24px; background: #fff; border: 1px solid var(--border); border-radius: 16px; transition: all .25s; }
.hzlok-grup:hover { border-color: rgba(16, 185, 129, 0.25); box-shadow: var(--shadow); }
.hzlok-harf { width: 50px; height: 50px; border-radius: 14px; background: var(--gradient-wow); color: #fff; font-family: var(--display); font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35); flex-shrink: 0; }
.hzlok-iller { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 8px; }
.hzlok-iller a { padding: 7px 14px; background: var(--bg-soft); color: var(--text); border-radius: 100px; font-size: 13px; font-weight: 600; transition: all .2s; border: 1px solid transparent; }
.hzlok-iller a:hover { background: var(--gradient-wow-soft); color: var(--primary-dark); border-color: rgba(8,145,178,0.2); transform: translateY(-2px); }

@media (max-width: 600px) {
    .hzlok-grup { grid-template-columns: 44px 1fr; gap: 16px; padding: 18px; }
    .hzlok-harf { width: 40px; height: 40px; font-size: 18px; }
}
.hd-other h4 { font-family: var(--display); font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--bg-soft); display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.6px; }
.hd-other h4 i { background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hd-other ul { list-style: none; padding: 0; margin: 0; }
.hd-other li a { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-radius: 10px; color: var(--text); font-size: 14px; font-weight: 600; transition: all .25s; }
.hd-other li a:hover { background: var(--gradient-wow-soft); color: var(--primary-dark); padding-left: 18px; }
.hd-other li a i { font-size: 11px; opacity: 0.5; transition: all .25s; }
.hd-other li a:hover i { opacity: 1; transform: translateX(4px); color: var(--accent); }

/* SSS */
.sss-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; margin: 0 auto; }
.sss-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; transition: all .25s; }
.sss-item[open] { border-color: var(--primary); box-shadow: var(--shadow-lg); }
.sss-item summary { padding: 20px 24px; font-weight: 700; color: var(--dark); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--display); font-size: 15.5px; letter-spacing: -0.2px; }
.sss-item summary::-webkit-details-marker { display: none; }
.sss-toggle { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient-wow-soft); border: 1px solid rgba(8, 145, 178, 0.15); display: flex; align-items: center; justify-content: center; color: var(--primary-dark); font-size: 13px; flex-shrink: 0; transition: all .25s; }
.sss-item[open] .sss-toggle { background: var(--gradient-wow); color: #fff; border-color: transparent; transform: rotate(45deg); }
.sss-body { padding: 0 24px 22px; color: var(--muted); line-height: 1.75; font-size: 14.5px; }

@media (max-width: 992px) {
    .hh-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hh-visual { order: -1; }
    .hh-icon { width: 140px; height: 140px; font-size: 60px; border-radius: 24px; }
    .hh-foto { max-width: 320px; aspect-ratio: 4/3; }
    .hh-foto-icon { width: 48px; height: 48px; font-size: 20px; border-radius: 14px; bottom: 12px; right: 12px; }
    .hh-content h1 { font-size: 30px; }
    .hh-content p { margin: 0 auto 24px; }
    .hh-actions { justify-content: center; }
    .hd-grid { grid-template-columns: 1fr; }
    .hd-side { position: static; }
}
/* DijiWOW hub CSS */
.hb-stats { display:flex; gap:40px; justify-content:center; margin-top:30px; flex-wrap:wrap; }
.hb-stats > div { display:flex; flex-direction:column; align-items:center; color:#fff; }
.hb-stats strong { font-family:var(--display); font-size:34px; font-weight:900; background:linear-gradient(135deg,#fff,#a7f3d0); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; line-height:1; }
.hb-stats span { font-size:12px; color:rgba(255,255,255,0.7); margin-top:6px; text-transform:uppercase; letter-spacing:1px; }

.hb-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; padding: 8px; background: var(--bg-soft); border-radius: 100px; max-width: fit-content; margin-left: auto; margin-right: auto; }
.hb-tab { padding: 10px 18px; font-size: 13.5px; font-weight: 700; color: var(--text); border-radius: 100px; transition: all .25s; }
.hb-tab:hover { color: var(--primary-dark); background: rgba(8,145,178,0.08); }
.hb-tab.active { background: var(--gradient-wow); color: #fff; box-shadow: 0 8px 22px rgba(16,185,129,0.32); }

.hb-info { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.hb-info h2 { font-family: var(--display); font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 8px; letter-spacing: -0.5px; }
.hb-info h2 strong { background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 900; }
.hb-info p { color: var(--muted); }

.hb-list { display: flex; flex-direction: column; gap: 20px; }
.hb-grup { display: grid; grid-template-columns: 60px 1fr; gap: 24px; align-items: flex-start; padding: 22px 24px; background: #fff; border: 1px solid var(--border); border-radius: 16px; transition: all .25s; }
.hb-grup:hover { border-color: rgba(16, 185, 129, 0.25); box-shadow: var(--shadow); }
.hb-harf { width: 50px; height: 50px; border-radius: 14px; background: var(--gradient-wow); color: #fff; font-family: var(--display); font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35); flex-shrink: 0; }
.hb-iller { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 8px; }
.hb-iller a { padding: 7px 14px; background: var(--bg-soft); color: var(--text); border-radius: 100px; font-size: 13px; font-weight: 600; transition: all .2s; border: 1px solid transparent; }
.hb-iller a:hover { background: var(--gradient-wow-soft); color: var(--primary-dark); border-color: rgba(8,145,178,0.2); transform: translateY(-2px); }

/* === Alfabetik jump nav === */
.hb-jump { display:flex; flex-wrap:wrap; gap:6px; justify-content:center; padding:14px 16px; margin: 26px 0 30px; background:#fff; border:1px solid var(--border); border-radius:14px; position:sticky; top:80px; z-index:10; box-shadow: var(--shadow); }
.hb-jump-link { width:36px; height:36px; display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:800; font-size:14px; color:var(--primary-dark); background:var(--bg-soft); border-radius:10px; transition:all .2s; }
.hb-jump-link:hover { background:var(--gradient-wow); color:#fff; transform:translateY(-2px); }

.hb-tum-iller { display:flex; flex-direction:column; gap:24px; }
.hb-tum-grup { display:grid; grid-template-columns:60px 1fr; gap:24px; align-items:flex-start; padding:22px 24px; background:#fff; border:1px solid var(--border); border-radius:16px; scroll-margin-top:140px; }
.hb-tum-harf { width:50px; height:50px; border-radius:14px; background:var(--gradient-wow); color:#fff; font-family:var(--display); font-size:22px; font-weight:900; display:flex; align-items:center; justify-content:center; box-shadow: 0 8px 20px rgba(16,185,129,0.35); flex-shrink:0; }
.hb-tum-list { display:grid; grid-template-columns:repeat(auto-fill, minmax(180px, 1fr)); gap:8px; padding-top:6px; }
.hb-tum-il { display:flex; flex-direction:column; gap:2px; padding:10px 14px; background:var(--bg-soft); border-radius:10px; border:1px solid transparent; transition:all .2s; }
.hb-tum-il:hover { background:var(--gradient-wow-soft); border-color: rgba(8,145,178,0.18); transform:translateY(-2px); }
.hb-tum-il-ad { font-size:13.5px; font-weight:700; color:var(--dark); }
.hb-tum-il-sayi { font-size:11px; color:var(--muted); }

/* === Tam matris (her il × hizmet) === */
.hb-matris { display:grid; grid-template-columns:repeat(auto-fill, minmax(320px, 1fr)); gap:14px; }
.hb-il-card { background:#fff; border:1px solid var(--border); border-radius:14px; transition:all .25s; overflow:hidden; }
.hb-il-card[open] { border-color: rgba(16,185,129,0.3); box-shadow: var(--shadow-lg); }
.hb-il-head { padding:14px 18px; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:10px; list-style:none; font-weight:700; }
.hb-il-head::-webkit-details-marker { display:none; }
.hb-il-name { font-family:var(--display); font-size:15px; color:var(--dark); display:flex; align-items:center; gap:8px; }
.hb-il-name i { background:var(--gradient-wow); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.hb-il-meta { font-size:11.5px; color:var(--muted); display:flex; align-items:center; gap:8px; }
.hb-il-chev { transition:transform .25s; font-size:10px; }
.hb-il-card[open] .hb-il-chev { transform:rotate(180deg); }
.hb-il-body { padding:6px 12px 14px; display:flex; flex-direction:column; gap:4px; border-top:1px solid var(--bg-soft); }
.hb-hz-link { display:flex; flex-direction:column; gap:1px; padding:9px 12px; border-radius:8px; transition:all .2s; }
.hb-hz-link:hover { background:var(--gradient-wow-soft); padding-left:16px; }
.hb-hz-ad { font-size:13px; font-weight:700; color:var(--dark); }
.hb-hz-sub { font-size:11px; color:var(--muted); display:flex; align-items:center; gap:6px; }
.hb-hz-sub i { font-size:9px; opacity:.5; }
.hb-hz-link:hover .hb-hz-sub i { opacity:1; transform:translateX(3px); color:var(--accent); }
.hb-hz-soft .hb-hz-ad { color:var(--muted); }

@media (max-width: 600px) {
    .hb-tabs { padding: 6px; }
    .hb-tab { padding: 8px 12px; font-size: 12px; }
    .hb-grup, .hb-tum-grup { grid-template-columns: 44px 1fr; gap: 16px; padding: 18px; }
    .hb-harf, .hb-tum-harf { width: 40px; height: 40px; font-size: 18px; }
    .hb-info h2 { font-size: 20px; }
    .hb-stats { gap:24px; }
    .hb-stats strong { font-size:26px; }
    .hb-jump { top:70px; }
    .hb-jump-link { width:30px; height:30px; font-size:12px; }
    .hb-tum-list { grid-template-columns: 1fr 1fr; }
    .hb-matris { grid-template-columns: 1fr; }
}


/* === FOOTER CSS (DijiWOW'dan extract edildi) === */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 0; margin-top: 100px; position: relative; overflow: hidden; }
.footer-mesh { position: absolute; inset: 0; background:
    radial-gradient(circle at 10% 0%, rgba(8, 145, 178, 0.25), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(245, 158, 11, 0.2), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(16, 185, 129, 0.15), transparent 50%);
    pointer-events: none; }
.site-footer .container { padding-top: 0; padding-bottom: 0; position: relative; z-index: 2; }

/* Footer CTA */
.footer-cta { display: grid; grid-template-columns: 1.4fr auto; gap: 40px; align-items: center; padding: 70px 50px; margin: 0 0 60px; background: var(--gradient-wow); border-radius: var(--radius-lg); transform: translateY(-60px); position: relative; overflow: hidden; box-shadow: 0 30px 80px rgba(16, 185, 129, 0.4); }
.footer-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(255,255,255,0.15), transparent 50%); pointer-events: none; }
.footer-cta > div { position: relative; z-index: 2; color: #fff; }
.footer-cta h2 { font-family: var(--display); font-size: 36px; font-weight: 800; line-height: 1.15; margin: 12px 0 14px; letter-spacing: -1px; color: #fff; }
.footer-cta h2 em { font-style: normal; background: linear-gradient(135deg, #fde047, #fbbf24); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-cta p { color: rgba(255,255,255,0.9); font-size: 15px; max-width: 640px; }
.footer-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hizmet bölgeleri */
.footer-bolgeler { padding: 30px 0 50px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 50px; }
.fb-head { text-align: center; margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
.fb-head h3 { font-family: var(--display); font-size: 28px; font-weight: 800; color: #fff; margin: 14px 0 10px; letter-spacing: -0.6px; line-height: 1.2; }
.fb-head h3 em { font-style: normal; background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fb-head p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; }

.fb-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; margin-bottom: 32px; }
.fb-col h4 { font-size: 12.5px; font-weight: 800; color: var(--cyan-light); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); letter-spacing: 0.4px; line-height: 1.3; }
.fb-col ul { list-style: none; padding: 0; margin: 0; }
.fb-col ul li { padding: 4px 0; }
.fb-col ul a { color: rgba(255,255,255,0.55); font-size: 12.5px; transition: all .2s; }
.fb-col ul a:hover { color: #fff; padding-left: 4px; }

.fb-other { font-size: 12.5px; line-height: 2; padding-top: 28px; border-top: 1px dashed rgba(255,255,255,0.08); }
.fb-other strong { color: var(--cyan-light); margin-right: 10px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; font-size: 11.5px; }
.fb-other a { color: rgba(255,255,255,0.55); transition: color .2s; }
.fb-other a:hover { color: #fff; }
.fb-tumunu { color: var(--cyan-light) !important; font-weight: 700; padding: 4px 12px; background: rgba(103, 232, 249, 0.08); border-radius: 100px; border: 1px solid rgba(103, 232, 249, 0.2); display: inline-flex; align-items: center; gap: 5px; margin-left: 8px; }
.fb-tumunu:hover { background: var(--cyan-light); color: var(--bg-dark) !important; border-color: var(--cyan-light); }
.fb-tumunu i { font-size: 9px; }

@media (max-width: 992px) {
    .fb-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
@media (max-width: 600px) {
    .fb-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .fb-head h3 { font-size: 22px; }
}

/* Footer grid */
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.06); }

.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 22px; letter-spacing: 1.5px; text-transform: uppercase; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2.5px; background: var(--gradient-wow); border-radius: 2px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { padding: 6px 0; }
.footer-col ul a { color: rgba(255,255,255,0.65); font-size: 13.5px; transition: all .25s; }
.footer-col ul a:hover { color: var(--cyan-light); padding-left: 6px; }

.footer-brand { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }
.footer-logo-mark { width: 50px; height: 50px; flex-shrink: 0; box-shadow: 0 12px 26px rgba(16, 185, 129, 0.45); border-radius: 12px; }
.footer-logo-mark svg { width: 100%; height: 100%; display: block; border-radius: 12px; }
.footer-brand strong { display: block; color: #fff; font-family: var(--display); font-size: 22px; font-weight: 800; line-height: 1; }
.footer-brand strong em { font-style: normal; background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.footer-wordmark { display: block; width: 150px; height: auto; margin-bottom: 6px; }
.footer-brand small { display: block; color: var(--cyan-light); font-size: 10px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; margin-top: 4px; }
.footer-col-brand p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 22px; }

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all .25s; font-size: 14px; }
.footer-social a:hover { background: var(--gradient-wow); color: #fff; border-color: transparent; transform: translateY(-3px); box-shadow: 0 10px 22px rgba(16, 185, 129, 0.4); }

.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,0.65); padding: 7px 0; line-height: 1.6; }
.footer-contact i { background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-top: 4px; min-width: 14px; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color .2s; }
.footer-contact a:hover { color: var(--cyan-light); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 12.5px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 14px; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color .2s; font-weight: 500; }
.footer-bottom-links a:hover { color: var(--cyan-light); }

/* Cerez */
.cerez-bar { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 720px; margin: 0 auto; background: rgba(10, 10, 24, 0.97); backdrop-filter: blur(16px); border: 1px solid rgba(16, 185, 129, 0.25); border-radius: 16px; padding: 22px 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); z-index: 9999; animation: slideUp .5s ease; }
@keyframes slideUp { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cerez-content { display: flex; gap: 18px; align-items: center; }
.cerez-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--gradient-wow); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; flex-shrink: 0; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4); }
.cerez-text { flex: 1; min-width: 0; }
.cerez-text strong { color: #fff; font-size: 14px; display: block; margin-bottom: 4px; }
.cerez-text p { color: rgba(255,255,255,0.7); font-size: 12.5px; margin: 0; line-height: 1.5; }
.cerez-text a { color: var(--cyan-light); text-decoration: underline; }
.cerez-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cerez-btn-reddet { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.15); padding: 11px 22px; border-radius: 8px; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: all .2s; letter-spacing: 0.4px; font-family: inherit; }
.cerez-btn-reddet:hover { background: rgba(239,68,68,0.18); border-color: rgba(239,68,68,0.4); color: #fca5a5; }
.cerez-btn-kabul { background: var(--gradient-wow); color: #fff; border: 0; padding: 12px 24px; border-radius: 8px; font-size: 12.5px; font-weight: 800; cursor: pointer; transition: all .25s; text-transform: uppercase; letter-spacing: 0.6px; }
.cerez-btn-kabul:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.45); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 36px; } .footer-col-brand { grid-column: span 3; } .footer-cta { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; } .footer-cta h2 { font-size: 28px; } .footer-cta-actions { justify-content: center; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } .footer-col-brand { grid-column: span 2; } .footer-bottom { flex-direction: column; text-align: center; } .cerez-content { flex-direction: column; text-align: center; } .cerez-actions { width: 100%; justify-content: center; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-col-brand { grid-column: span 1; } }

/* ===== TEKLİF MODAL ===== */
.teklif-modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
.teklif-modal.open { display: flex; animation: tmFade .2s ease; }
.teklif-modal.open .tm-dialog { animation: tmRise .35s cubic-bezier(.2,.8,.2,1); }
@keyframes tmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes tmRise { from { transform: translateY(30px) scale(.96); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.tm-overlay { position: absolute; inset: 0; background: rgba(10, 10, 24, 0.7); backdrop-filter: blur(8px); cursor: pointer; }
.tm-dialog { position: relative; width: 100%; max-width: 520px; max-height: calc(100vh - 40px); overflow-y: auto; background: #fff; border-radius: 22px; box-shadow: 0 30px 80px rgba(0,0,0,0.4); border: 1px solid rgba(8, 145, 178, 0.15); }
.tm-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: 0; background: rgba(255,255,255,0.85); backdrop-filter: blur(6px); border-radius: 50%; color: var(--dark); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 3; transition: all .25s; }
.tm-close:hover { background: var(--dark); color: #fff; transform: rotate(90deg); }

.tm-head { padding: 36px 32px 26px; background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%); color: #fff; border-radius: 22px 22px 0 0; position: relative; overflow: hidden; }
.tm-head::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 0%, rgba(8, 145, 178, 0.35), transparent 50%), radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.3), transparent 50%); pointer-events: none; }
.tm-head > * { position: relative; z-index: 1; }
.tm-icon { width: 54px; height: 54px; border-radius: 16px; background: var(--gradient-wow); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; box-shadow: 0 14px 28px rgba(16, 185, 129, 0.45); }
.tm-head h3 { font-family: var(--display); font-size: 24px; font-weight: 800; color: #fff; margin: 12px 0 8px; letter-spacing: -0.6px; line-height: 1.2; }
.tm-head h3 em { font-style: normal; background: linear-gradient(135deg, #fde047, #fbbf24); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tm-head p { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.6; margin: 0; }

.tm-form { padding: 26px 32px 28px; }
.tm-form label { display: block; margin-bottom: 12px; }
.tm-form label > span { display: block; font-size: 11.5px; font-weight: 700; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.tm-form input, .tm-form select, .tm-form textarea { width: 100%; padding: 11px 14px; border: 2px solid var(--border); border-radius: 10px; font: inherit; font-size: 14px; color: var(--text); transition: border-color .2s, box-shadow .2s; background: #fff; }
.tm-form input:focus, .tm-form select:focus, .tm-form textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.1); }
.tm-form textarea { resize: vertical; min-height: 70px; }
.tm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tm-form button[type="submit"] { margin-top: 6px; }
.tm-form button[type="submit"]:disabled { opacity: 0.7; cursor: not-allowed; }
.tm-note { font-size: 11.5px; color: var(--muted); margin-top: 12px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }
.tm-note i { background: var(--gradient-wow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.tm-alert { padding: 12px 14px; border-radius: 10px; font-size: 13.5px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; line-height: 1.5; }
.tm-alert.tm-success { background: rgba(34, 197, 94, 0.1); color: #15803d; border: 1px solid rgba(34, 197, 94, 0.25); }
.tm-alert.tm-error { background: rgba(220, 38, 38, 0.08); color: #b91c1c; border: 1px solid rgba(220, 38, 38, 0.2); }

@media (max-width: 480px) {
    .tm-dialog { border-radius: 16px; }
    .tm-head { padding: 28px 22px 22px; border-radius: 16px 16px 0 0; }
    .tm-head h3 { font-size: 20px; }
    .tm-form { padding: 22px; }
    .tm-row { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBİL OVERFLOW GUARD — 2026.05.19
   Detay sayfaları (blog-detay, hizmet-bolgeler-detay, tedavi sayfaları) mobilde
   ekrana sığması için global koruma. Uzun kelime/URL/tablo taşmasını önler.
   ============================================================ */
html, body { max-width: 100vw; overflow-x: hidden; }

@media (max-width: 767px) {
  /* Tüm content alanlarında genel koruma */
  body { width: 100%; max-width: 100vw; overflow-x: hidden; word-wrap: break-word; }
  .container, section, article, aside, main, div { max-width: 100%; box-sizing: border-box; }
  section, article { padding-left: 4px; padding-right: 4px; }
  .container { padding-left: 14px !important; padding-right: 14px !important; }

  /* Tipografi: uzun kelimeleri kır */
  h1, h2, h3, h4, h5, h6, p, li, td, th, span, strong, em, a, blockquote {
    overflow-wrap: anywhere; word-wrap: break-word; word-break: break-word; hyphens: auto;
  }
  h1 { font-size: clamp(22px, 6vw, 32px) !important; line-height: 1.25 !important; }
  h2 { font-size: clamp(19px, 5vw, 26px) !important; line-height: 1.3 !important; }
  h3 { font-size: clamp(16px, 4.5vw, 21px) !important; line-height: 1.35 !important; }
  h4 { font-size: clamp(15px, 4vw, 18px) !important; }
  p, li { font-size: 14.5px; line-height: 1.65; }

  /* Görseller her zaman responsive */
  img, video, iframe, object, embed, svg { max-width: 100% !important; height: auto !important; }
  iframe { width: 100% !important; }

  /* Tablolar — scroll wrapper olmadan da taşmasın */
  table { display: block; overflow-x: auto; width: 100%; max-width: 100%; -webkit-overflow-scrolling: touch; }

  /* Pre/code — uzun kod blokları */
  pre, code { white-space: pre-wrap; word-wrap: break-word; max-width: 100%; overflow-x: auto; }

  /* Long URLs ve span */
  a { word-break: break-word; overflow-wrap: anywhere; }

  /* Kart/grid taşması */
  .row, .grid, [class*="grid"], [class*="col-"] { max-width: 100%; }

  /* Detay sayfa içerik kutuları */
  .hd-content, .blog-detay, .dp-content, .tedavi-detay, [class*="-detay"] {
    width: 100%; max-width: 100%; box-sizing: border-box; overflow-x: hidden;
  }
  .hd-content *, .blog-detay *, .dp-content *, .tedavi-detay * {
    max-width: 100%; box-sizing: border-box;
  }
}
