/* ========================================
   guvenlikbu.com — v5
   "Executive Navy + Refined Gold"
   Professional Business Directory
   ======================================== */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
    /* ---- Brand HSL Foundations (Executive Slate/Navy & Gold Theme) ---- */
    --navy-hue: 220;
    --navy-sat: 20%;
    
    --navy-950: hsl(var(--navy-hue), var(--navy-sat), 8%);
    --navy-900: hsl(var(--navy-hue), var(--navy-sat), 12%);
    --navy-800: hsl(var(--navy-hue), var(--navy-sat), 20%);
    --navy-700: hsl(var(--navy-hue), var(--navy-sat), 30%);
    --navy-600: hsl(var(--navy-hue), var(--navy-sat), 42%);
    --navy-505: hsl(var(--navy-hue), var(--navy-sat), 48%);
    --navy-500: hsl(var(--navy-hue), var(--navy-sat), 52%);
    --navy-400: hsl(var(--navy-hue), var(--navy-sat), 65%);
    --navy-200: hsl(var(--navy-hue), var(--navy-sat), 82%);
    --navy-100: hsl(var(--navy-hue), var(--navy-sat), 92%);
    --navy-50:  hsl(var(--navy-hue), var(--navy-sat), 97%);

    --gold-hue: 42;
    --gold-sat: 75%;
    
    --gold-600: hsl(var(--gold-hue), var(--gold-sat), 40%);
    --gold-500: hsl(var(--gold-hue), var(--gold-sat), 48%);
    --gold-400: hsl(var(--gold-hue), var(--gold-sat), 58%);
    --gold-300: hsl(var(--gold-hue), var(--gold-sat), 70%);
    --gold-100: hsl(var(--gold-hue), var(--gold-sat), 88%);
    --gold-50:  hsl(var(--gold-hue), var(--gold-sat), 96%);

    /* ---- Neutrals ---- */
    --white:      #ffffff;
    --gray-50:    #f8f9fa;
    --gray-100:   #f1f3f5;
    --gray-200:   #e9ecef;
    --gray-300:   #dee2e6;
    --gray-400:   #ced4da;
    --gray-500:   #adb5bd;
    --gray-600:   #868e96;
    --gray-700:   #495057;
    --gray-800:   #343a40;
    --gray-900:   #212529;

    /* ---- Supporting ---- */
    --green-500:  #2d8f5e;
    --green-100:  #dcf5e7;
    --red-500:    #d14343;
    --star:       #e2a820;

    /* ---- Semantic mapping ---- */
    --c-brand:        var(--navy-600);
    --c-brand-dark:   var(--navy-800);
    --c-brand-deeper: var(--navy-900);
    --c-brand-light:  var(--navy-100);
    --c-brand-bg:     var(--navy-50);
    --c-accent:       var(--gold-500);
    --c-accent-hover: var(--gold-600);
    --c-accent-light: var(--gold-100);
    --c-accent-bg:    var(--gold-50);
    --c-body:         var(--gray-50);
    --c-surface:      var(--white);
    --c-surface-alt:  var(--gray-100);
    --c-text:         var(--gray-800);
    --c-text-2:       var(--gray-600);
    --c-text-3:       var(--gray-400);
    --c-border:       var(--gray-200);
    --c-border-light: var(--gray-100);

    /* ---- Layout ---- */
    --container:  1320px;
    --page-pad:   20px;
    --radius:     8px;
    --radius-lg:  12px;
    --shadow-sm:  0 1px 3px rgba(0,0,0,.06);
    --shadow:     0 2px 8px rgba(0,0,0,.08);
    --shadow-md:  0 4px 16px rgba(0,0,0,.1);
    --transition: .25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--c-body);
    color: var(--c-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

/* body.has-mob-ad padding moved to mobile media query */

a { color:inherit; text-decoration:none; }
ul { list-style:none; }
img { max-width:100%; display:block; }

/* Flexbox overflow protection */
.sp-body,
.f-info,
.r-info,
.cb-head,
.ft-about,
.ft-col,
.loc-inner > *,
.header-row > *,
.h-search > *,
.nav-list > * {
    min-width: 0;
}

/* Sponsor Banners & General Images responsive cover */
.sponsor-banner,
.sponsor-banner img,
.sponsor-banner a img,
.container > a img,
.container > p img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover;
}

/* ---- Container ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--page-pad);
    box-sizing: border-box;
    overflow-x: hidden;
}

/* ---- Buttons ---- */
.btn {
    display:inline-flex; align-items:center; justify-content:center;
    font:600 13px/1 'Inter',sans-serif;
    padding:8px 16px; border-radius:6px; border:none; cursor:pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition);
    white-space:nowrap;
}
.btn-brand {
    background:var(--c-accent); color:var(--navy-900);
}
.btn-brand:hover {
    background:var(--c-accent-hover); color:var(--white);
    box-shadow: 0 2px 8px rgba(196,148,34,.3);
}
.btn-outline {
    background:transparent; color:var(--c-brand);
    border:1.5px solid var(--c-brand);
}
.btn-outline:hover {
    background:var(--c-brand); color:var(--white);
}

/* ==========================
   TOP BAR
   ========================== */
.top-bar {
    background: var(--navy-900);
    color: var(--gray-300);
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar-inner {
    display:flex; justify-content:space-between; align-items:center;
    height:32px;
}
.top-bar a {
    color: var(--gray-300); margin-left:14px; transition:color var(--transition);
}
.top-bar a:hover { color:var(--c-accent); }

/* ==========================
   HEADER
   ========================== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--c-border);
    position:sticky; top:0; z-index:100;
    transition: box-shadow var(--transition);
}
.header-row {
    display:flex; align-items:center; justify-content:space-between; gap:20px;
    height:60px;
}

/* Logo */
.logo {
    display:flex; align-items:center; gap:8px; flex-shrink:0;
}
.logo-mark {
    width:36px; height:36px; border-radius:8px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    color:var(--c-accent); font:800 18px/36px 'Inter',sans-serif;
    text-align:center;
}
.logo-word {
    font:700 18px/1 'Inter',sans-serif; color:var(--navy-800);
}
.logo-word span { color:var(--c-accent); }
.logo-word .com { font-weight:400; color:var(--gray-500); font-size:14px; }

/* Search */
.h-search {
    flex: 1;
    max-width: 520px;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gray-50);
    border: 1.5px solid var(--c-border);
    border-radius: 8px;
    transition: border-color var(--transition), background var(--transition);
}
.h-search:focus-within {
    border-color: var(--navy-800);
    background: var(--white);
}
.h-search .s-ico {
    position: absolute;
    left: 12px;
    font-size: 14px;
    color: var(--gray-400);
    pointer-events: none;
    z-index: 2;
}
.h-search input {
    flex: 1;
    height: 36px;
    padding: 0 10px 0 36px;
    border: none;
    background: transparent;
    font: 400 13px/1 'Inter', sans-serif;
    color: var(--c-text);
    width: 100%;
}
.h-search input:focus {
    outline: none;
}
.h-search-city {
    height: 36px;
    padding: 0 24px 0 10px;
    border: none;
    border-left: 1.5px solid var(--c-border);
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235f6b80'/%3E%3C/svg%3E") no-repeat right 10px center;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    font: 600 12px/1 'Inter', sans-serif;
    color: var(--gray-600);
    outline: none;
    min-width: 110px;
}
.h-search-city:focus {
    color: var(--navy-800);
}

/* Actions */
.h-actions {
    display:flex; align-items:center; justify-content:flex-end; gap:10px; flex-shrink:0; margin-left:auto;
}
.mob-search-btn, .mob-toggle {
    display:none; background:none; border:none; cursor:pointer;
}

/* Mobile Search Wrapper & Bar (Hidden on Desktop) */
.mob-search-wrapper {
    display: none;
}
.mob-search-bar {
    display: none;
}

/* ==========================
   NAVIGATION
   ========================== */
.main-nav {
    background: var(--navy-800);
    border-bottom: 2px solid var(--c-accent);
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}
.nav-list::-webkit-scrollbar {
    display: none;
}
.nav-list li {
    display: inline-block;
    flex-shrink: 0;
}
.nav-list a {
    display: block;
    padding: 12px 16px;
    font: 500 13px/1 'Inter', sans-serif;
    color: rgba(255, 255, 255, .78);
    transition: color var(--transition), background var(--transition);
}
.nav-list a:hover,
.nav-list a.active {
    color: var(--white);
    background: rgba(255, 255, 255, .07);
}
.nav-list a.active {
    border-bottom: 2px solid var(--c-accent);
    margin-bottom: -2px;
}

/* ==========================
   LOCATION FILTER BAR
   ========================== */
.loc-bar {
    background: var(--white);
    border-bottom: 1px solid var(--c-border);
    padding: 14px 0;
}
.loc-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.loc-filter-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}
.loc-label {
    font: 600 13px/1 'Inter', sans-serif;
    color: var(--navy-800);
    white-space: nowrap;
}
.loc-selects {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    width: 100%;
}
.sel {
    height: 36px;
    padding: 0 28px 0 10px;
    border: 1.5px solid var(--c-border);
    border-radius: 6px;
    font: 400 13px/1 'Inter', sans-serif;
    color: var(--c-text);
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235f6b80'/%3E%3C/svg%3E") no-repeat right 10px center;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: border-color var(--transition);
}
.sel:focus {
    outline: none;
    border-color: var(--c-brand);
}
.loc-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 4px;
}
.chips-row {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--c-border-light);
    padding-top: 12px;
}
.chips-label {
    font: 600 12px/1 'Inter', sans-serif;
    color: var(--gray-500);
    white-space: nowrap;
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.chip {
    padding: 6px 14px;
    border-radius: 20px;
    font: 500 12px/1 'Inter', sans-serif;
    background: var(--gray-50);
    color: var(--gray-600);
    border: 1px solid var(--c-border);
    cursor: pointer;
    transition: all var(--transition);
}
.chip:hover {
    background: var(--c-brand-bg);
    color: var(--c-brand);
    border-color: var(--c-brand-light);
}
.chip.on {
    background: var(--c-brand);
    color: var(--white);
    border-color: var(--c-brand);
}

/* ==========================
   SECTIONS
   ========================== */
.section-wrap {
    padding:24px 0;
}
.section-head {
    display:flex; justify-content:space-between; align-items:center;
    margin-bottom:16px;
}
.section-head h2 {
    font:700 18px/1.2 'Inter',sans-serif; color:var(--navy-800);
}
.more-link {
    font:600 13px/1 'Inter',sans-serif; color:var(--c-accent);
    transition:color var(--transition);
}
.more-link:hover { color:var(--c-accent-hover); }

/* ==========================
   SPONSOR BANNER
   ========================== */
.sponsor-banner {
    display:flex; align-items:center; gap:20px;
    padding:20px 24px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    border-radius:var(--radius-lg); border:1px solid rgba(255,255,255,.06);
    position:relative; overflow:hidden;
}
.sponsor-banner::before {
    content:''; position:absolute; top:0; right:0; width:200px; height:100%;
    background:linear-gradient(135deg, transparent, rgba(196,148,34,.08));
    pointer-events:none;
}
.sp-tag {
    position:absolute; top:10px; left:12px;
    font:600 10px/1 'Inter',sans-serif; text-transform:uppercase;
    color:var(--c-accent); letter-spacing:.5px;
    background:rgba(196,148,34,.12); padding:3px 8px; border-radius:4px;
}
.sp-logo {
    font-size:36px; flex-shrink:0;
    width:56px; height:56px;
    display:flex; align-items:center; justify-content:center;
    background:rgba(255,255,255,.08); border-radius:12px;
}
.sp-body { flex:1; min-width:0; }
.sp-title {
    font:700 16px/1.3 'Inter',sans-serif; color:var(--white);
    margin-top:4px;
}
.sp-desc {
    font:400 13px/1.5 'Inter',sans-serif; color:rgba(255,255,255,.65);
    margin-top:4px;
}
.sp-tags {
    display:flex; flex-wrap:wrap; gap:6px; margin-top:8px;
}
.sp-tag-item {
    font:500 11px/1 'Inter',sans-serif; color:rgba(255,255,255,.7);
    background:rgba(255,255,255,.08); padding:3px 10px; border-radius:4px;
}
.sp-cta { flex-shrink:0; }
.sp-cta .btn-brand {
    background:var(--c-accent); color:var(--navy-900);
    font-weight:700;
}
.sp-cta .btn-brand:hover {
    background:var(--gold-300); box-shadow:0 2px 12px rgba(196,148,34,.35);
}

/* ==========================
   FEATURED GRID (VITRIN)
   ========================== */
.feat-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
    gap: 20px;
}

.f-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.f-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
    border-color: #cbd5e1;
}

.f-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.f-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.f-info {
    flex: 1;
    min-width: 0;
}

.f-name {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.35;
    color: #0f172a;
}

.f-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.f-name a:hover {
    color: #2563eb;
}

.f-loc {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.f-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 12px;
    position: static !important;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.badge-vitrin {
    background: rgba(245, 158, 11, 0.1);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-elite {
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-pro {
    background: rgba(168, 85, 247, 0.08);
    color: #7e22ce;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.badge-claimed {
    background: rgba(16, 185, 129, 0.08);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-basic {
    background: #f1f5f9;
    color: #475569;
}

.badge-unclaimed {
    display: none !important;
}

.f-desc {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.f-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.f-rate {
    display: flex;
    align-items: center;
    gap: 5px;
}

.f-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    letter-spacing: -0.5px;
}

.f-score {
    font-weight: 700;
    font-size: 0.82rem;
    color: #1e293b;
}

.f-revs {
    font-size: 0.75rem;
    color: #94a3b8;
}

.f-card-link {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.f-card-link:hover {
    gap: 7px;
}

/* ==========================
   NATIVE IN-FEED AD
   ========================== */
.native-ad {
    display:flex; align-items:center; gap:20px;
    padding:20px 24px;
    background:var(--white); border-radius:var(--radius-lg);
    border:1px solid var(--c-border);
    border-left:4px solid var(--c-accent);
    position:relative; overflow:hidden;
}
.na-badge {
    font:600 9px/1 'Inter',sans-serif; text-transform:uppercase;
    color:var(--gray-400); letter-spacing:.5px;
    position:absolute; top:10px; right:12px;
}
.na-body { flex:1; min-width:0; }
.na-title {
    font:700 16px/1.3 'Inter',sans-serif; color:var(--navy-800);
    margin-top:4px;
}
.na-desc {
    font:400 13px/1.5 'Inter',sans-serif; color:var(--gray-600);
    margin-top:4px;
}
.na-link {
    font:600 13px/1 'Inter',sans-serif; color:var(--c-accent);
    flex-shrink:0; transition:color var(--transition);
}
.na-link:hover { color:var(--c-accent-hover); }

/* ==========================
   DUAL CONTENT GRID
   ========================== */
.dual-grid {
    display:grid; grid-template-columns:1fr 1fr; gap:20px;
}
.content-block {
    background:var(--white); border-radius:var(--radius);
    border:1px solid var(--c-border-light);
    padding:16px;
    min-width: 0; overflow: hidden;
}
.cb-head {
    display:flex; justify-content:space-between; align-items:center;
    margin-bottom:12px; padding-bottom:10px;
    border-bottom:1px solid var(--c-border-light);
}
.cb-head h3 {
    font:600 14px/1 'Inter',sans-serif; color:var(--navy-800);
    display:flex; align-items:center; gap:6px;
}
.cb-head .ico { font-size:16px; }
.cb-more {
    font:600 12px/1 'Inter',sans-serif; color:var(--c-accent);
}
.cb-more:hover { color:var(--c-accent-hover); }

/* Firma Row */
.f-row {
    display:flex; align-items:center; gap:10px;
    padding:8px 0;
    border-bottom:1px solid var(--c-border-light);
    transition:background var(--transition);
    width: 100%;
    min-width: 0;
    overflow: hidden;
}
.f-row:last-child { border-bottom:none; }
.f-row:hover { background:var(--gray-50); border-radius:4px; }
.rk {
    width:22px; height:22px; border-radius:5px;
    background:var(--gray-100); color:var(--gray-500);
    font:700 11px/22px 'Inter',sans-serif; text-align:center; flex-shrink:0;
}
.f-row:nth-child(1) .rk { background:var(--c-accent-bg); color:var(--gold-600); }
.f-row:nth-child(2) .rk { background:var(--gray-200); color:var(--gray-600); }
.f-row:nth-child(3) .rk { background:var(--c-brand-bg); color:var(--c-brand); }
.r-ico {
    font-size:18px; flex-shrink:0;
    width:32px; height:32px;
    display:flex; align-items:center; justify-content:center;
}
.r-info { flex:1; min-width:0; }
.r-name {
    font:500 13px/1.2 'Inter',sans-serif; color:var(--navy-800);
    white-space:normal; word-break:break-word; overflow-wrap:break-word;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
    text-overflow:ellipsis;
}
.r-meta {
    display:flex; flex-wrap:wrap; gap:4px 8px;
    font:400 11px/1.3 'Inter',sans-serif; color:var(--gray-400);
    margin-top:2px;
}
.r-meta span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.r-rate { display:flex; align-items:center; gap:3px; flex-shrink:0; }
.r-stars { color:var(--star); font-size:10px; letter-spacing:-1px; }
.r-score { font:700 12px/1 'Inter',sans-serif; color:var(--navy-700); }

/* ==========================
   STATS STRIP
   ========================== */
.stats-bar {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    padding:28px 0;
}
.stats-inner {
    display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
    text-align:center;
}
.s-num {
    font:800 28px/1 'Inter',sans-serif; color:var(--c-accent);
}
.s-lbl {
    font:500 12px/1 'Inter',sans-serif; color:rgba(255,255,255,.6);
    margin-top:4px;
}

/* ==========================
   BLOG GRID
   ========================== */
.blog-grid {
    display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
.b-card {
    background:var(--white); border-radius:var(--radius);
    border:1px solid var(--c-border-light);
    overflow:hidden;
    transition:box-shadow var(--transition), border-color var(--transition);
}
.b-card:hover {
    box-shadow:var(--shadow-md); border-color:var(--c-border);
}
.b-thumb {
    height:100px; background:var(--c-brand-bg);
    display:flex; align-items:center; justify-content:center;
    font-size:32px; position:relative;
}
.b-cat-label {
    position:absolute; top:8px; left:8px;
    font:600 10px/1 'Inter',sans-serif;
    background:var(--white); color:var(--c-brand);
    padding:2px 8px; border-radius:4px;
}
.b-body { padding:12px 14px; }
.b-title {
    font:600 13px/1.4 'Inter',sans-serif; color:var(--navy-800);
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.b-meta {
    display:flex; gap:10px;
    font:400 11px/1 'Inter',sans-serif; color:var(--gray-400);
    margin-top:6px;
}

/* ==========================
   FOOTER
   ========================== */
.site-footer {
    background: var(--navy-900);
    padding:40px 0 0;
    margin-top:24px;
}
.ft-grid {
    display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:32px;
    padding-bottom:32px;
    border-bottom:1px solid rgba(255,255,255,.06);
}
.ft-logo {
    display:flex; align-items:center; gap:8px; margin-bottom:12px;
}
.ft-logo-m {
    width:32px; height:32px; border-radius:6px;
    background:linear-gradient(135deg, var(--navy-700), var(--navy-600));
    color:var(--c-accent); font:800 15px/32px 'Inter',sans-serif; text-align:center;
}
.ft-logo-t {
    font:700 16px/1 'Inter',sans-serif; color:var(--white);
}
.ft-logo-t span { color:var(--c-accent); }
.ft-about p {
    font:400 13px/1.6 'Inter',sans-serif; color:rgba(255,255,255,.5);
}
.ft-col h4 {
    font:600 13px/1 'Inter',sans-serif; color:var(--white);
    margin-bottom:12px;
}
.ft-col a {
    display:block; font:400 13px/1.8 'Inter',sans-serif;
    color:rgba(255,255,255,.5); transition:color var(--transition);
}
.ft-col a:hover { color:var(--c-accent); }
.ft-bottom {
    display:flex; justify-content:space-between; align-items:center;
    padding:16px 0;
}
.ft-copy {
    font:400 12px/1 'Inter',sans-serif; color:rgba(255,255,255,.35);
}
.ft-links { display:flex; gap:16px; }
.ft-links a {
    font:400 12px/1 'Inter',sans-serif; color:rgba(255,255,255,.35);
    transition:color var(--transition);
}
.ft-links a:hover { color:var(--c-accent); }

/* ==========================
   MOBILE BOTTOM AD
   ========================== */
.mob-ad-bottom {
    display:none;
    position:fixed; bottom:0; left:0; right:0;
    background:var(--gray-100); border-top:1px solid var(--c-border);
    text-align:center; padding:6px; z-index:99;
    font:500 11px/38px 'Inter',sans-serif; color:var(--gray-500);
}
.mob-ad-bottom .inner {
    max-width:320px; margin:0 auto;
    background:var(--gray-200); border-radius:4px; height:38px; line-height:38px;
}

/* ==========================
   SCROLL TOP
   ========================== */
.scroll-top {
    position:fixed; bottom:20px; right:20px;
    width:40px; height:40px; border-radius:50%;
    background:var(--c-brand); color:var(--white);
    border:none; cursor:pointer; font-size:18px;
    opacity:0; pointer-events:none;
    transition:opacity .25s, background var(--transition);
    z-index:90; box-shadow:var(--shadow);
}
.scroll-top.show { opacity:1; pointer-events:auto; }
.scroll-top:hover { background:var(--navy-700); }

/* ==========================
   ANIMATION
   ========================== */
/* JS sets opacity:0 on init; if JS fails, content stays visible */
[data-anim].anim-ready {
    opacity:0; transform:translateY(12px);
    transition: opacity .4s ease, transform .4s ease;
}
[data-anim].anim-in {
    opacity:1; transform:translateY(0);
}

/* ==========================
   RESPONSIVE: 1024px
   ========================== */
@media (max-width:1024px) {
    .feat-grid { grid-template-columns:repeat(3,1fr); }
    .blog-grid { grid-template-columns:repeat(2,1fr); }
    .ft-grid { grid-template-columns:1fr 1fr; gap:24px; }
    .nav-list a { padding:10px 10px; font-size:12px; }
}

/* ========================================
   RESPONSIVE: Tablet (769px - 1024px)
   ======================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --page-pad: 20px;
    }
    
    /* Grid structures: drop to 2 columns */
    .feat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .ft-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }
    
    /* Sections wrap padding adjust */
    .section-wrap {
        padding: 30px 20px !important;
    }
    
    /* If desktop has sidebar/main side-by-side, make it stack on tablet */
    .static-page-layout {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* For dual grids like home content blocks */
    .dual-grid {
        grid-template-columns: 1fr !important; /* Stack columns on tablet */
        gap: 20px;
    }
}

/* ── DESKTOP HEADER DROPDOWN ── */
.h-dropdown {
    position: relative;
    display: inline-block;
}
.h-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-800);
    background: var(--white);
    border: 1.5px solid var(--c-border);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
}
.h-dropdown-btn:hover {
    background: var(--navy-50);
    border-color: var(--navy-300);
}
.h-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 210px;
    background: var(--white);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    padding: 8px 0;
    z-index: 250;
}
.h-dropdown:hover .h-dropdown-menu,
.h-dropdown.open .h-dropdown-menu {
    display: block;
}
.h-dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-800);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.h-dropdown-item:hover {
    background: var(--navy-50);
    color: var(--c-brand, #1a3a5c);
}
.h-dropdown-divider {
    height: 1px;
    background: var(--c-border);
    margin: 6px 0;
}

.btn-txt-short { display: none; }
.btn-txt-full { display: inline; }

.mobile-only-inline { display: none; }
.desktop-only-flex { display: flex; }

@media (min-width: 769px) {
    .mob-drawer-user-box { display: none !important; }
    .mobile-only-inline { display: none !important; }
    .desktop-only-flex { display: flex !important; align-items: center; gap: 8px; }
}

/* ==========================
   RESPONSIVE: 768px
   ========================== */
@media (max-width:768px) {
    :root { --page-pad:16px; }

    .desktop-only-flex { display: none !important; }
    .mobile-only-inline { display: inline-flex !important; }
    .desktop-only { display: none !important; }
    .btn-txt-short { display: inline; }
    .btn-txt-full { display: none; }

    /* Header */
    .h-search { display:none; }
    .logo-word .com { display: none; }
    .logo-word { font-size: 15px; }

    .mob-search-btn { display:none !important; }
    
    .h-actions {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-left: auto;
    }
    
    .mob-toggle {
        display: flex !important;
        background: var(--navy-50);
        border: 1px solid var(--c-border);
        color: var(--navy-800);
        width: 36px;
        height: 36px;
        border-radius: 6px;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        padding: 0;
        transition: all var(--transition);
        flex-shrink: 0;
    }
    .mob-toggle:hover, .mob-toggle:focus {
        background: var(--navy-100);
        border-color: var(--navy-300);
        color: var(--navy-900);
    }
    
    .h-actions .header-add-btn,
    .h-actions .btn-brand {
        height: 36px;
        padding: 0 10px;
        font-size: 12px;
        font-weight: 700;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }

    /* Mobile Search Banner */
    .mob-search-wrapper {
        display: block;
        background: var(--navy-50);
        border-bottom: 1px solid var(--c-border);
        padding: 10px 0;
    }
    .mob-search-bar {
        display: flex !important;
        align-items: center;
        position: relative;
        width: 100%;
    }
    .mob-search-bar .ms-ico {
        position: absolute;
        left: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--navy-400);
        z-index: 2;
        pointer-events: none;
    }
    .mob-search-bar input {
        width: 100%;
        height: 40px;
        padding: 0 12px 0 38px;
        border: 1.5px solid var(--c-border);
        border-radius: 8px;
        background: var(--white);
        font: 500 14px/1 'Inter', sans-serif;
        color: var(--navy-900);
        transition: border-color var(--transition), box-shadow var(--transition);
        box-shadow: var(--shadow-sm);
    }
    .mob-search-bar input:focus {
        outline: none;
        border-color: var(--c-accent);
        box-shadow: 0 0 0 3px rgba(196,148,34,.15);
    }

    /* Nav */
    .main-nav {
        display: none;
        background: var(--navy-900);
        border-bottom: 3px solid var(--c-accent);
        width: 100%;
    }
    .main-nav.open {
        display: block;
        max-height: 75vh;
        overflow-y: auto;
        box-shadow: inset 0 4px 6px -1px rgba(0, 0, 0, 0.2), var(--shadow-md);
        padding: 12px 0;
    }
    .nav-list {
        display: none;
        flex-direction: column;
        overflow-x: visible;
        white-space: normal;
        width: 100%;
        gap: 0;
    }
    .main-nav.open .nav-list {
        display: flex;
    }
    .nav-list li {
        width: 100%;
    }
    .nav-list a {
        display: block;
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, .8);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all var(--transition);
    }
    .nav-list a:hover,
    .nav-list a.active {
        color: var(--white);
        background: rgba(255, 255, 255, .05);
    }
    .nav-list a.active {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-left: 4px solid var(--c-accent);
        padding-left: 16px;
        color: var(--c-accent);
    }

    /* Mobile Drawer User / Auth Box */
    .mob-drawer-user-box {
        display: block !important;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.04);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 8px;
    }
    .mob-auth-btns {
        display: flex;
        gap: 10px;
    }
    .mob-auth-btns a {
        flex: 1;
        text-align: center;
        padding: 10px 14px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        border: none !important;
    }
    .mob-login-btn {
        background: var(--c-accent, #c49422) !important;
        color: var(--navy-900, #1a3a5c) !important;
    }
    .mob-register-btn {
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--white, #ffffff) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    .mob-user-card {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .mob-user-name {
        color: var(--c-accent, #c49422);
        font-size: 13px;
        font-weight: 700;
    }
    .mob-user-btns {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }
    .mob-u-btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
    }
    .mob-u-btn.admin-btn {
        color: #38bdf8 !important;
        border-color: rgba(56, 189, 248, 0.4) !important;
    }
    .mob-u-btn.logout-btn {
        color: #f87171 !important;
        border-color: rgba(248, 113, 113, 0.4) !important;
    }

    /* Location filter */
    .loc-inner { flex-direction: column; align-items: stretch; gap: 8px; }
    .loc-filter-row { flex-direction: column; align-items: stretch; gap: 8px; }
    .loc-label { margin-bottom: 2px; }
    .loc-selects { grid-template-columns: 1fr; gap: 8px; }
    .loc-actions { width: 100%; display: flex; gap: 8px; }
    .loc-actions .btn { flex: 1; width: 100%; height: 36px; }
    .chips-row { flex-direction: column; align-items: stretch; gap: 8px; padding-top: 8px; }

    /* Grids & Columns */
    .feat-grid { grid-template-columns: 1fr !important; gap: 16px; }
    .dual-grid { grid-template-columns: 1fr !important; gap: 20px; }
    .blog-grid { grid-template-columns: 1fr !important; }

    /* Section Wrappers standard padding */
    .section-wrap {
        padding: 20px 16px !important;
    }

    /* Typography clamp */
    h1, .cms-intro-card h1 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }
    h2, .section-head h2 {
        font-size: clamp(1.2rem, 4vw, 1.5rem) !important;
    }

    /* Category Labels wrap */
    .sp-tags, .chips {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    .sp-tag-item, .chip {
        width: auto !important;
        white-space: nowrap;
    }

    /* Sponsor banner */
    .sponsor-banner {
        flex-direction: column;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 16px !important;
    }
    .sp-cta { width:100%; }
    .sp-cta .btn { width:100%; }

    /* Footer */
    .ft-grid { grid-template-columns:1fr; gap:20px; }
    .ft-bottom { flex-direction:column; gap:8px; text-align:center; }

    /* Stats */
    .stats-inner { grid-template-columns:1fr 1fr; gap:16px; }
    .s-num { font-size:22px; }

    /* Mobile bottom ad */
    .mob-ad-bottom { display:block; }

    /* Native ad */
    .native-ad {
        flex-direction: column;
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 16px !important;
        align-items: center;
    }
    .na-badge {
        position: absolute;
        top: 10px;
        right: 12px;
        margin-bottom: 0;
    }
    .na-link {
        width: 100%;
        align-self: center;
        margin-top: 10px;
    }

    /* Long titles and grid item expansion fixes on mobile */
    .f-card, .content-block {
        min-width: 0;
        overflow: hidden;
    }
    .f-name, .r-name {
        white-space: normal !important;
        word-break: break-word;
        overflow-wrap: break-word;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    .b-title {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

/* ==========================
   RESPONSIVE: 480px
   ========================== */
@media (max-width:480px) {
    :root { --page-pad:12px; }

    .feat-grid { grid-template-columns: 1fr; gap: 16px; }
    .blog-grid { grid-template-columns: 1fr; }

    .f-card { padding:12px; }
    .f-desc { display:none; }
    .f-ico { width:32px; height:32px; font-size:16px; border-radius:8px; }
    .f-name { font-size:13px; }
    .f-loc { font-size:11px; }
    .f-foot { flex-wrap:wrap; gap:4px; }

    .loc-selects { grid-template-columns: 1fr; }

    .sp-title, .na-title { font-size:14px; }
    .sp-desc, .na-desc { display:none; }

    .header-row { gap:10px; }
    .logo-word { font-size:15px; }

    .section-wrap { padding:16px 0; }
    .section-head h2 { font-size:16px; }

    .s-num { font-size:20px; }

    .container { padding:0 var(--page-pad); }

    .f-row .r-ico { display: none !important; }
    .f-row .r-stars { display: none !important; }
}

/* Floating Suggestions Dropdown (Autocomplete) */
.h-search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
    z-index: 999999 !important;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    text-align: left;
}
.h-search-suggestions.active {
    display: block !important;
}
.suggestion-group-title {
    background: var(--gray-50);
    color: var(--navy-800);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 12px;
    border-bottom: 1px solid var(--c-border-light);
    letter-spacing: 0.8px;
}
.suggestion-item {
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    border-bottom: 1px solid var(--c-border-light);
    cursor: pointer;
    transition: all 0.2s ease;
}
.suggestion-item.selected {
    background: var(--navy-50) !important;
}
.suggestion-item:hover {
    background: var(--c-accent-bg);
}
.suggestion-title {
    font-weight: 600;
    font-size: 13px;
    color: var(--navy-900);
}
.suggestion-subtitle {
    font-size: 11px;
    color: var(--navy-400);
    margin-top: 2px;
}
.suggestion-meta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.suggestion-badge {
    font-size: 0.65rem;
    background: var(--navy-100);
    color: var(--navy-700);
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 600;
}
.suggestion-firm-logo {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid var(--navy-100);
}
.suggestion-firm-logo-fallback {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: var(--navy-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 1px solid var(--navy-100);
}
.suggestion-firm-badge {
    font-size: 0.62rem;
    padding: 1px 5px;
    border-radius: 10px;
    font-weight: 700;
}
.suggestion-firm-badge.pro {
    background: #fef3c7;
    color: #b45309;
}
.suggestion-firm-badge.elite {
    background: #e0f2fe;
    color: #0369a1;
}
.suggestion-view-all {
    padding: 10px 12px;
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--c-border-light);
}
.suggestion-view-all a {
    color: var(--c-accent);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s ease;
}
.suggestion-view-all a:hover {
    color: var(--navy-900);
}
.suggestion-no-results {
    padding: 20px;
    text-align: center;
    color: var(--navy-300);
    font-size: 13px;
}

/* Ziyaretçi Detay Sayfası Stilleri */
.page-body-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-800);
}
.page-body-content p {
    margin-bottom: 15px;
}
.page-body-content h2 {
    color: var(--navy-900);
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    font-weight: 700;
}
.page-body-content h3 {
    color: var(--navy-800);
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}
.page-body-content ul, .page-body-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}
.page-body-content li {
    margin-bottom: 5px;
}

/* ========================================
   Visitor Static & Pinned Page Layouts
   ======================================== */
.static-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* Sidebar toggle trigger & close for Mobile */
.sidebar-overlay-label-wrapper {
    display: none;
}
.sidebar-toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy-900);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    user-select: none;
    transition: background var(--transition);
}
.sidebar-toggle-label:hover {
    background: var(--navy-800);
}
.sidebar-close-btn {
    display: none;
}
.sidebar-overlay {
    display: none;
}

.static-sidebar {
    position: sticky;
    top: 90px;
    height: calc(100dvh - 120px);
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom Scrollbar for Sidebar */
.static-sidebar::-webkit-scrollbar {
    width: 6px;
}
.static-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.static-sidebar::-webkit-scrollbar-thumb {
    background: var(--navy-200);
    border-radius: 3px;
}
.static-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--navy-400);
}

@media (max-width: 1024px) {
    .static-page-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sidebar-overlay-label-wrapper {
        display: block;
        margin-bottom: 15px;
    }
    
    .static-sidebar {
        position: fixed;
        top: 0;
        left: -320px; /* Hide drawer */
        width: 300px;
        height: 100dvh;
        z-index: 1100;
        background: var(--white);
        box-shadow: var(--shadow-md);
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 24px;
    }
    
    .sidebar-close-btn {
        display: block;
        text-align: right;
        font-size: 1.8rem;
        line-height: 1;
        color: var(--navy-500);
        cursor: pointer;
        margin-bottom: 20px;
    }
    
    .sidebar-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.4); /* Navy-950 colored overlay */
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        cursor: pointer;
    }
    
    /* Checkbox Hack Triggering */
    .sidebar-toggle-check:checked ~ .static-sidebar {
        left: 0;
    }
    
    .sidebar-toggle-check:checked ~ .sidebar-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    /* Prevent interaction overlay when hidden */
    .sidebar-toggle-check:not(:checked) ~ .sidebar-overlay {
        pointer-events: none;
    }
}

.sidebar-box {
    background: var(--white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    color: var(--navy-900);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--c-accent);
}

.region-tree {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.region-link {
    display: block;
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background var(--transition), color var(--transition);
}

.region-link:hover, .region-link.active {
    background: var(--navy-50);
    color: var(--navy-900);
    font-weight: 600;
}

.district-tree {
    margin-left: 20px;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 1px dashed var(--c-border);
    padding-left: 10px;
}

.district-link {
    display: block;
    color: var(--gray-600);
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
}

.district-link:hover, .district-link.active {
    color: var(--navy-900);
    background: var(--navy-50);
    font-weight: 600;
}

.static-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cms-intro-card {
    background: var(--white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.cms-intro-card h1 {
    color: var(--navy-900);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--c-accent);
    padding-bottom: 10px;
}

.cms-intro-content {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

/* A-Z City Index Styles */
.az-index-section {
    background: var(--white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.index-heading {
    color: var(--navy-900);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.az-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--c-border-light);
}

.az-letter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--navy-50);
    color: var(--navy-800);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--transition), color var(--transition);
}

.az-letter-btn:hover {
    background: var(--c-accent);
    color: var(--navy-900);
}

.az-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.az-letter-group {
    border: 1px solid var(--c-border-light);
    border-radius: 8px;
    padding: 15px;
    background: var(--navy-50);
}

.az-letter-header {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy-900);
    border-bottom: 2px solid var(--c-accent);
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.az-city-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.az-city-link {
    color: var(--gray-700);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.az-city-link:hover, .az-city-link.active {
    color: var(--c-accent-hover);
    font-weight: 600;
}

.no-results-box {
    background: var(--white);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    color: var(--gray-500);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   Minimized & Compact Sidebar Drawer
   ======================================== */
.static-sidebar.minimized {
    padding-right: 0;
}
.static-sidebar.minimized .sidebar-box {
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.static-sidebar.minimized .sidebar-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 8px;
}
.static-sidebar.minimized .region-tree {
    gap: 4px;
}
.static-sidebar.minimized .region-link {
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 4px;
    color: var(--navy-700);
}
.static-sidebar.minimized .region-link.active,
.static-sidebar.minimized .region-link:hover {
    background: var(--navy-50);
    color: var(--navy-900);
}

@media (max-width: 1024px) {
    .static-sidebar.minimized {
        width: 280px;
        left: -300px;
        padding: 16px;
        height: 100dvh;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
        z-index: 1200;
    }
    .static-sidebar.minimized .sidebar-close-btn {
        margin-bottom: 12px;
        font-size: 1.5rem;
    }
    .static-sidebar.minimized .sidebar-box {
        padding: 12px;
        box-shadow: none;
        border: none;
    }
}


/* ── PRICING PAGE STYLES ── */
.pricing-hero {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}
.pricing-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: #ffffff;
}
.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--navy-200);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Pricing Toggle Switch */
.pricing-toggle-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.toggle-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-300);
    transition: color 0.15s ease;
}
.toggle-label.active {
    color: #ffffff;
}
.discount-badge {
    background: var(--c-accent);
    color: var(--navy-900);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: .3s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
}
input:checked + .slider {
    background-color: var(--c-accent);
}
input:checked + .slider:before {
    transform: translateX(20px);
}
.slider.round {
    border-radius: 24px;
}
.slider.round:before {
    border-radius: 50%;
}

/* Pricing Grid */
.pricing-cards-section {
    padding: 60px 14px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

/* Price Card */
.price-card {
    background: #ffffff;
    border: 1px solid var(--navy-100);
    border-radius: 16px;
    padding: 35px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--navy-200);
}
.price-card.popular {
    border: 2px solid var(--c-accent);
    box-shadow: var(--shadow-md);
}
.popular-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-accent);
    color: var(--navy-900);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(196, 148, 34, 0.2);
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--navy-100);
    padding-bottom: 25px;
}
.plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-900);
    margin: 0 0 8px 0;
}
.plan-desc {
    font-size: 0.85rem;
    color: var(--navy-400);
    margin: 0 0 20px 0;
    min-height: 40px;
    line-height: 1.5;
}
.plan-price-wrap {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-900);
}
.price-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy-300);
}

.card-features {
    margin-bottom: 30px;
    flex: 1;
}
.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--navy-700);
    line-height: 1.4;
}
.feat-icon {
    font-size: 1rem;
    flex-shrink: 0;
}
.card-features li span.disabled {
    color: var(--navy-300);
    text-decoration: line-through;
}

.card-footer {
    text-align: center;
}
.pricing-btn {
    width: 100%;
    height: 44px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* FAQ Accordion Section */
.pricing-faq-section {
    padding: 40px 14px 80px 14px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-accordion-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}
.accordion-item {
    background: #ffffff;
    border: 1px solid var(--navy-100);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.accordion-item:hover {
    border-color: var(--navy-200);
}
.accordion-title {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-800);
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    gap: 15px;
}
.accordion-arrow {
    font-size: 0.7rem;
    color: var(--navy-300);
    transition: transform 0.2s ease;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease-out;
    background: #fafbfc;
}
.accordion-content p {
    padding: 0 24px 24px 24px;
    margin: 0;
    font-size: 0.88rem;
    color: var(--navy-600);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 400px;
    }
    .pricing-title {
        font-size: 1.75rem;
    }
}


/* ── RECOMMENDED & SPONSORED FIRMS STYLES ── */
.recommended-firms-section {
    margin-top: 25px;
    border-top: 1px solid var(--navy-100);
    padding-top: 25px;
}
.recommended-firms-title {
    color: var(--navy-500);
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.recommended-firms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}
.rec-firm-card {
    background: #ffffff;
    border: 1px solid rgba(196, 148, 34, 0.25);
    border-left: 3px solid var(--c-accent);
    border-radius: 8px;
    padding: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    min-width: 0;
}
.rec-firm-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-accent);
}
.rec-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 0.65rem;
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.rec-firm-name {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    font-weight: 700;
    padding-right: 60px;
}
.rec-firm-name a {
    color: var(--navy-900);
    text-decoration: none;
}
.rec-firm-name a:hover {
    color: var(--c-brand);
}
.rec-firm-loc {
    font-size: 0.75rem;
    color: var(--navy-300);
    margin-bottom: 8px;
}
.rec-firm-meta {
    font-size: 0.75rem;
    color: var(--gold-600);
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.rec-tier-badge {
    font-size: 0.7rem;
    background: rgba(59, 130, 246, 0.1);
    color: rgb(59, 130, 246);
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 600;
}

/* Modal Sponsored Row */
.modal-firm-row.sponsored {
    background: #fffdf5 !important;
    border-left: 3.5px solid var(--c-accent) !important;
}
.modal-firm-row.sponsored:hover {
    background: #fefce8 !important;
}
.modal-firm-badge.sponsored-badge {
    background: rgba(245, 158, 11, 0.1) !important;
    color: #92400e !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
    opacity: 0.85;
}


/* ── RFQ MULTI-STEP FORM STYLES ── */
.rfq-section {
    padding: 60px 14px 100px 14px;
}
.rfq-container {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--navy-100);
    box-shadow: var(--shadow-md);
    border-radius: 16px;
    padding: 40px;
}
.rfq-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy-900);
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
}
.rfq-subtitle {
    font-size: 1rem;
    color: var(--navy-400);
    margin: 0 0 35px 0;
}

/* Progress Bar indicator */
.rfq-progress-bar {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    background: #ffffff;
    width: 60px;
}
.progress-step span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--navy-100);
    color: var(--navy-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.25s ease;
    border: 2px solid #ffffff;
}
.progress-step.active span {
    background: var(--navy-900);
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.15);
}
.progress-step label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--navy-300);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.progress-step.active label {
    color: var(--navy-900);
}
.progress-line {
    position: absolute;
    top: 16px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: var(--navy-100);
    z-index: 1;
}
.progress-line-fill {
    height: 100%;
    width: 0%;
    background: var(--navy-900);
    transition: width 0.25s ease;
}

/* Steps */
.rfq-step {
    display: none;
}
.rfq-step.active {
    display: block;
    animation: rfqStepIn 0.3s ease-out;
}
@keyframes rfqStepIn {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-800);
    margin: 0 0 20px 0;
    border-bottom: 1px solid var(--navy-100);
    padding-bottom: 10px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 6px;
}
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: rgb(239, 68, 68);
    background-color: rgba(239, 68, 68, 0.03);
}

/* Summary Box */
.rfq-summary-box {
    background: var(--navy-50);
    border: 1px solid var(--navy-100);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.summary-item {
    font-size: 0.9rem;
    color: var(--navy-800);
}
.summary-item strong {
    color: var(--navy-900);
}

@media (max-width: 600px) {
    .rfq-container {
        padding: 25px 20px;
    }
    .progress-step label {
        display: none;
    }
}


/* ── HOME HERO & DETAILS CTA STYLES ── */
.home-hero-section {
    position: relative;
    z-index: 1000;
    overflow: visible !important;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    color: #ffffff;
    padding: 80px 14px;
    text-align: center;
    border-bottom: 4px solid var(--c-accent);
}
.hero-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: -0.02em;
}
.hero-lead {
    font-size: 1.15rem;
    color: var(--navy-200);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Firm Detail Page RFQ CTA Card */
.firm-rfq-cta-card {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    border: 1px solid var(--navy-700);
    border-radius: 8px;
    padding: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.firm-rfq-cta-card h4 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}
.firm-rfq-cta-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--navy-200);
}
.firm-rfq-cta-btn {
    border-radius: 4px;
    padding: 10px 20px;
    font-weight: 700;
    background: var(--c-accent);
    color: var(--navy-900) !important;
    border: none;
    white-space: nowrap;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-block;
}
.firm-rfq-cta-btn:hover {
    background: #d4a73b;
}

/* Mobile Fixed Bottom CTA Bar */
.mobile-fixed-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 10px 14px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-top: 1px solid var(--navy-100);
}
.mobile-fixed-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--c-accent) 0%, #d4a73b 100%);
    color: var(--navy-900) !important;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(196, 148, 34, 0.2);
}

@media (max-width: 900px) {
    body {
        padding-bottom: 70px;
    }
}


/* Global Member Tier Badges */
.badge-tier-elite {
    background: rgba(26, 58, 92, 0.1) !important;
    color: var(--navy-900) !important;
}
.badge-tier-pro {
    background: rgba(196, 148, 34, 0.1) !important;
    color: var(--c-accent) !important;
}
.badge-tier-basic {
    background: #f3f4f6 !important;
    color: #4b5563 !important;
}
.badge-tier-elite, .badge-tier-pro, .badge-tier-basic {
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
}


/* ============================================================
   KURUCU ÜYELİK (EARLY BIRD / FOUNDING MEMBER) STİLLERİ
   ============================================================ */

/* Pricing card early-bird banner */
.early-bird-banner {
    background: linear-gradient(90deg, #c49422, #e8b84b, #c49422);
    background-size: 200% auto;
    animation: shimmer-eb 2.5s linear infinite;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 7px 16px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

@keyframes shimmer-eb {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Struck-through original price */
.price-original {
    text-align: center;
    margin-bottom: 4px;
}
.strikethrough {
    text-decoration: line-through;
    color: var(--navy-400);
    font-size: 0.95rem;
}

/* Early bird discounted price */
.eb-price {
    color: #c49422 !important;
    font-size: 2.2rem !important;
}

/* Locked price note */
.eb-locked-note {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: #10b981;
    margin-top: 5px;
    font-weight: 600;
}

/* Scarcity counter */
.eb-scarcity {
    margin-top: 12px;
    text-align: center;
    font-size: 0.9rem;
    color: #ef4444;
    animation: pulse-red 1.8s ease-in-out infinite;
}
@keyframes pulse-red {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.65; }
}

/* Progress bar */
.eb-progress-wrap {
    margin-top: 10px;
}
.eb-progress-label {
    display: flex;
    justify-content: flex-end;
    font-size: 0.75rem;
    color: var(--navy-500);
    margin-bottom: 4px;
}
.eb-progress-bar {
    background: var(--navy-100);
    border-radius: 20px;
    height: 8px;
    overflow: hidden;
}
.eb-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c49422, #e8b84b);
    border-radius: 20px;
    transition: width 0.8s ease;
    min-width: 4px;
}

/* Sold-out note */
.eb-soldout-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--navy-400);
    background: var(--navy-50);
    border: 1px solid var(--navy-100);
    border-radius: 8px;
    padding: 6px 12px;
    margin-bottom: 12px;
}

/* ---- Kurucu Üye Rozeti (Firm cards & detail page) ---- */
.badge-founding-member {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #c49422 0%, #e8b84b 50%, #c49422 100%);
    background-size: 200% auto;
    animation: shimmer-eb 2.5s linear infinite;
    color: #1a1a1a;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 0 8px rgba(196, 148, 34, 0.45);
    white-space: nowrap;
    vertical-align: middle;
}

/* ============================================================ */

.hero-bottom-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--navy-100, #e2e8f0) 20%, var(--navy-100, #e2e8f0) 80%, transparent 100%);
    margin: 16px auto;
    max-width: 1200px;
}

/* ── HOMEPAGE STATS RIBBON ── */
.stats-ribbon-section {
    background: #ffffff;
    border-bottom: 1px solid var(--navy-50);
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}
.stats-ribbon-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.stat-item {
    text-align: center;
    min-width: 0;
    flex: 1;
}
.stat-item-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.2;
}
.stat-item-label {
    font-size: 0.7rem;
    color: var(--navy-400);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
    line-height: 1.2;
}

/* ── HOMEPAGE HERO SEARCH ── */
.hero-search-cta-wrap {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.hero-search-form {
    flex: 1;
    min-width: 280px;
    display: flex;
    background: #ffffff;
    border-radius: 30px;
    padding: 5px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--navy-100);
}
.hero-search-form input[type="text"] {
    border: none;
    outline: none;
    padding: 10px 20px;
    font-size: 0.95rem;
    flex: 1;
    border-radius: 30px;
    background: transparent;
}
.hero-search-form button {
    border-radius: 30px;
    padding: 10px 25px;
}
.hero-rfq-btn {
    height: 52px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--c-accent) 0%, #d4a73b 100%);
    color: var(--navy-900);
    font-size: 1.05rem;
    border: none;
    box-shadow: 0 4px 15px rgba(196, 148, 34, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero-rfq-btn:hover {
    box-shadow: 0 6px 20px rgba(196, 148, 34, 0.5);
    transform: translateY(-2px);
}

/* ── FAQ SECTION ── */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.faq-item {
    background: white;
    border: 1px solid var(--navy-100);
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.3s;
    text-align: left;
}
.faq-item:hover {
    box-shadow: var(--shadow);
}
.faq-item h3 {
    font-size: 1.1rem;
    color: var(--navy-800);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.faq-item p {
    color: var(--navy-400);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-left: 28px;
}

/* ── SPONSOR BANNER CARD ── */
.sponsor-banner-card {
    background: rgba(196, 148, 34, 0.03);
    border: 2px dashed var(--c-accent);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* ── EMPTY STATE ── */
.empty-state {
    text-align: center;
    padding: 40px 0;
    color: var(--navy-300);
}
.empty-state p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .hero-search-cta-wrap {
        flex-direction: column;
    }
    .hero-search-form {
        min-width: unset;
        width: 100%;
    }
    .hero-rfq-btn {
        width: 100%;
    }
    .stats-ribbon-inner {
        gap: 4px;
    }
    .stat-item-value {
        font-size: 1.2rem;
    }
    .stat-item-label {
        font-size: 0.65rem;
    }
    .sponsor-banner-card {
        padding: 16px;
        flex-direction: column;
    }
}

/* ============================================================
   COMPACT DIRECTORY & LAZY LOAD PAGINATION DESIGN
   ============================================================ */
.os-window-container {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px -3px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    margin-bottom: 25px;
    transition: all 0.25s ease;
}

.os-directory-table {
    width: 100%;
    border-collapse: collapse;
}

.os-directory-header {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.os-directory-header th {
    padding: 10px 14px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    text-align: left;
}

.os-directory-header th.text-right {
    text-align: right;
}

.os-directory-row {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
    background: #ffffff;
}

.os-directory-row:last-child {
    border-bottom: none;
}

.os-directory-row:hover {
    background: #f8fafc;
}

/* Monetized / Sponsored / Vitrin Row Differentiation */
.os-directory-row.featured-row {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
    border-left: 3px solid #f59e0b;
}

.os-directory-row.featured-row:hover {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.08) 0%, rgba(248, 250, 252, 1) 100%);
}

.os-directory-row.sponsored-row {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
    border-left: 3px solid #2563eb;
}

.os-directory-row.sponsored-row:hover {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0%, rgba(248, 250, 252, 1) 100%);
}

.os-cell {
    padding: 9px 14px;
    vertical-align: middle;
}

/* Cell: Firma Adı & Avatar */
.os-firm-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.os-firm-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    text-transform: uppercase;
}

.os-firm-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.os-firm-main {
    min-width: 0;
}

.os-firm-title-row {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.os-firm-name {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    transition: color 0.15s ease;
}

.os-firm-name:hover {
    color: #2563eb;
}

.os-verified-check {
    color: #10b981;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
}

.os-firm-sub {
    font-size: 0.74rem;
    color: #94a3b8;
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

/* Cell: Location, Category, Rating */
.os-loc-text {
    font-size: 0.78rem;
    color: #475569;
    font-weight: 500;
    white-space: nowrap;
}

.os-cat-text {
    font-size: 0.78rem;
    color: #64748b;
    white-space: nowrap;
}

.os-rating-box {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.os-rating-stars {
    color: #f59e0b;
    font-size: 0.78rem;
}

.os-rating-num {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1e293b;
}

.os-rating-new {
    font-size: 0.74rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Action Button */
.os-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 5px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.os-action-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
}

/* Monetization Badges */
.os-badge-vitrin {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 1px 7px;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
}

.os-badge-sponsor {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 1px 7px;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Pagination / Load More Bar */
.os-pagination-bar {
    padding: 10px 16px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.os-pagination-info {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

.os-load-more-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #2563eb;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.os-load-more-btn:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

/* Responsive Table & Mobile Polish */
@media (max-width: 868px) {
    .os-col-cat, .os-col-sub {
        display: none;
    }
}
@media (max-width: 640px) {
    /* OS Directory: compact mobile */
    .os-col-loc {
        display: none;
    }
    .os-window-container {
        border-radius: 10px;
        margin-bottom: 16px;
    }
    .os-directory-header th {
        padding: 8px 10px;
        font-size: 0.62rem;
    }
    .os-cell {
        padding: 7px 10px;
    }
    .os-firm-avatar {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        font-size: 0.7rem;
    }
    .os-firm-cell {
        gap: 8px;
    }
    .os-firm-name {
        font-size: 0.78rem;
    }
    .os-firm-sub {
        display: none;
    }
    .os-rating-stars {
        font-size: 0.7rem;
    }
    .os-rating-num {
        font-size: 0.7rem;
    }
    .os-rating-new {
        font-size: 0.68rem;
    }
    .os-action-btn {
        padding: 3px 9px;
        font-size: 0.68rem;
        border-radius: 4px;
    }
    .os-badge-vitrin {
        font-size: 0.58rem;
        padding: 1px 5px;
    }
    .os-verified-check svg {
        width: 11px;
        height: 11px;
    }
    .os-pagination-bar {
        padding: 8px 12px;
        gap: 8px;
    }
    .os-pagination-info {
        font-size: 0.72rem;
    }
    .os-load-more-btn {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    /* Stats ribbon compact - single row */
    .stats-ribbon-section {
        padding: 10px 0;
    }
    .stats-ribbon-inner {
        gap: 2px;
    }
    .stat-item-value {
        font-size: 1rem;
    }
    .stat-item-label {
        font-size: 0.58rem;
        letter-spacing: 0;
    }

    /* Section heads compact */
    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .section-head h2 {
        font-size: 1.1rem !important;
    }
    .section-head .more-link,
    .section-head span {
        font-size: 0.75rem;
    }

    /* Sponsor banner card compact */
    .sponsor-banner-card {
        padding: 14px;
        gap: 12px;
    }

    /* FAQ compact */
    .faq-item {
        padding: 14px;
    }
    .faq-item h3 {
        font-size: 0.95rem;
    }
    .faq-item p {
        font-size: 0.85rem;
        margin-left: 0;
    }
}

/* Extra small screens */
@media (max-width: 380px) {
    .os-directory-header th:nth-child(4),
    .os-directory-header th:nth-child(5) {
        display: none;
    }
    .os-cell:nth-child(4),
    .os-cell:nth-child(5) {
        display: none;
    }
    .os-firm-avatar {
        width: 24px;
        height: 24px;
        font-size: 0.62rem;
    }
    .os-firm-name {
        font-size: 0.72rem;
    }
}



