/* Baayim - Ana Site Stilleri */

:root {
    --brand-primary: #2563eb;
    --brand-accent: #06b6d4;
    --brand-gold: #d7aa3f;
    --primary: var(--brand-primary);
    --primary-dark: color-mix(in srgb, var(--brand-primary) 82%, #000);
    --accent: var(--brand-accent);
    --gold: var(--brand-gold);
    --text: #0f172a;
    --text-muted: #64748b;
    --bg: #f8fafc;
    --white: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --surface-strong: #e2e8f0;
    --border: #e2e8f0;
    --featured: #f59e0b;
    --header-bg: rgba(255, 255, 255, 0.90);
    --footer-bg: #08111f;
    --input-bg: #ffffff;
    --radius: 16px;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}

html[data-theme="dark"] {
    --text: #e5edf8;
    --text-muted: #9aa8bc;
    --bg: #08111f;
    --white: #101a2b;
    --surface: #101a2b;
    --surface-soft: #0b1424;
    --surface-strong: #1d2a3d;
    --border: rgba(148, 163, 184, 0.22);
    --header-bg: rgba(8, 17, 31, 0.90);
    --footer-bg: #050914;
    --input-bg: #0b1424;
    --shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
    --shadow-hover: 0 26px 58px rgba(0, 0, 0, 0.32);
}

html[data-theme="midnight"] {
    --primary: var(--gold, #d7aa3f);
    --primary-dark: #9c6f17;
    --accent: #f1d17a;
    --text: #f8edcf;
    --text-muted: #b9ad91;
    --bg: #090b10;
    --white: #11141b;
    --surface: #11141b;
    --surface-soft: #0b0d12;
    --surface-strong: #24202a;
    --border: rgba(217, 174, 74, 0.24);
    --header-bg: rgba(9, 11, 16, 0.92);
    --footer-bg: #050507;
    --input-bg: #0c0e13;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.30);
    --shadow-hover: 0 28px 70px rgba(0, 0, 0, 0.44);
}

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

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Sik masaustu imleci */
.luxury-cursor {
    --cursor-x: -50px;
    --cursor-y: -50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(var(--cursor-x), var(--cursor-y), 0);
    transition: opacity 0.18s ease;
}

.luxury-cursor.is-visible {
    opacity: 1;
}

.luxury-cursor-ring,
.luxury-cursor-dot {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    pointer-events: none;
}

.luxury-cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(37, 99, 235, 0.54);
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.045);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.42) inset, 0 5px 20px rgba(37, 99, 235, 0.13);
    transform: translate(-50%, -50%);
    transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease,
                background 0.22s ease, box-shadow 0.22s ease, transform 0.12s ease;
}

.luxury-cursor-dot {
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: linear-gradient(135deg, #60a5fa, #1d4ed8);
    box-shadow: 0 0 9px rgba(37, 99, 235, 0.55);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: width 0.18s ease, height 0.18s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.luxury-cursor.is-interactive .luxury-cursor-ring {
    width: 46px;
    height: 46px;
    border-color: rgba(37, 99, 235, 0.76);
    background: rgba(37, 99, 235, 0.09);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset, 0 8px 26px rgba(37, 99, 235, 0.20);
}

.luxury-cursor.is-premium .luxury-cursor-ring {
    border-color: rgba(229, 178, 73, 0.86);
    background: rgba(229, 178, 73, 0.08);
    box-shadow: 0 0 0 1px rgba(255, 244, 205, 0.16) inset, 0 0 22px rgba(229, 178, 73, 0.24);
}

.luxury-cursor.is-premium .luxury-cursor-dot {
    background: linear-gradient(135deg, #fff1ae, #c88722);
    box-shadow: 0 0 11px rgba(232, 185, 83, 0.75);
}

.luxury-cursor.is-pressed .luxury-cursor-ring {
    transform: translate(-50%, -50%) scale(0.78);
}

.luxury-cursor.is-form-field {
    opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
    html.custom-cursor-ready body,
    html.custom-cursor-ready a,
    html.custom-cursor-ready button,
    html.custom-cursor-ready label,
    html.custom-cursor-ready [role='button'] {
        cursor: none;
    }

    html.custom-cursor-ready input,
    html.custom-cursor-ready textarea,
    html.custom-cursor-ready select,
    html.custom-cursor-ready [contenteditable='true'] {
        cursor: auto;
    }
}

/* Restore native browser cursor when dialog modal is open */
html.custom-cursor-ready:has(dialog[open]) body,
html.custom-cursor-ready:has(dialog[open]) body * {
    cursor: auto !important;
}

html.custom-cursor-ready:has(dialog[open]) a,
html.custom-cursor-ready:has(dialog[open]) button,
html.custom-cursor-ready:has(dialog[open]) label,
html.custom-cursor-ready:has(dialog[open]) [role='button'] {
    cursor: pointer !important;
}

html.custom-cursor-ready:has(dialog[open]) .luxury-cursor {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* Ust Bilgi */
.site-header {
    background: var(--header-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.82);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 22px rgba(15, 23, 42, 0.035);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.theme-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    min-height: 38px;
    padding: 0.42rem 0.72rem;
    border: 1px solid color-mix(in srgb, var(--primary) 24%, var(--border));
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 86%, var(--primary) 14%);
    color: var(--text);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
    font: inherit;
    font-size: 0.74rem;
    font-weight: 850;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.theme-switcher:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--primary) 52%, var(--border));
}

.theme-switcher > span {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 18%, transparent);
    color: var(--primary);
}

.theme-switcher small {
    font: inherit;
    font-size: 0.68rem;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 38px;
    padding: 0.38rem 0.55rem;
    border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--border));
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 90%, var(--primary) 10%);
    color: var(--text);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.055);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.language-switcher:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--primary) 50%, var(--border));
}

.language-switcher > span {
    display: inline-grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 15%, transparent);
    font-size: 0.78rem;
}

.language-switcher select {
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 900;
    cursor: pointer;
    padding: 0;
    min-width: 42px;
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.site-logo-img {
    max-height: 46px;
    max-width: 175px;
    object-fit: contain;
    display: block;
}

img.theme-logo-auto-invert {
    filter: brightness(0) invert(1) drop-shadow(0 6px 14px rgba(0, 0, 0, 0.22));
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex: 1;
}

.nav-primary,
.nav-actions {
    display: flex;
    align-items: center;
}

.nav-primary {
    gap: 0.15rem;
    padding: 0.28rem;
    border: 1px solid rgba(226, 232, 240, 0.88);
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.85);
}

.nav-actions {
    gap: 0.45rem;
}

.nav-link,
.nav-login,
.nav-account-link,
.nav-logout {
    text-decoration: none;
    white-space: nowrap;
}

.nav-link {
    position: relative;
    color: #536177;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.55rem 0.86rem;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1d4ed8;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.055);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.22rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #2563eb;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.55);
}

.nav-login,
.nav-account-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    color: #42516a;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.58rem 0.78rem;
    border-radius: 11px;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-login {
    border: 1px solid #bfdbfe;
    background: linear-gradient(180deg, #ffffff, #f4f8ff);
    color: #1d4ed8;
    box-shadow: 0 5px 14px rgba(37, 99, 235, 0.10);
}

.nav-login span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border-radius: 6px;
    background: #e7f0ff;
    color: #2563eb;
    font-size: 0.68rem;
}

.nav-login:hover {
    color: #ffffff;
    border-color: #2563eb;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.24);
    transform: translateY(-1px);
}

.nav-login:hover span {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.nav-account-link:hover {
    color: #1d4ed8;
    background: #eff6ff;
}

.nav-register {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.62rem 1rem;
    border-radius: 11px;
    background: linear-gradient(135deg, #2f6ff2 0%, #1d4ed8 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 7px 18px rgba(37, 99, 235, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav-admin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    background: #ffffff;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.045);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-admin-link:hover {
    color: #1d4ed8;
    border-color: #bfdbfe;
    transform: translateY(-1px);
}

.nav-profile {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.3rem 0.65rem 0.3rem 0.32rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    color: var(--text);
    text-decoration: none;
}

.nav-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, #60a5fa, #1d4ed8);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
}

.nav-profile-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.nav-profile-copy strong {
    max-width: 110px;
    overflow: hidden;
    color: var(--text);
    font-size: 0.75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-profile-copy small {
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 650;
}

.nav-logout {
    color: #dc2626;
    font-size: 0.76rem;
    font-weight: 750;
    padding: 0.55rem 0.58rem;
    border-radius: 9px;
}

.nav-logout:hover {
    background: #fef2f2;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #dbe4ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.07);
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 4px;
    background: #334155;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-nav-heading,
.nav-section-label,
.nav-item-icon,
.nav-action-icon,
.nav-mobile-label,
.nav-profile-arrow {
    display: none;
}

/* Hero Bolumu */
.hero {
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 40%),
                radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.12), transparent 45%),
                linear-gradient(135deg, #0b0f19 0%, #111827 50%, #1e1b4b 100%);
    color: #ffffff !important;
    padding: 6.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(129, 140, 248, 0.4);
    color: #e0e7ff;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 40%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 2.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Populer Kategoriler Hizli Filtre Bari */
.category-bar-section {
    background: var(--white);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.category-scroll-container {
    overflow: hidden;
    padding: 0.15rem 0 0.25rem;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 2.5%, #000 97.5%, transparent);
}

.category-scroll-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: category-marquee 78s linear infinite;
}

.category-scroll-container:hover .category-scroll-track,
.category-scroll-container:focus-within .category-scroll-track {
    animation-play-state: paused;
}

.category-scroll-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.75rem;
    padding-right: 0.75rem;
}

.category-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari ve Opera icin kaydirma cubugunu gizle */
}

.category-scroll-container {
    -ms-overflow-style: none;  /* IE ve Edge */
    scrollbar-width: none;  /* Firefox */
}

.category-scroll-item {
    white-space: nowrap;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
}

.category-scroll-item:hover {
    background: #e2e8f0;
    color: var(--text);
    transform: translateY(-1px);
    border-color: #94a3b8;
}

.category-scroll-item.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

@keyframes category-marquee {
    to { transform: translate3d(-50%, 0, 0); }
}

.search-form {
    position: relative;
    z-index: 8;
    max-width: 1040px;
    margin: 0 auto 2.5rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.75rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.search-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.search-row input,
.search-row select {
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    outline: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-row input {
    width: 100%;
    min-width: 0;
}

.search-autocomplete {
    position: relative;
    flex: 2.5;
    min-width: 260px;
}

.search-row select {
    flex: 1;
    min-width: 170px;
    cursor: pointer;
}

.search-row input:focus,
.search-row select:focus {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    display: none;
    max-height: 390px;
    padding: 0.45rem;
    overflow-y: auto;
    border: 1px solid #dbe5f1;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22);
    text-align: left;
}

.search-suggestions.is-open {
    display: block;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.62rem;
    border-radius: 11px;
    color: #1e293b;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.18s ease;
}

.suggestion-item:hover,
.suggestion-item.is-active {
    background: #f1f6ff;
    transform: translateX(2px);
}

.suggestion-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 800;
}

.suggestion-initial.is-pro {
    border-color: #edcb74;
    background: linear-gradient(135deg, #fff5c8, #dba943);
    color: #2a1b07;
}

.suggestion-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.suggestion-copy strong {
    overflow: hidden;
    font-size: 0.78rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.suggestion-copy small {
    margin-top: 0.12rem;
    color: #718096;
    font-size: 0.65rem;
    font-weight: 600;
}

.suggestion-badges {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.suggestion-badges em {
    padding: 0.18rem 0.35rem;
    border-radius: 5px;
    background: #fff7e0;
    color: #b7791f;
    font-size: 0.52rem;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.suggestion-badges em.is-pro {
    background: #14100a;
    color: #efcb72;
}

.suggestion-empty {
    padding: 1.1rem;
    color: #718096;
    font-size: 0.76rem;
    font-weight: 650;
    text-align: center;
}

.search-advanced-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.search-filter-toggle,
.search-sort-control {
    display: inline-flex;
    align-items: center;
    min-height: 37px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #e6edf7;
    font-size: 0.72rem;
    font-weight: 700;
}

.search-filter-toggle {
    gap: 0.42rem;
    padding: 0.42rem 0.7rem;
    cursor: pointer;
    user-select: none;
}

.search-filter-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 5px;
    color: transparent;
    font-size: 0.64rem;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.search-filter-toggle input:checked + .toggle-check {
    border-color: #60a5fa;
    background: #2563eb;
    color: #ffffff;
}

.pro-filter-toggle input:checked + .toggle-check {
    border-color: #efd27d;
    background: linear-gradient(135deg, #f5d77f, #b9791f);
    color: #181006;
}

.search-sort-control {
    padding-left: 0.68rem;
    overflow: hidden;
}

.search-sort-control > span {
    color: #9eacbe;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.search-sort-control select {
    height: 35px;
    padding: 0 1.8rem 0 0.45rem;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font: inherit;
    cursor: pointer;
}

.search-sort-control option {
    color: #172033;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.hero-stats span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats strong {
    color: #3b82f6;
}

/* Kesif bandi */
.discovery-ticker {
    position: relative;
    z-index: 4;
    overflow: hidden;
    color: #dbe4f0;
    background:
        radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.18), transparent 28%),
        linear-gradient(90deg, #0a0d14 0%, #111827 50%, #0a0d14 100%);
    border-top: 1px solid rgba(147, 197, 253, 0.12);
    border-bottom: 1px solid rgba(218, 169, 69, 0.30);
    box-shadow: 0 9px 25px rgba(15, 23, 42, 0.13);
}

.ticker-viewport {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    animation: ticker-scroll 48s linear infinite;
}

.discovery-ticker:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.75rem 0;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.5rem;
    margin-right: 2.8rem;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.025em;
    white-space: nowrap;
    color: #cbd5e1;
}

.ticker-item strong {
    color: #ffffff;
    font-weight: 800;
}

.ticker-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border: 1px solid rgba(96, 165, 250, 0.28);
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    color: #93c5fd;
    font-size: 0.66rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ticker-item-pro {
    color: #f6dfa1;
}

.ticker-item-pro .ticker-icon {
    color: #ffe8a3;
    border-color: rgba(230, 180, 76, 0.42);
    background: rgba(190, 126, 25, 0.14);
    box-shadow: 0 0 13px rgba(218, 169, 69, 0.15), inset 0 1px 0 rgba(255, 245, 207, 0.12);
}

@keyframes ticker-scroll {
    to { transform: translate3d(-50%, 0, 0); }
}

/* Kampanya Afisi */
.join-campaign-section {
    padding: 3rem 0 1rem 0;
}

.campaign-card {
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
    border: 1px solid rgba(191, 219, 254, 0.6);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.05);
}

.campaign-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.campaign-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.campaign-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-campaign-outline {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-campaign-outline:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-1px);
}

.btn-campaign-primary {
    background: var(--primary);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: all 0.2s ease;
}

.btn-campaign-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff !important;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

/* Firma formunda bayilik editoru */
.dealership-editor-panel {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding: 1.35rem;
    border: 1px solid #d8e5f5;
    border-radius: 14px;
    background: linear-gradient(145deg, #f8fbff, #fffdf7);
    box-shadow: inset 0 1px 0 #ffffff;
}

.dealership-editor-panel[hidden] {
    display: none;
}

.dealership-editor-heading {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e6edf6;
}

.dealership-editor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
}

.dealership-editor-heading h3 {
    margin: 0 0 0.15rem;
    color: #172033;
    font-size: 0.95rem;
}

.dealership-editor-heading p {
    margin: 0;
    color: #718096;
    font-size: 0.7rem;
}

.dealership-editor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.dealership-editor-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dealership-editor-field > span {
    color: #46556d;
    font-size: 0.72rem;
    font-weight: 750;
}

.dealership-editor-field input,
.dealership-editor-field textarea {
    width: 100%;
    padding: 0.72rem 0.82rem;
    border: 1px solid #d7e0eb;
    border-radius: 9px;
    outline: 0;
    background: #ffffff;
    color: #172033;
    font: inherit;
    font-size: 0.8rem;
    resize: vertical;
}

.dealership-editor-field input:focus,
.dealership-editor-field textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

/* Bayilik firsatlari sayfasi */
.dealership-page-hero {
    position: relative;
    overflow: hidden;
    padding: 4.4rem 0 4.8rem;
    color: #ffffff;
    background:
        radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.28), transparent 30%),
        radial-gradient(circle at 88% 88%, rgba(213, 157, 47, 0.23), transparent 31%),
        linear-gradient(140deg, #080c14 0%, #111827 52%, #18130b 100%);
    border-bottom: 1px solid rgba(222, 174, 74, 0.34);
}

.dealership-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(135deg, #000, transparent 75%);
}

.dealership-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.dealership-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(96, 165, 250, 0.30);
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.11);
    color: #a9c9ff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.dealership-page-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    background: linear-gradient(105deg, #ffffff 0%, #f8fafc 56%, #edcb73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dealership-page-hero > .container > p,
.dealership-hero-inner > p {
    max-width: 760px;
    margin: 0 auto 2rem;
    color: #adb8c8;
    font-size: 1rem;
    line-height: 1.75;
}

.dealership-hero-stats {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.dealership-hero-stats span {
    padding: 0.48rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.045);
    color: #aeb9c8;
    font-size: 0.7rem;
    font-weight: 650;
}

.dealership-hero-stats strong {
    margin-right: 0.2rem;
    color: #f1ce77;
}

.dealership-list-section {
    padding: 4.5rem 0 5.5rem;
}

.dealership-filter-panel {
    margin-bottom: 2rem;
    padding: 1rem;
    border: 1px solid #dce5f0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
}

.dealership-filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #edf1f6;
}

.dealership-filter-heading > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dealership-filter-heading > div > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #eff6ff;
    color: #2563eb;
}

.dealership-filter-heading strong {
    color: #263349;
    font-size: 0.78rem;
}

.dealership-filter-heading small,
.dealership-filter-status {
    color: #8a98aa;
    font-size: 0.6rem;
    font-weight: 650;
}

.dealership-filter-status {
    padding: 0.25rem 0.45rem;
    border-radius: 6px;
    background: #f8fafc;
}

.dealership-filter-grid {
    display: grid;
    grid-template-columns: minmax(210px, 1.5fr) repeat(4, minmax(130px, 1fr)) auto auto auto;
    gap: 0.6rem;
    align-items: end;
}

.dealership-filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
    min-width: 0;
}

.dealership-filter-field > span {
    color: #66758a;
    font-size: 0.58rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dealership-filter-field input,
.dealership-filter-field select {
    width: 100%;
    height: 40px;
    padding: 0 0.65rem;
    border: 1px solid #d9e2ec;
    border-radius: 9px;
    outline: 0;
    background: #fbfcfe;
    color: #263349;
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 650;
}

.dealership-filter-field input:focus,
.dealership-filter-field select:focus {
    border-color: #60a5fa;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.10);
}

.dealership-pro-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    height: 40px;
    padding: 0 0.65rem;
    border: 1px solid #ead69e;
    border-radius: 9px;
    background: #fffaf0;
    color: #9b6518;
    cursor: pointer;
    white-space: nowrap;
}

.dealership-pro-toggle input {
    position: absolute;
    opacity: 0;
}

.dealership-pro-toggle strong {
    font-size: 0.62rem;
}

.dealership-pro-toggle input:checked + .toggle-check {
    border-color: #d4a84d;
    background: linear-gradient(135deg, #f5d77f, #b9791f);
    color: #181006;
}

.dealership-filter-submit,
.clear-dealership-filters {
    height: 40px;
    padding: 0 0.72rem;
    border-radius: 9px;
    font-family: inherit;
    font-size: 0.64rem;
    font-weight: 800;
    cursor: pointer;
}

.dealership-filter-submit {
    border: 0;
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.20);
}

.clear-dealership-filters {
    border: 1px solid #dce5f0;
    background: #ffffff;
    color: #64748b;
}

.dealership-results {
    position: relative;
    min-height: 260px;
    scroll-margin-top: 92px;
    transition: opacity 0.2s ease;
}

.dealership-results.is-loading {
    opacity: 0.48;
    pointer-events: none;
}

.dealership-filter-empty .clear-dealership-filters {
    margin-top: 0.8rem;
}

.dealership-count-label {
    padding: 0.5rem 0.8rem;
    border: 1px solid #dce5f0;
    border-radius: 9px;
    background: #ffffff;
    color: #65748a;
    font-size: 0.68rem;
    font-weight: 750;
}

.dealership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
    gap: 1.65rem;
}

.dealership-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    overflow: hidden;
    border: 1px solid #dfe7f1;
    border-radius: 20px;
    background: linear-gradient(150deg, #ffffff, #fbfdff);
    box-shadow: 0 14px 36px -24px rgba(15, 23, 42, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dealership-card:hover {
    transform: translateY(-5px);
    border-color: #bfd5f4;
    box-shadow: 0 24px 50px -28px rgba(37, 99, 235, 0.28);
}

.dealership-card.is-pro {
    border-color: rgba(211, 162, 65, 0.48);
    background:
        radial-gradient(circle at 100% 0%, rgba(220, 170, 71, 0.12), transparent 31%),
        linear-gradient(150deg, #10141d, #090c12);
    color: #eef2f7;
    box-shadow: 0 20px 48px -26px rgba(190, 129, 28, 0.55);
}

.dealership-card-top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.dealership-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    padding: 3px;
    overflow: hidden;
    border: 1px solid #dce5ef;
    border-radius: 14px;
    background: #ffffff;
    color: #2563eb;
    font-size: 1.2rem;
    font-weight: 800;
}

.dealership-card.is-pro .dealership-logo {
    border-color: #d9ad58;
    background: #151922;
    color: #f0ca70;
}

.dealership-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.dealership-card-title {
    min-width: 0;
    flex: 1;
}

.dealership-card-title h3 {
    margin: 0.2rem 0 0.18rem;
    color: #172033;
    font-size: 1.02rem;
    line-height: 1.3;
}

.dealership-card.is-pro .dealership-card-title h3 {
    color: #ffffff;
}

.dealership-card-title > p {
    margin: 0;
    color: #758399;
    font-size: 0.67rem;
    font-weight: 650;
}

.dealership-card-badges {
    display: flex;
    gap: 0.3rem;
}

.dealership-card-badges span {
    padding: 0.16rem 0.38rem;
    border-radius: 5px;
    background: #fff5dc;
    color: #b57518;
    font-size: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dealership-card-badges span.pro {
    background: linear-gradient(135deg, #fae7a4, #bc7b20);
    color: #1a1106;
}

.dealership-description {
    display: -webkit-box;
    min-height: 3.45rem;
    margin: 0 0 1.15rem;
    overflow: hidden;
    color: #64748b;
    font-size: 0.76rem;
    line-height: 1.55;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.dealership-card.is-pro .dealership-description {
    color: #9ca8b8;
}

.dealership-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-bottom: 1.1rem;
}

.dealership-metrics > div {
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
    padding: 0.7rem;
    border: 1px solid #e7edf4;
    border-radius: 10px;
    background: #f8fafc;
}

.dealership-card.is-pro .dealership-metrics > div {
    border-color: rgba(230, 195, 120, 0.11);
    background: rgba(255, 255, 255, 0.04);
}

.dealership-metrics small {
    color: #8794a7;
    font-size: 0.54rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.045em;
}

.dealership-metrics strong {
    color: #243047;
    font-size: 0.68rem;
    line-height: 1.35;
}

.dealership-card.is-pro .dealership-metrics strong {
    color: #ebce82;
}

.dealership-conditions {
    margin-bottom: 1rem;
    padding: 0.85rem 0.9rem;
    border-left: 3px solid #60a5fa;
    border-radius: 0 10px 10px 0;
    background: #f5f9ff;
}

.dealership-card.is-pro .dealership-conditions {
    border-left-color: #d8a847;
    background: rgba(222, 174, 74, 0.07);
}

.dealership-conditions h4 {
    margin: 0 0 0.3rem;
    color: #334155;
    font-size: 0.67rem;
    text-transform: uppercase;
}

.dealership-conditions p,
.dealership-support p {
    margin: 0;
    color: #64748b;
    font-size: 0.69rem;
    line-height: 1.55;
}

.dealership-card.is-pro .dealership-conditions h4,
.dealership-card.is-pro .dealership-conditions p,
.dealership-card.is-pro .dealership-support p {
    color: #b5bfcc;
}

.dealership-support {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dealership-support > span {
    color: #16a34a;
    font-weight: 800;
}

.dealership-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #edf1f6;
}

.dealership-card.is-pro .dealership-card-actions {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.dealership-card-actions > a {
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
}

.dealership-card.is-pro .dealership-card-actions > a {
    color: #9ca8b8;
}

.dealership-apply-button,
.dealership-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #3478f6, #1d4ed8);
    color: #ffffff;
    font-family: inherit;
    font-weight: 800;
    box-shadow: 0 7px 18px rgba(37, 99, 235, 0.22);
    cursor: pointer;
}

.dealership-apply-button {
    padding: 0.55rem 0.8rem;
    font-size: 0.68rem;
}

.dealership-card.is-pro .dealership-apply-button {
    background: linear-gradient(135deg, #f5dc8b, #b9781e);
    color: #1b1105;
    box-shadow: 0 7px 18px rgba(192, 126, 27, 0.24);
}

.dealership-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 2.2rem;
}

.dealership-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.7rem;
    border: 1px solid #dce5f0;
    border-radius: 9px;
    background: #ffffff;
    color: #5b6a80;
    font-size: 0.68rem;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.04);
}

.dealership-pagination a:hover,
.dealership-pagination a.active {
    border-color: #2563eb;
    background: #2563eb;
    color: #ffffff;
}

.dealership-application-section {
    padding: 0 0 6rem;
    scroll-margin-top: 92px;
}

.dealership-application-shell {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr);
    overflow: hidden;
    border: 1px solid #dfe7f1;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 70px -38px rgba(15, 23, 42, 0.35);
}

.dealership-application-copy {
    padding: 2.4rem;
    color: #ffffff;
    background:
        radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.26), transparent 38%),
        linear-gradient(145deg, #0d1320, #111827);
}

.dealership-application-copy h2 {
    margin: 0 0 0.9rem;
    font-size: 1.75rem;
    letter-spacing: -0.035em;
}

.dealership-application-copy > p {
    margin: 0 0 1.5rem;
    color: #a9b4c4;
    font-size: 0.78rem;
    line-height: 1.7;
}

.dealership-application-copy ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #d4dce7;
    font-size: 0.72rem;
    font-weight: 650;
}

.dealership-application-copy li span {
    margin-right: 0.35rem;
    color: #60a5fa;
}

.dealership-application-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    padding: 2.4rem;
}

.application-field {
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
}

.application-field.full,
.application-consent.full,
.dealership-submit.full,
.form-alert {
    grid-column: 1 / -1;
}

.application-field > span {
    color: #46556d;
    font-size: 0.7rem;
    font-weight: 750;
}

.application-field input,
.application-field select,
.application-field textarea {
    width: 100%;
    padding: 0.72rem 0.82rem;
    border: 1px solid #d9e2ec;
    border-radius: 9px;
    outline: 0;
    background: #fbfcfe;
    color: #172033;
    font-family: inherit;
    font-size: 0.78rem;
    resize: vertical;
}

.application-field input:focus,
.application-field select:focus,
.application-field textarea:focus {
    border-color: #60a5fa;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.application-field small {
    color: #94a3b8;
    font-size: 0.58rem;
}

.selected-firm-display {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 47px;
    padding: 0.65rem 0.8rem;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    color: #718096;
}

.selected-firm-display.has-selection {
    border-style: solid;
    border-color: #93c5fd;
    background: #eff6ff;
    color: #1e40af;
}

.selected-firm-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: #e2e8f0;
    color: #64748b;
}

.selected-firm-display.has-selection .selected-firm-icon {
    background: #2563eb;
    color: #ffffff;
}

.selected-firm-display strong {
    font-size: 0.75rem;
}

.application-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: #64748b;
    font-size: 0.65rem;
    line-height: 1.5;
}

.application-consent input {
    flex-shrink: 0;
    margin-top: 0.12rem;
    accent-color: #2563eb;
}

.dealership-submit {
    min-height: 45px;
    margin-top: 0.2rem;
    font-size: 0.76rem;
}

.form-alert {
    padding: 0.75rem 0.85rem;
    border-radius: 9px;
    font-size: 0.7rem;
    font-weight: 700;
}

.form-alert.success {
    border: 1px solid #bbf7d0;
    background: #ecfdf5;
    color: #166534;
}

.form-alert.error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Gelismis firma detayi */
.firm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.2rem;
}

.quote-open-button,
.whatsapp-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 43px;
    padding: 0 1rem;
    border-radius: 10px;
    font-size: 0.72rem;
    font-weight: 850;
    text-decoration: none;
}

.quote-open-button {
    border: 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
    cursor: pointer;
}

.whatsapp-action {
    border: 1px solid rgba(74, 222, 128, 0.35);
    background: rgba(22, 163, 74, 0.16);
    color: #86efac;
}

.firm-social-links > span {
    display: block;
    margin-bottom: 0.7rem;
    color: #6b7a90;
    font-size: 0.66rem;
    font-weight: 800;
}

.firm-social-links > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.firm-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 43px;
    padding: 0.4rem 0.68rem 0.4rem 0.42rem;
    border: 1px solid #d7e2ee;
    border-radius: 10px;
    background: #ffffff;
    color: #334155;
    box-shadow: 0 5px 14px rgba(15, 23, 42, 0.06);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.firm-social-links a:hover {
    transform: translateY(-2px);
    border-color: #b8c9dc;
    box-shadow: 0 9px 20px rgba(15, 23, 42, 0.1);
}

.firm-social-links b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.78rem;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.firm-social-links small {
    font-size: 0.62rem;
    font-weight: 800;
}

.firm-social-links .social-instagram b { background: linear-gradient(135deg, #7c3aed, #ec4899 60%, #f59e0b); }
.firm-social-links .social-facebook b { background: #1877f2; }
.firm-social-links .social-linkedin b { background: #0a66c2; font-size: 0.58rem; }
.firm-social-links .social-youtube b { background: #ff0000; }
.firm-social-links .social-tiktok b { background: linear-gradient(135deg, #111827, #00f2ea); }

.working-hours-card {
    padding: 0.95rem;
    border: 1px solid #e0e8f1;
    border-radius: 12px;
    background: #fbfcfe;
}

.working-hours-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.7rem;
}

.working-hours-title > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 900;
}

.working-hours-title > div {
    display: flex;
    flex-direction: column;
}

.working-hours-title strong {
    color: #263349;
    font-size: 0.73rem;
}

.working-hours-title small {
    font-size: 0.56rem;
    font-weight: 750;
}

.working-hours-title small.open { color: #16a34a; }
.working-hours-title small.closed { color: #dc2626; }

.working-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.working-hours-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.34rem 0.42rem;
    border-radius: 6px;
    color: #68778c;
    font-size: 0.59rem;
}

.working-hours-list > div.today {
    background: #eef6ff;
    color: #1d4ed8;
}

.working-hours-list strong {
    color: inherit;
    font-size: 0.58rem;
}

.firm-map-card {
    overflow: hidden;
    border: 1px solid #dce6f0;
    border-radius: 12px;
    background: #fff;
}

.firm-map-card iframe {
    display: block;
    width: 100%;
    height: 190px;
    border: 0;
}

.firm-map-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 40px;
    color: #1d4ed8;
    font-size: 0.65rem;
    font-weight: 800;
    text-decoration: none;
}

.firm-gallery-section,
.similar-firms-section {
    padding: 4.5rem 0;
    border-top: 1px solid #e6edf5;
    background: #fff;
}

.firm-detail-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.firm-detail-section-heading h2 {
    margin: 0.2rem 0 0;
    color: #172033;
    font-size: 1.8rem;
    letter-spacing: -0.035em;
}

.firm-detail-section-heading p {
    margin: 0.25rem 0 0;
    color: #8492a6;
    font-size: 0.67rem;
}

.firm-detail-section-heading > span,
.firm-detail-section-heading > a {
    color: #64748b;
    font-size: 0.65rem;
    font-weight: 750;
    text-decoration: none;
}

.firm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 170px;
    gap: 0.75rem;
}

.firm-gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: #e2e8f0;
    cursor: pointer;
}

.firm-gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.firm-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.firm-gallery-item:hover img { transform: scale(1.045); }

.firm-gallery-item > span {
    position: absolute;
    right: 0.7rem;
    bottom: 0.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
    backdrop-filter: blur(8px);
}

.gallery-lightbox,
.quote-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.38);
}

.gallery-lightbox::backdrop,
.quote-dialog::backdrop {
    background: rgba(3, 7, 18, 0.72);
    backdrop-filter: blur(5px);
}

.gallery-lightbox {
    width: min(920px, calc(100vw - 2rem));
    overflow: visible;
    background: #080d18;
}

.gallery-lightbox img {
    display: block;
    width: 100%;
    max-height: 75vh;
    border-radius: 18px;
    object-fit: contain;
}

.gallery-lightbox p {
    margin: 0;
    padding: 0.65rem 1rem;
    color: #cbd5e1;
    font-size: 0.7rem;
}

.dialog-close,
.quote-dialog-head > button {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #172033;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
}

.quote-dialog {
    width: min(650px, calc(100vw - 2rem));
    max-height: 90vh;
    overflow: visible;
    background: #fff;
}

.quote-dialog[open] {
    display: flex;
    flex-direction: column;
}

.quote-dialog-head {
    position: relative;
    padding: 1.25rem 1.35rem;
    background: linear-gradient(135deg, #111827, #1e3a5f);
}

.quote-dialog-head > div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.quote-dialog-head > div > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-weight: 900;
}

.quote-dialog-head small { color: #93c5fd; font-size: 0.58rem; font-weight: 800; text-transform: uppercase; }
.quote-dialog-head h2 { margin: 0.1rem 0 0; color: #fff; font-size: 1rem; }
.quote-dialog-body { padding: 1.35rem; overflow-y: auto; }
.quote-dialog-body > p { margin: 0 0 1rem; color: #718096; font-size: 0.67rem; }

.quote-request-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.quote-request-form label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.quote-request-form label > span { color: #46556d; font-size: 0.64rem; font-weight: 750; }
.quote-request-form label > span small { color: #94a3b8; font-weight: 600; }
.quote-request-form .full { grid-column: 1 / -1; }
.quote-request-form input,
.quote-request-form textarea {
    width: 100%;
    padding: 0.68rem 0.75rem;
    border: 1px solid #d9e2ec;
    border-radius: 8px;
    outline: none;
    background: #fbfcfe;
    color: #263349;
    font-family: inherit;
    font-size: 0.68rem;
}

.quote-request-form textarea { resize: vertical; }
.quote-request-form input:focus,
.quote-request-form textarea:focus { border-color: #60a5fa; box-shadow: 0 0 0 3px rgba(59,130,246,.1); }
.quote-request-form > button {
    min-height: 44px;
    padding: 0 1rem;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, #3478f6, #1d4ed8);
    color: #fff;
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 850;
    cursor: pointer;
}

.quote-user { grid-column: 1 / -1; display: flex; flex-direction: column; padding: 0.7rem; border: 1px solid #dbe6f1; border-radius: 8px; background: #f8fafc; }
.quote-user span { color: #718096; font-size: 0.57rem; }
.quote-user strong { color: #334155; font-size: 0.7rem; }
.quote-user small { color: #8492a6; font-size: 0.58rem; }
.quote-alert { margin-bottom: 0.8rem; padding: 0.7rem; border: 1px solid; border-radius: 8px; font-size: 0.64rem; font-weight: 750; }
.quote-alert.success { border-color: #bbf7d0; background: #f0fdf4; color: #166534; }
.quote-alert.error { border-color: #fecaca; background: #fef2f2; color: #991b1b; }

.similar-firms-section { background: linear-gradient(180deg, #f8fafc, #f1f5f9); }
.similar-firms-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
.similar-firm-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.75rem; padding: 0.9rem; border: 1px solid #dce5ef; border-radius: 14px; background: #fff; box-shadow: 0 8px 24px rgba(15,23,42,.04); }
.similar-firm-logo { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; overflow: hidden; border: 1px solid #e2e8f0; border-radius: 11px; background: #fff; color: #2563eb; font-weight: 850; }
.similar-firm-logo img { width: 100%; height: 100%; object-fit: contain; }
.similar-firm-copy { min-width: 0; }
.similar-firm-copy > div { display: flex; gap: 0.3rem; }
.similar-firm-copy h3 { overflow: hidden; margin: 0.2rem 0 0; color: #263349; font-size: 0.78rem; text-overflow: ellipsis; white-space: nowrap; }
.similar-firm-copy p { margin: 0.12rem 0 0; color: #8492a6; font-size: 0.58rem; }
.similar-verified,.similar-pro { padding: .12rem .3rem; border-radius: 4px; font-size: .5rem; font-weight: 800; }
.similar-verified { background:#e0f2fe;color:#0369a1; }.similar-pro{background:#fef3c7;color:#b45309;}
.similar-firm-card > a { display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:9px;background:#eff6ff;color:#2563eb;font-weight:850;text-decoration:none; }

/* Zengin Sirket Aciklama Editoru */
.firm-rich-editor { overflow: hidden; border: 1px solid #d7e2ed; border-radius: 11px; background: #fff; box-shadow: 0 5px 16px rgba(15,23,42,.04); }
.rich-editor-toolbar { display:flex;align-items:center;flex-wrap:wrap;gap:.25rem;padding:.48rem;border-bottom:1px solid #e4ebf3;background:#f8fafc; }
.rich-editor-toolbar > span:not(.toolbar-spacer) { width:1px;height:22px;margin:0 .18rem;background:#dce5ef; }
.rich-editor-toolbar .toolbar-spacer { flex:1; }
.rich-editor-toolbar button { display:inline-flex;align-items:center;justify-content:center;min-width:30px;height:30px;padding:0 .42rem;border:1px solid transparent;border-radius:7px;background:transparent;color:#536177;font:inherit;font-size:.65rem;font-weight:750;cursor:pointer; }
.rich-editor-toolbar button:hover,.rich-editor-toolbar button.active { border-color:#bfdbfe;background:#eff6ff;color:#1d4ed8; }
.rich-editor-surface,.rich-editor-source { width:100%;min-height:210px;padding:1rem;border:0;outline:0;background:#fff;color:#334155;font-family:inherit;font-size:.74rem;line-height:1.75;box-sizing:border-box; }
.rich-editor-surface:empty::before { content:attr(data-placeholder);color:#9aa8b9;pointer-events:none; }
.rich-editor-source { display:none;resize:vertical;background:#0f172a;color:#bfdbfe;font-family:Consolas,Monaco,monospace;font-size:.68rem;line-height:1.6; }
.firm-rich-editor.source-mode .rich-editor-surface { display:none; }
.firm-rich-editor.source-mode .rich-editor-source { display:block; }
.rich-editor-footer { display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.45rem .7rem;border-top:1px solid #e8eef5;background:#fbfcfe; }
.rich-editor-footer span { color:#2563eb;font-size:.54rem;font-weight:850;text-transform:uppercase; }
.rich-editor-footer small { color:#8a98aa;font-size:.52rem; }

.firm-about-rich { color:#415069;font-size:.78rem;line-height:1.8; }
.firm-about-rich > :first-child { margin-top:0; }
.firm-about-rich > :last-child { margin-bottom:0; }
.firm-about-rich p { margin:.65rem 0; }
.firm-about-rich h2,.firm-about-rich h3,.firm-about-rich h4 { margin:1.1rem 0 .45rem;color:#172033;line-height:1.35; }
.firm-about-rich h2{font-size:1.15rem}.firm-about-rich h3{font-size:.95rem}.firm-about-rich h4{font-size:.82rem}
.firm-about-rich ul,.firm-about-rich ol { margin:.65rem 0;padding-left:1.3rem; }
.firm-about-rich li { margin:.25rem 0; }
.firm-about-rich blockquote { margin:.8rem 0;padding:.7rem .9rem;border-left:3px solid #3b82f6;border-radius:0 8px 8px 0;background:#f1f6fd;color:#536177; }
.firm-about-rich a { color:#2563eb;font-weight:700;text-decoration:underline; }

/* Sahip detay editoru */
.owner-profile-editor { padding: 1rem; border: 1px solid #dce6f0; border-radius: 12px; background: #f8fafc; }
.owner-profile-editor-heading { display:flex;align-items:center;gap:.65rem;margin-bottom:.85rem; }
.owner-profile-editor-heading > span { display:flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:10px;background:#dbeafe;color:#2563eb;font-weight:900; }
.owner-profile-editor-heading div{display:flex;flex-direction:column}.owner-profile-editor-heading strong{color:#263349;font-size:.78rem}.owner-profile-editor-heading small{color:#8492a6;font-size:.6rem}
.owner-profile-editor-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.7rem}.owner-profile-editor-grid label{display:flex;flex-direction:column;gap:.3rem}.owner-profile-editor-grid label>span{color:#536177;font-size:.62rem;font-weight:750}
.owner-profile-editor-grid input,.owner-working-row input{padding:.62rem;border:1px solid #d8e2ed;border-radius:8px;background:#fff;color:#263349;font-family:inherit;font-size:.66rem}
.owner-profile-check{display:flex;align-items:center;gap:.45rem;margin-top:.8rem;color:#334155;font-size:.66rem;font-weight:750}.owner-profile-check input{accent-color:#2563eb}
.owner-map-info{display:flex;align-items:flex-start;gap:.65rem;margin-top:.75rem;padding:.75rem;border:1px solid #bfdbfe;border-radius:9px;background:#eff6ff}.owner-map-info>span{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:28px;height:28px;border-radius:8px;background:#2563eb;color:#fff;font-weight:900}.owner-map-info div{display:flex;flex-direction:column}.owner-map-info strong{color:#1e3a8a;font-size:.66rem}.owner-map-info small{margin-top:.15rem;color:#5d7190;font-size:.58rem;line-height:1.45}
.owner-working-hours{display:flex;flex-direction:column;gap:.38rem}.owner-working-row{display:grid;grid-template-columns:95px 1fr auto 1fr 72px;align-items:center;gap:.45rem}.owner-working-row>strong{color:#475569;font-size:.63rem}.owner-working-row>span{color:#94a3b8}.owner-working-row label{display:flex;align-items:center;gap:.25rem;color:#64748b;font-size:.59rem}.owner-working-row label input{accent-color:#ef4444}
.owner-gallery-editor{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.55rem;margin-bottom:.75rem}.owner-gallery-editor label{position:relative;overflow:hidden;height:90px;border-radius:9px;background:#e2e8f0}.owner-gallery-editor img{width:100%;height:100%;object-fit:cover}.owner-gallery-editor label span{position:absolute;right:.3rem;bottom:.3rem;padding:.18rem .35rem;border-radius:5px;background:rgba(15,23,42,.75);color:#fff;font-size:.55rem}.owner-gallery-input{font-size:.65rem;color:#64748b}

/* Sahip teklif talepleri */
.owner-quotes-page{min-height:70vh;padding:4rem 0 5rem;background:#f5f8fc}.owner-quotes-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:1rem;margin-bottom:1.5rem}.owner-quotes-heading a{display:block;margin-bottom:.8rem;color:#64748b;font-size:.65rem;font-weight:700;text-decoration:none}.owner-quotes-heading h1{margin:.15rem 0;color:#172033;font-size:1.8rem}.owner-quotes-heading p{margin:0;color:#8492a6;font-size:.68rem}.owner-quote-total{display:flex;flex-direction:column;align-items:center;padding:.7rem 1rem;border:1px solid #dce6f0;border-radius:12px;background:#fff}.owner-quote-total strong{color:#2563eb;font-size:1.3rem}.owner-quote-total span{color:#8492a6;font-size:.55rem}
.owner-quote-filters{display:flex;flex-wrap:wrap;gap:.45rem;margin-bottom:1rem}.owner-quote-filters a{display:inline-flex;align-items:center;gap:.35rem;padding:.48rem .7rem;border:1px solid #dce5ef;border-radius:8px;background:#fff;color:#64748b;font-size:.63rem;font-weight:750;text-decoration:none}.owner-quote-filters a.active{border-color:#93c5fd;background:#eff6ff;color:#1d4ed8}.owner-quote-filters span{padding:.05rem .28rem;border-radius:999px;background:#e2e8f0;font-size:.52rem}
.owner-quotes-list{display:flex;flex-direction:column;gap:.8rem}.owner-quote-card,.owner-quotes-empty{padding:1rem;border:1px solid #dce5ef;border-radius:14px;background:#fff;box-shadow:0 8px 24px rgba(15,23,42,.04)}.owner-quote-card-head{display:flex;align-items:center;gap:.65rem}.owner-quote-card-head>div{display:flex;flex:1;flex-direction:column}.owner-quote-card-head strong{color:#263349;font-size:.75rem}.owner-quote-card-head a{color:#2563eb;font-size:.58rem;text-decoration:none}.owner-quote-card-head time{color:#94a3b8;font-size:.55rem}.owner-quote-status{padding:.18rem .4rem;border-radius:999px;font-size:.52rem;font-weight:850;text-transform:uppercase}.owner-quote-status.new{background:#fef3c7;color:#b45309}.owner-quote-status.contacted{background:#dbeafe;color:#1d4ed8}.owner-quote-status.completed{background:#dcfce7;color:#15803d}.owner-quote-status.rejected{background:#f1f5f9;color:#64748b}.owner-quote-card>p{margin:.8rem 0;color:#536177;font-size:.68rem;line-height:1.6}.owner-quote-contact{display:flex;flex-wrap:wrap;gap:.5rem}.owner-quote-contact a,.owner-quote-contact span{padding:.3rem .5rem;border-radius:6px;background:#f8fafc;color:#475569;font-size:.58rem;font-weight:700;text-decoration:none}.owner-quote-actions{display:flex;justify-content:flex-end;gap:.4rem;margin-top:.8rem;padding-top:.75rem;border-top:1px solid #edf1f6}.owner-quote-actions button{padding:.42rem .6rem;border:1px solid;border-radius:7px;background:#fff;font:inherit;font-size:.57rem;font-weight:750;cursor:pointer}.owner-quote-actions .contacted{border-color:#bfdbfe;color:#1d4ed8}.owner-quote-actions .completed{border-color:#bbf7d0;color:#15803d}.owner-quote-actions .rejected{border-color:#fecaca;color:#b91c1c}.owner-quotes-empty{text-align:center;padding:3rem}.owner-quotes-empty>span{color:#2563eb;font-size:2rem}.owner-quotes-empty h2{margin:.4rem 0;color:#334155;font-size:.9rem}.owner-quotes-empty p{margin:0;color:#8492a6;font-size:.65rem}

/* Firma dogrulama ve raporlama */
.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid #a7d7ff;
    background: linear-gradient(135deg, #eff8ff, #dbeeff);
    color: #0867b2;
}

.badge-verified > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #1584d7;
    color: #ffffff;
    font-size: 0.55rem;
}

.pro-card .badge-verified {
    border-color: rgba(125, 211, 252, 0.42);
    background: rgba(14, 116, 144, 0.2);
    color: #bae6fd;
}

.verified-firm-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.28rem 0.72rem;
    border: 1px solid rgba(125, 211, 252, 0.42);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(37, 99, 235, 0.2));
    color: #bae6fd;
    font-size: 0.7rem;
    font-weight: 850;
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.12);
}

.verified-firm-badge > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #0ea5e9;
    color: #ffffff;
    font-size: 0.62rem;
}

.contact-verified-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.16rem;
    margin-left: 0.25rem;
    color: #0b83ca;
    font-size: 0.61rem;
    font-weight: 800;
}

.verification-trust-card {
    padding: 1rem;
    border: 1px solid #b9ddf8;
    border-radius: 12px;
    background: linear-gradient(145deg, #f4fbff, #eaf6ff);
    box-shadow: 0 8px 24px rgba(14, 116, 144, 0.07);
}

.verification-trust-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.verification-trust-head > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 900;
}

.verification-trust-head div {
    display: flex;
    flex-direction: column;
}

.verification-trust-head strong {
    color: #0c4a6e;
    font-size: 0.76rem;
}

.verification-trust-head small {
    color: #5f7890;
    font-size: 0.59rem;
    line-height: 1.45;
}

.verification-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.8rem;
}

.verification-methods span {
    padding: 0.25rem 0.48rem;
    border: 1px solid #c7e3f6;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.7);
    color: #24617f;
    font-size: 0.58rem;
    font-weight: 750;
}

.verification-date {
    display: block;
    margin-top: 0.65rem;
    color: #7890a3;
    font-size: 0.54rem;
}

.firm-report-box {
    scroll-margin-top: 95px;
    border-top: 1px solid #e7edf4;
}

.firm-report-box summary {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding-top: 1rem;
    color: #8794a7;
    font-size: 0.68rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.firm-report-box summary::-webkit-details-marker {
    display: none;
}

.firm-report-box[open] summary {
    color: #b45309;
}

.firm-report-content {
    padding-top: 0.85rem;
}

.firm-report-content > p {
    margin: 0 0 0.8rem;
    color: #718096;
    font-size: 0.62rem;
    line-height: 1.55;
}

.firm-report-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.firm-report-form label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.firm-report-form label > span,
.report-user-info > span {
    color: #536177;
    font-size: 0.61rem;
    font-weight: 750;
}

.firm-report-form input,
.firm-report-form select,
.firm-report-form textarea {
    width: 100%;
    padding: 0.62rem 0.68rem;
    border: 1px solid #d8e2ed;
    border-radius: 8px;
    outline: none;
    background: #fbfcfe;
    color: #263349;
    font-family: inherit;
    font-size: 0.67rem;
}

.firm-report-form textarea {
    resize: vertical;
}

.firm-report-form input:focus,
.firm-report-form select:focus,
.firm-report-form textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.firm-report-form label > small {
    color: #94a3b8;
    font-size: 0.54rem;
}

.firm-report-form button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 39px;
    padding: 0 0.8rem;
    border: 0;
    border-radius: 8px;
    background: #334155;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.65rem;
    font-weight: 800;
    cursor: pointer;
}

.report-user-info {
    display: flex;
    flex-direction: column;
    padding: 0.65rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
}

.report-user-info strong {
    color: #334155;
    font-size: 0.68rem;
}

.report-user-info small {
    color: #8492a6;
    font-size: 0.57rem;
}

.report-alert {
    margin-bottom: 0.7rem;
    padding: 0.62rem;
    border: 1px solid;
    border-radius: 8px;
    font-size: 0.61rem;
    font-weight: 700;
}

.report-alert.success {
    border-color: #bbf7d0;
    background: #f0fdf4;
    color: #166534;
}

.report-alert.error {
    border-color: #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.owner-verification-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.9rem;
    border: 1px solid #bde0f7;
    border-radius: 10px;
    background: #f0f9ff;
}

.owner-verification-notice > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0ea5e9;
    color: #fff;
    font-weight: 900;
}

.owner-verification-notice strong,
.owner-verification-notice p {
    display: block;
    margin: 0;
}

.owner-verification-notice strong {
    color: #0c4a6e;
    font-size: 0.73rem;
}

.owner-verification-notice p {
    margin-top: 0.2rem;
    color: #567086;
    font-size: 0.62rem;
    line-height: 1.5;
}

.owner-verified-mini {
    display: block;
    margin-top: 0.22rem;
    color: #0284c7;
    font-size: 0.65rem;
    font-weight: 750;
}

.dealership-card-badges .verified {
    border-color: #b9ddf8;
    background: #eef9ff;
    color: #0878b8;
}

/* Firma yorumlari ve derecelendirme */
.hero-rating-link {
    color: #f6cb62;
    font-weight: 750;
    text-decoration: none;
}

.hero-rating-link span,
.hero-rating-link.empty {
    color: #b7c2d1;
    font-size: 0.78rem;
}

.firm-reviews-section {
    padding: 4.5rem 0 6rem;
    scroll-margin-top: 92px;
    background: linear-gradient(180deg, #f8fafc, #f3f7fc);
    border-top: 1px solid #e5ebf3;
}

.reviews-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.6rem;
}

.reviews-heading h2 {
    margin: 0 0 0.4rem;
    color: #172033;
    font-size: 1.85rem;
    letter-spacing: -0.035em;
}

.reviews-heading p {
    margin: 0;
    color: #718096;
    font-size: 0.78rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.rating-summary > strong {
    color: #172033;
    font-size: 1.8rem;
    line-height: 1;
}

.rating-summary > div {
    display: flex;
    flex-direction: column;
}

.rating-summary small {
    color: #8896a9;
    font-size: 0.6rem;
    font-weight: 650;
}

.review-stars {
    display: inline-flex;
    gap: 0.08rem;
}

.review-stars i {
    color: #d9e0e9;
    font-size: 0.76rem;
    font-style: normal;
}

.review-stars i.filled {
    color: #f5b82e;
    text-shadow: 0 1px 5px rgba(245, 184, 46, 0.24);
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.45fr);
    gap: 1.4rem;
    align-items: start;
}

.review-form-card,
.review-card,
.reviews-empty {
    border: 1px solid #e0e7f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
}

.review-form-card {
    position: sticky;
    top: 94px;
    padding: 1.35rem;
}

.review-form-heading {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #edf1f6;
}

.review-form-heading > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 800;
}

.review-form-heading h3 {
    margin: 0 0 0.15rem;
    color: #263349;
    font-size: 0.9rem;
}

.review-form-heading p {
    margin: 0;
    color: #8a98aa;
    font-size: 0.62rem;
}

.review-login-prompt,
.review-owner-notice,
.review-status-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.9rem;
    border: 1px solid #dbe5f1;
    border-radius: 11px;
    background: #f8fafc;
}

.review-login-prompt p,
.review-owner-notice p,
.review-status-notice p {
    margin: 0;
    color: #627187;
    font-size: 0.67rem;
    line-height: 1.55;
}

.review-login-prompt {
    flex-wrap: wrap;
}

.review-login-prompt a {
    flex-basis: 100%;
    padding: 0.55rem;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.review-owner-notice {
    border-color: #d7e7fb;
    background: #f1f7ff;
}

.review-status-notice.pending {
    border-color: #fde2a5;
    background: #fffbeb;
}

.review-status-notice.approved {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.review-status-notice strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #334155;
    font-size: 0.72rem;
}

.review-rejected-note {
    margin-bottom: 0.8rem;
    padding: 0.65rem;
    border: 1px solid #fecaca;
    border-radius: 8px;
    background: #fef2f2;
    color: #991b1b;
    font-size: 0.63rem;
    font-weight: 700;
}

.review-submit-form fieldset {
    margin: 0 0 1rem;
    padding: 0;
    border: 0;
}

.review-submit-form legend,
.review-comment-field > span {
    margin-bottom: 0.4rem;
    color: #46556d;
    font-size: 0.67rem;
    font-weight: 750;
}

.star-rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.18rem;
}

.star-rating-input input {
    position: absolute;
    opacity: 0;
}

.star-rating-input label {
    color: #d8e0ea;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #f5b82e;
}

.star-rating-input label:hover {
    transform: scale(1.1);
}

.review-comment-field {
    display: flex;
    flex-direction: column;
}

.review-comment-field textarea,
.owner-reply-form textarea {
    width: 100%;
    padding: 0.72rem 0.8rem;
    border: 1px solid #d9e2ec;
    border-radius: 9px;
    outline: 0;
    background: #fbfcfe;
    color: #263349;
    font-family: inherit;
    font-size: 0.72rem;
    line-height: 1.55;
    resize: vertical;
}

.review-comment-field textarea:focus,
.owner-reply-form textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.10);
}

.review-comment-field small {
    margin-top: 0.3rem;
    color: #94a3b8;
    font-size: 0.56rem;
}

.review-submit-button {
    width: 100%;
    min-height: 42px;
    margin-top: 0.85rem;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, #3478f6, #1d4ed8);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 7px 18px rgba(37, 99, 235, 0.20);
    cursor: pointer;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.review-card {
    padding: 1.2rem;
}

.review-card-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.reviewer-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
    font-size: 0.78rem;
    font-weight: 800;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.reviewer-info strong {
    color: #263349;
    font-size: 0.75rem;
}

.reviewer-info small {
    color: #94a3b8;
    font-size: 0.57rem;
}

.review-comment {
    margin: 0.9rem 0 0;
    color: #536177;
    font-size: 0.72rem;
    line-height: 1.65;
}

.owner-reply {
    margin-top: 1rem;
    padding: 0.8rem;
    border-left: 3px solid #3b82f6;
    border-radius: 0 9px 9px 0;
    background: #f3f7fd;
}

.owner-reply > div {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.owner-reply strong {
    color: #1e40af;
    font-size: 0.65rem;
}

.owner-reply small {
    margin-left: auto;
    color: #94a3b8;
    font-size: 0.54rem;
}

.owner-reply p {
    margin: 0.45rem 0 0;
    color: #536177;
    font-size: 0.68rem;
    line-height: 1.55;
}

.owner-reply-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid #edf1f6;
}

.owner-reply-form textarea {
    min-height: 58px;
}

.owner-reply-form button {
    flex-shrink: 0;
    padding: 0 0.7rem;
    border: 0;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.62rem;
    font-weight: 750;
    cursor: pointer;
}

.reviews-empty {
    padding: 3rem 1.5rem;
    color: #8794a7;
    text-align: center;
}

.reviews-empty > span {
    color: #f5b82e;
    font-size: 2.3rem;
}

.reviews-empty h3 {
    margin: 0.5rem 0 0.35rem;
    color: #334155;
    font-size: 0.95rem;
}

.reviews-empty p {
    margin: 0;
    font-size: 0.68rem;
}

.owner-applications-page {
    min-height: 70vh;
    padding: 4rem 0 5rem;
}

.owner-applications-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    text-decoration: none;
}

.owner-applications-heading h1 {
    margin: 0 0 0.45rem;
    color: #172033;
    font-size: 2rem;
    letter-spacing: -0.035em;
}

.owner-applications-heading p {
    margin: 0;
    color: #718096;
    font-size: 0.8rem;
}

.owner-application-stat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    border: 1px solid #dce6f2;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.owner-application-stat strong {
    color: #2563eb;
    font-size: 1.25rem;
}

.owner-application-stat span {
    color: #64748b;
    font-size: 0.68rem;
    font-weight: 700;
}

.owner-application-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 1rem;
}

.owner-application-card {
    padding: 1.25rem;
    border: 1px solid #dfe7f1;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.owner-application-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.owner-application-top h2 {
    margin: 0.35rem 0 0.12rem;
    color: #172033;
    font-size: 1rem;
}

.owner-application-top p,
.owner-application-top time {
    margin: 0;
    color: #8290a3;
    font-size: 0.65rem;
}

.application-status {
    padding: 0.18rem 0.4rem;
    border-radius: 5px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.52rem;
    font-weight: 800;
    text-transform: uppercase;
}

.application-status.contacted { background: #ecfdf5; color: #15803d; }
.application-status.closed { background: #f1f5f9; color: #64748b; }

.owner-application-details {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.owner-application-details a,
.owner-application-details span {
    padding: 0.32rem 0.48rem;
    border-radius: 6px;
    background: #f8fafc;
    color: #5b6a80;
    font-size: 0.61rem;
    font-weight: 650;
    text-decoration: none;
}

.owner-application-message {
    margin: 0 0 1rem;
    padding: 0.75rem;
    border-left: 3px solid #93c5fd;
    background: #f8fbff;
    color: #5f6e83;
    font-size: 0.7rem;
    line-height: 1.6;
}

.owner-application-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.45rem;
    padding-top: 0.9rem;
    border-top: 1px solid #edf1f6;
}

.owner-application-actions button {
    padding: 0.48rem 0.65rem;
    border: 0;
    border-radius: 7px;
    background: #2563eb;
    color: #ffffff;
    font: inherit;
    font-size: 0.62rem;
    font-weight: 750;
    cursor: pointer;
}

.owner-application-actions button.secondary {
    background: #eef2f7;
    color: #64748b;
}

/* One cikan firmalar sayfasi */
.featured-page-hero {
    position: relative;
    overflow: hidden;
    padding: 4.25rem 0 4.75rem;
    color: #ffffff;
    background:
        radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.25), transparent 32%),
        radial-gradient(circle at 88% 100%, rgba(205, 145, 39, 0.20), transparent 31%),
        linear-gradient(145deg, #0a0e16 0%, #111827 56%, #17130c 100%);
    border-bottom: 1px solid rgba(222, 174, 74, 0.34);
}

.featured-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.24;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.36) 0.7px, transparent 0.8px);
    background-size: 27px 27px;
    mask-image: linear-gradient(135deg, #000, transparent 72%);
}

.featured-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    align-self: flex-start;
    margin-bottom: 2.2rem;
    color: #7f8da3;
    font-size: 0.7rem;
    font-weight: 700;
}

.page-breadcrumb a {
    color: #aab6c8;
    text-decoration: none;
}

.page-breadcrumb a:hover {
    color: #ffffff;
}

.featured-page-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.9rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(230, 184, 88, 0.32);
    border-radius: 50px;
    background: rgba(174, 112, 18, 0.10);
    color: #f0cf7a;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    box-shadow: 0 0 24px rgba(218, 166, 58, 0.08);
}

.featured-page-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.25rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.045em;
    background: linear-gradient(105deg, #ffffff 0%, #f7f9fc 55%, #edcb73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-page-hero p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #abb5c4;
    font-size: 1rem;
    line-height: 1.75;
}

.featured-page-stats {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.featured-page-stats span {
    padding: 0.48rem 0.92rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.045);
    color: #b6c0ce;
    font-size: 0.72rem;
    font-weight: 650;
}

.featured-page-stats strong {
    margin-right: 0.2rem;
    color: #f0c968;
    font-weight: 800;
}

.featured-page-section {
    padding: 4.5rem 0 6rem;
}

.featured-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-eyebrow {
    display: block;
    margin-bottom: 0.4rem;
    color: #2563eb;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-section-heading h2 {
    margin: 0;
    color: #172033;
    font-size: clamp(1.45rem, 3vw, 2rem);
    letter-spacing: -0.03em;
}

.all-firms-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    padding: 0.58rem 0.9rem;
    border: 1px solid #dbe5f2;
    border-radius: 11px;
    background: #ffffff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.all-firms-link:hover {
    transform: translateY(-2px);
    border-color: #bfdbfe;
    box-shadow: 0 9px 24px rgba(37, 99, 235, 0.10);
}

.all-firms-link span {
    font-size: 1rem;
}

.featured-firms-grid {
    align-items: stretch;
}

/* Firmalar Izgarasi */
.firms-section {
    padding: 3rem 0 5rem 0;
}

.results-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.results-summary {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 650;
}

.results-summary > span:last-child {
    display: flex;
    flex-direction: column;
}

.results-summary strong {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 800;
}

.results-summary small {
    margin-top: 0.08rem;
    color: var(--text-muted);
    font-size: 0.6rem;
}

.results-summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--surface-soft);
    color: var(--primary);
    font-size: 1rem;
}

.results-toolbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.active-filter-chip {
    padding: 0.3rem 0.55rem;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--surface-soft);
    color: var(--text-muted);
    font-size: 0.64rem;
    font-weight: 750;
}

.active-filter-chip.pro-chip {
    border-color: rgba(217, 174, 74, 0.28);
    background: rgba(217, 174, 74, 0.08);
    color: var(--gold);
}

.clear-filters {
    margin-left: 0.25rem;
    color: #dc2626;
    font-size: 0.65rem;
    font-weight: 750;
    text-decoration: none;
}

.clear-filters:hover {
    text-decoration: underline;
}

.firms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 2.15rem;
    align-items: stretch;
}

/* Firma Karti Temel Stilleri */
.firm-card {
    isolation: isolate;
    background: linear-gradient(155deg, #ffffff 0%, #ffffff 68%, #fbfdff 100%);
    border-radius: 20px;
    padding: 1.65rem;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 10px 24px -14px rgba(15, 23, 42, 0.16),
        0 28px 58px -34px rgba(37, 99, 235, 0.20);
    border: 1px solid rgba(226, 232, 240, 0.86);
    position: relative;
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.firm-card:not(.pro-card)::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background:
        radial-gradient(circle at 92% 0%, rgba(59, 130, 246, 0.075), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), transparent 25%);
    pointer-events: none;
}

.firm-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 2px 4px rgba(15, 23, 42, 0.04),
        0 18px 34px -18px rgba(15, 23, 42, 0.20),
        0 34px 72px -38px rgba(37, 99, 235, 0.28);
    border-color: rgba(96, 165, 250, 0.48);
}

/* One Cikan Kart Stilleri */
.firm-card.featured {
    border-color: rgba(99, 102, 241, 0.25);
    background: linear-gradient(155deg, #ffffff 0%, #ffffff 66%, #f8f9ff 100%);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 14px 32px -20px rgba(79, 70, 229, 0.24), 0 30px 64px -40px rgba(79, 70, 229, 0.28);
}

.firm-card.featured:hover {
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 20px 45px -12px rgba(99, 102, 241, 0.15), 0 4px 12px rgba(99, 102, 241, 0.03);
}

/* PRO Kart - Gece Yarisi Altini */
.firm-card.pro-card {
    border: 1px solid transparent;
    background:
        radial-gradient(circle at 12% -8%, rgba(245, 190, 80, 0.16), transparent 31%) padding-box,
        radial-gradient(circle at 96% 108%, rgba(154, 103, 29, 0.16), transparent 34%) padding-box,
        linear-gradient(145deg, #111520 0%, #090c13 52%, #0d111a 100%) padding-box,
        linear-gradient(120deg, #7a4b12 0%, #f9dc8c 19%, #a96e1e 43%, #fff1b2 70%, #8a5516 100%) border-box;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.34),
        0 18px 38px -18px rgba(0, 0, 0, 0.78),
        0 30px 68px -36px rgba(212, 154, 53, 0.54),
        inset 0 1px 0 rgba(255, 236, 173, 0.08);
    color: #f8fafc;
}

.firm-card.pro-card:hover {
    transform: translateY(-9px) scale(1.006);
    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.38),
        0 25px 50px -20px rgba(0, 0, 0, 0.86),
        0 42px 86px -38px rgba(224, 169, 65, 0.72),
        inset 0 1px 0 rgba(255, 240, 190, 0.12);
}

/* Yuzen dort noktali altin yildizlar ve ince altin tozu */
.pro-sparkle-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.pro-sparkle-container::before,
.pro-sparkle-container::after {
    content: '';
    position: absolute;
    inset: -12%;
    background-image:
        radial-gradient(circle, rgba(255, 232, 152, 0.95) 0 0.7px, transparent 1.2px),
        radial-gradient(circle, rgba(211, 154, 47, 0.72) 0 0.6px, transparent 1.1px);
    background-position: 7px 13px, 31px 4px;
    background-size: 42px 42px, 57px 57px;
    opacity: 0.24;
    animation: gold-dust-drift 13s linear infinite;
}

.pro-sparkle-container::after {
    inset: -8%;
    background-position: 21px 9px, 3px 29px;
    background-size: 68px 68px, 83px 83px;
    opacity: 0.16;
    animation-duration: 19s;
    animation-direction: reverse;
}

.sparkle {
    position: absolute;
    width: var(--star-size, 10px);
    height: var(--star-size, 10px);
    background: radial-gradient(circle at 43% 38%, #fffbe8 0 9%, #ffe69a 23%, #e6a62e 48%, #8c5513 72%, transparent 74%);
    clip-path: polygon(50% 0, 58% 39%, 100% 50%, 58% 61%, 50% 100%, 42% 61%, 0 50%, 42% 39%);
    filter: drop-shadow(0 0 3px rgba(255, 215, 105, 0.92));
    opacity: 0;
    pointer-events: none;
    transform-origin: center;
}

.s1  { --star-size: 13px; top: 9%;  left: 7%;  animation: float-sparkle 4.2s infinite 0.2s ease-in-out; }
.s2  { --star-size: 8px;  top: 35%; left: 89%; animation: float-sparkle 5.4s infinite 1.1s ease-in-out; }
.s3  { --star-size: 6px;  top: 73%; left: 12%; animation: float-sparkle 4.7s infinite 0.8s ease-in-out; }
.s4  { --star-size: 11px; top: 16%; left: 76%; animation: float-sparkle 5.8s infinite 2.2s ease-in-out; }
.s5  { --star-size: 7px;  top: 84%; left: 71%; animation: float-sparkle 4.9s infinite 1.7s ease-in-out; }
.s6  { --star-size: 4px;  top: 54%; left: 5%;  animation: float-sparkle 6.2s infinite 3.1s ease-in-out; }
.s7  { --star-size: 5px;  top: 64%; left: 94%; animation: float-sparkle 5.5s infinite 0.4s ease-in-out; }
.s8  { --star-size: 4px;  top: 27%; left: 48%; animation: float-sparkle 6.6s infinite 4.0s ease-in-out; }
.s9  { --star-size: 6px;  top: 93%; left: 39%; animation: float-sparkle 5.2s infinite 2.5s ease-in-out; }
.s10 { --star-size: 4px;  top: 6%;  left: 55%; animation: float-sparkle 6.9s infinite 3.8s ease-in-out; }
.s11 { --star-size: 5px;  top: 46%; left: 67%; animation: float-sparkle 5.9s infinite 2.8s ease-in-out; }
.s12 { --star-size: 4px;  top: 79%; left: 49%; animation: float-sparkle 6.4s infinite 1.4s ease-in-out; }

@keyframes float-sparkle {
    0%, 18%, 100% {
        transform: translate3d(0, 7px, 0) scale(0.2) rotate(-18deg);
        opacity: 0;
    }
    46% {
        transform: translate3d(2px, -4px, 0) scale(1) rotate(6deg);
        opacity: 0.96;
    }
    62% {
        transform: translate3d(-2px, -10px, 0) scale(0.48) rotate(19deg);
        opacity: 0.42;
    }
}

@keyframes gold-dust-drift {
    to { transform: translate3d(30px, -38px, 0); }
}

/* Yavas metalik isik taramasi */
.firm-card.pro-card::after {
    content: '';
    position: absolute;
    top: -35%;
    left: -125%;
    width: 48%;
    height: 175%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 244, 204, 0.015) 25%,
        rgba(255, 235, 165, 0.11) 49%,
        rgba(255, 255, 255, 0.035) 60%,
        transparent 100%
    );
    transform: rotate(13deg);
    animation: pro-sheen 7.5s infinite cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 2;
}

@keyframes pro-sheen {
    0%, 35% { left: -125%; }
    58%, 100% { left: 155%; }
}

/* Rozetlerin Hizalanmasi */
.card-badges {
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: 0.4rem;
    align-items: center;
    min-height: 25px;
    margin-bottom: 0.85rem;
    z-index: 3;
}

.firm-card-header,
.firm-desc,
.firm-pro-products,
.firm-card-footer {
    position: relative;
    z-index: 3;
}

.badge {
    font-size: 0.68rem;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-featured {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

.badge-pro-top {
    background: linear-gradient(135deg, #fff0ae 0%, #e7b54f 43%, #a86c1c 100%);
    color: #171109;
    border: 1px solid rgba(255, 240, 177, 0.9);
    box-shadow: 0 5px 14px rgba(198, 137, 34, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.64);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
}

/* Yatay Kart Basligi Yerlesimi */
.firm-card-header {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    margin-bottom: 1.1rem;
    padding-right: 0;
}

.firm-header-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

/* Firma Logo Alani */
.firm-logo-wrapper {
    width: 62px;
    height: 62px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    box-sizing: border-box;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pro-card .firm-logo-wrapper {
    background: linear-gradient(#111722, #111722) padding-box,
                linear-gradient(145deg, #fff0b0, #a96b1b 52%, #f7d882) border-box;
    border: 1px solid transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38), 0 0 22px rgba(225, 169, 62, 0.10);
}

.firm-card:hover .firm-logo-wrapper {
    transform: scale(1.06);
}

.firm-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    image-rendering: auto;
}

.firm-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 800;
    font-size: 1.55rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #eff6ff 100%);
    color: #0284c7;
    border-radius: 10px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(2, 132, 199, 0.1);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border: 1px solid #bae6fd;
}

.pro-card .firm-logo-fallback {
    background: linear-gradient(135deg, #fde047 0%, #ca8a04 100%);
    color: #1e293b;
    border-color: #fef08a;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 0 10px rgba(251, 191, 36, 0.2);
}

.firm-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

.firm-title-link {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pro-card .firm-title-link {
    color: #ffffff;
    background: linear-gradient(100deg, #ffffff 0%, #fff8dd 58%, #f1c766 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.firm-title-link:hover {
    color: var(--primary);
}

.firm-title-link:focus-visible,
.firm-detail-btn:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.28);
    outline-offset: 3px;
}

.pro-card .firm-title-link:focus-visible,
.pro-card .firm-detail-btn:focus-visible {
    outline-color: rgba(248, 207, 106, 0.58);
}

/* Etiketler ve Metalar */
.firm-tags {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    flex-wrap: wrap;
}

.firm-meta {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    background: #f1f5f9;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
}

.pro-card .firm-meta {
    background: rgba(255, 255, 255, 0.045);
    color: #b7bdc8;
    border: 1px solid rgba(238, 209, 143, 0.09);
}

.badge-dealership {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
}

.pro-card .badge-dealership {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.2);
}

/* Firma Aciklamasi */
.firm-desc {
    color: #475569;
    font-size: 0.88rem;
    margin-bottom: 1.35rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.9rem;
    line-height: 1.3rem;
}

.pro-card .firm-desc {
    color: #aeb5c1;
}

/* Pro Urunler Ozelligi */
.firm-pro-products {
    margin-top: 0.5rem;
    border-top: 1px solid rgba(237, 202, 126, 0.11);
    padding-top: 0.85rem;
    margin-bottom: 1.25rem;
}

.pro-products-title {
    font-size: 0.7rem;
    font-weight: 800;
    color: #e8bd61;
    display: block;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pro-products-list {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.pro-product-badge {
    font-size: 0.72rem;
    background: linear-gradient(135deg, rgba(240, 198, 101, 0.11), rgba(148, 92, 18, 0.06));
    color: #f6df9b;
    border: 1px solid rgba(236, 194, 100, 0.18);
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.pro-product-price {
    color: #181108;
    background: linear-gradient(135deg, #ffe99c 0%, #d29a35 100%);
    padding: 0.05rem 0.35rem;
    border-radius: 4px;
    font-size: 0.65rem;
    margin-left: 0.1rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(206, 145, 36, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

/* Kart Alt Bilgisi */
.firm-card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.pro-card .firm-card-footer {
    border-top-color: rgba(237, 202, 126, 0.10);
}

.firm-contact-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.firm-phone {
    font-size: 0.78rem;
    color: #334155;
    font-weight: 700;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.2s ease;
}

.pro-card .firm-phone {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
}

.firm-card:hover .firm-phone {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.pro-card:hover .firm-phone {
    border-color: rgba(251, 191, 36, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.firm-views {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 700;
    background: #f8fafc;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.pro-card .firm-views {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(238, 209, 143, 0.10);
    color: #aeb5c1;
}

.firm-detail-btn {
    font-size: 0.82rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.firm-card:hover .firm-detail-btn {
    color: var(--primary-dark);
}

.pro-card .firm-detail-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff0ad 0%, #dfaa44 48%, #a96e1f 100%);
    color: #171109;
    padding: 0.42rem 1rem;
    border-radius: 50px;
    font-weight: 800;
    border: 1px solid rgba(255, 240, 177, 0.78);
    box-shadow: 0 7px 18px rgba(180, 113, 23, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.pro-card .firm-detail-btn:hover {
    background: linear-gradient(135deg, #fff5c7 0%, #efc160 48%, #b97a26 100%);
    box-shadow: 0 9px 24px rgba(205, 143, 38, 0.40), inset 0 1px 0 rgba(255, 255, 255, 0.68);
    transform: translateY(-2px);
    color: #080604;
}

.firm-detail-btn .arrow {
    transition: transform 0.25s ease;
}

.firm-card:hover .firm-detail-btn .arrow {
    transform: translateX(3px);
}

/* Bos Durum */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 2px dashed var(--border);
    box-shadow: var(--shadow);
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Alt Bilgi */
.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 5%, rgba(37, 99, 235, 0.16), transparent 25%),
        radial-gradient(circle at 92% 100%, rgba(183, 126, 31, 0.12), transparent 28%),
        linear-gradient(145deg, #0b0f18 0%, #080b12 58%, #0d121d 100%);
    border-top: 1px solid rgba(226, 185, 95, 0.26);
    color: #94a3b8;
    margin-top: auto;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image: radial-gradient(rgba(255, 255, 255, 0.32) 0.7px, transparent 0.8px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, #000, transparent 70%);
}

.footer-main,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(150px, 1fr));
    gap: 3.5rem;
    padding-top: 4.25rem;
    padding-bottom: 3.5rem;
}

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    display: block;
    max-width: 145px;
    max-height: 40px;
    object-fit: contain;
}

.footer-brand p {
    margin: 0 0 1.15rem;
    color: #a8b3c3;
    font-size: 0.86rem;
    line-height: 1.75;
}

.footer-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e9c870;
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.025em;
}

.footer-highlight span {
    text-shadow: 0 0 10px rgba(236, 196, 99, 0.58);
}

.footer-column h3 {
    position: relative;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    color: #f8fafc;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.035em;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 4px;
    background: linear-gradient(90deg, #3b82f6, #d6a847);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.72rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #95a2b4;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a span {
    color: #4f8df7;
    font-size: 1rem;
    line-height: 1;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact {
    min-width: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    min-width: 0;
    padding: 0.65rem 0;
    color: inherit;
    text-decoration: none;
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(96, 165, 250, 0.20);
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.10);
    color: #8db9ff;
    font-size: 0.75rem;
}

.footer-contact-item > span:last-child {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.footer-contact-item small {
    margin-bottom: 0.12rem;
    color: #68778e;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.footer-contact-item strong {
    overflow: hidden;
    color: #d8e0eb;
    font-size: 0.72rem;
    font-weight: 650;
    text-overflow: ellipsis;
}

.footer-contact-item:hover strong {
    color: #ffffff;
}

.footer-contact-empty {
    color: #76859a;
    font-size: 0.75rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.footer-bottom p,
.footer-bottom-links {
    margin: 0;
    color: #65748a;
    font-size: 0.68rem;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: #8290a3;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Duyarli Tasarim */
@media (max-width: 1100px) {
    .header-inner {
        gap: 1rem;
    }

    .main-nav {
        gap: 0.55rem;
    }

    .nav-link {
        padding-inline: 0.62rem;
    }

    .footer-main {
        gap: 2rem;
    }

    .dealership-filter-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dealership-filter-field.search-field {
        grid-column: span 2;
    }
}

@media (max-width: 960px) {
    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .review-form-card {
        position: static;
    }

    .header-inner {
        min-height: 70px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0.75rem;
        right: 0.75rem;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        max-height: min(650px, calc(100dvh - 88px));
        padding: 0.85rem;
        overflow-x: hidden;
        overflow-y: auto;
        border: 1px solid rgba(226, 232, 240, 0.95);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 24px 65px rgba(15, 23, 42, 0.22);
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }

    .site-header.nav-open .main-nav {
        display: flex !important;
        max-height: min(650px, calc(100dvh - 88px)) !important;
        padding: 0.85rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .mobile-nav-heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.65rem;
        padding: 0.15rem 0.15rem 0.75rem;
        border-bottom: 1px solid #edf1f6;
    }

    .mobile-nav-heading > div {
        display: grid;
        gap: 0.05rem;
    }

    .mobile-nav-heading strong {
        color: #172033;
        font-size: 0.9rem;
    }

    .mobile-nav-heading small {
        color: #8a96a8;
        font-size: 0.6rem;
        font-weight: 650;
    }

    .mobile-nav-heading > span {
        padding: 0.28rem 0.5rem;
        border-radius: 999px;
        background: #eef4ff;
        color: #2563eb;
        font-size: 0.56rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .nav-primary,
    .nav-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 0.5rem;
    }

    .nav-primary {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .nav-actions {
        margin-top: 0.8rem;
        padding-top: 0.75rem;
        border-top: 1px solid #edf1f6;
    }

    .nav-section-label {
        display: block;
        grid-column: 1 / -1;
        padding: 0 0.15rem;
        color: #94a0b1;
        font-size: 0.56rem;
        font-weight: 900;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }

    .nav-link,
    .nav-login,
    .nav-account-link,
    .nav-logout,
    .language-switcher,
    .nav-register {
        justify-content: flex-start;
        text-align: left;
    }

    .nav-link {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        min-width: 0;
        min-height: 48px;
        padding: 0.48rem 0.55rem;
        border: 1px solid #e5eaf1;
        border-radius: 12px;
        background: #f8fafc;
        box-shadow: none;
    }

    .language-switcher {
        min-height: 48px;
        border-radius: 12px;
        background: #f8fafc;
        box-shadow: none;
        padding: 0.48rem 0.55rem;
    }

    .language-switcher select {
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        border-color: #b8d0f7;
        background: #eef5ff;
        box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.04);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-item-icon,
    .nav-action-icon {
        display: inline-grid;
        place-items: center;
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        border-radius: 9px;
        background: #e9f1ff;
        color: #2563eb;
        font-size: 0.82rem;
        font-weight: 900;
    }

    .nav-item-label {
        min-width: 0;
        overflow: hidden;
        font-size: 0.68rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-profile {
        grid-column: 1 / -1;
        min-height: 52px;
        padding: 0.38rem 0.55rem 0.38rem 0.38rem;
        border-color: #d8e2ef;
        background: linear-gradient(135deg, #f8fbff, #ffffff);
        box-shadow: 0 7px 20px rgba(30, 64, 110, 0.06);
    }

    .nav-profile-copy {
        min-width: 0;
        flex: 1;
    }

    .nav-profile-copy strong {
        max-width: none;
    }

    .nav-profile-arrow {
        display: inline-grid;
        place-items: center;
        width: 25px;
        height: 25px;
        border-radius: 8px;
        background: #eef3fa;
        color: #6c7d94;
        font-size: 1rem;
    }

    .nav-account-link,
    .nav-logout,
    .nav-notification-link,
    .nav-discovery-menu summary {
        display: flex;
        align-items: center;
        gap: 0.48rem;
        min-width: 0;
        min-height: 44px;
        padding: 0.4rem;
        border: 1px solid #e3e8ef;
        border-radius: 11px;
        background: #ffffff;
        color: #46566e;
        font-size: 0.66rem;
        font-weight: 780;
        text-decoration: none;
    }

    .nav-action-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 0.72rem;
    }

    .nav-action-icon.pro {
        background: #fff4cf;
        color: #9b6b08;
    }

    .nav-discovery-menu {
        grid-column: auto;
        min-width: 0;
    }

    .nav-discovery-menu summary {
        list-style: none;
    }

    .nav-discovery-menu summary::after {
        margin-left: auto;
    }

    .nav-discovery-menu > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
        padding: 0.4rem;
        border-radius: 11px;
    }

    .nav-discovery-menu > div a {
        min-width: 0;
        padding: 0.5rem;
        font-size: 0.61rem;
    }

    .nav-notification-link {
        width: auto;
        height: auto;
        flex: auto;
        place-items: initial;
    }

    .nav-notification-link b {
        top: -5px;
        right: -4px;
    }

    .nav-mobile-label {
        display: inline;
    }

    .nav-logout {
        color: #d12d43;
    }

    .nav-logout .nav-action-icon {
        background: #fff0f2;
        color: #d12d43;
    }

    .nav-admin-link {
        grid-column: 1 / -1;
        display: flex;
        gap: 0.5rem;
        width: 100%;
        height: 40px;
        border-style: dashed;
        background: #f9fafb;
        font-size: 0.66rem;
    }

    .nav-admin-link > span:first-child {
        display: inline-grid;
        place-items: center;
        width: 26px;
        height: 26px;
        border-radius: 8px;
        background: #edf1f6;
        color: #5f6f84;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.75rem 3rem;
    }

    .footer-brand {
        max-width: none;
    }

    .dealership-application-shell {
        grid-template-columns: 1fr;
    }

    .dealership-application-copy {
        padding: 2rem;
    }
}

@media (max-width: 420px) {
    .header-inner {
        min-height: 64px;
        padding-inline: 1rem;
    }

    .site-logo-img {
        max-width: 142px;
        max-height: 40px;
    }

    .main-nav {
        left: 0.5rem;
        right: 0.5rem;
    }

    .site-header.nav-open .main-nav {
        max-height: calc(100dvh - 76px) !important;
        padding: 0.72rem !important;
    }

    .nav-primary,
    .nav-actions {
        gap: 0.42rem;
    }

    .nav-item-label,
    .nav-account-link,
    .nav-logout,
    .nav-notification-link,
    .nav-discovery-menu summary {
        font-size: 0.63rem;
    }
}

@media (max-width: 992px) {
    .campaign-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .firm-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 145px;
    }

    .similar-firms-grid,
    .owner-profile-editor-grid,
    .quote-request-form {
        grid-template-columns: 1fr;
    }

    .quote-request-form .full,
    .quote-user {
        grid-column: auto;
    }

    .owner-gallery-editor {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dealership-page-hero {
        padding: 3.1rem 0 3.6rem;
    }

    .dealership-list-section {
        padding: 3.2rem 0 4rem;
    }

    .dealership-application-section {
        padding-bottom: 4rem;
    }

    .dealership-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dealership-filter-field.search-field {
        grid-column: 1 / -1;
    }

    .featured-page-hero {
        padding: 3rem 0 3.5rem;
    }

    .page-breadcrumb {
        margin-bottom: 1.6rem;
    }

    .featured-page-section {
        padding: 3rem 0 4.5rem;
    }

    .featured-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .search-form {
        border-radius: 16px;
        padding: 0.5rem;
    }

    .search-row {
        flex-direction: column;
    }

    .search-row input,
    .search-row select,
    .search-row .btn {
        width: 100%;
        min-width: 0;
    }

    .search-autocomplete {
        width: 100%;
        min-width: 0;
        flex-basis: 100%;
    }

    .search-advanced-row {
        align-items: stretch;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-sort-control {
        grid-column: 1 / -1;
        justify-content: space-between;
    }

    .search-sort-control select {
        flex: 1;
        text-align: right;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .firms-section {
        padding: 2.25rem 0 4rem;
    }

    .firms-grid {
        gap: 1.35rem;
    }
}

@media (max-width: 620px) {
    .firm-gallery-section,
    .similar-firms-section {
        padding: 3.4rem 0;
    }

    .firm-detail-section-heading,
    .owner-quotes-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .owner-working-row {
        grid-template-columns: 82px 1fr auto 1fr;
    }

    .owner-working-row > label {
        grid-column: 2 / -1;
    }

    .owner-quote-card-head {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .owner-quote-card-head time {
        width: 100%;
    }

    .firm-reviews-section {
        padding: 3.5rem 0 4.25rem;
    }

    .reviews-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .rating-summary {
        width: 100%;
    }

    .review-card-head {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .review-card-head .review-stars {
        width: 100%;
        padding-left: 3.3rem;
    }

    .owner-reply-form {
        flex-direction: column;
    }

    .owner-reply-form button {
        min-height: 40px;
    }

    .main-nav {
        left: 1rem;
        right: 1rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.4rem;
        padding-top: 3.25rem;
        padding-bottom: 2.75rem;
    }

    .footer-brand {
        max-width: 390px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }

    .results-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .results-toolbar-actions {
        justify-content: flex-start;
    }

    .dealership-editor-grid,
    .dealership-application-form {
        grid-template-columns: 1fr;
    }

    .application-field {
        grid-column: 1 / -1;
    }

    .dealership-application-form {
        padding: 1.35rem;
    }

    .dealership-application-copy {
        padding: 1.6rem 1.35rem;
    }

    .dealership-metrics {
        grid-template-columns: 1fr;
    }

    .dealership-filter-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .dealership-filter-grid {
        grid-template-columns: 1fr;
    }

    .dealership-filter-field.search-field {
        grid-column: auto;
    }
}

@media (max-width: 460px) {
    .container {
        padding-inline: 1rem;
    }

    .firm-card {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .card-badges {
        justify-content: flex-end;
        min-height: 24px;
        margin-bottom: 0.75rem;
    }

    .firm-logo-wrapper {
        width: 52px;
        height: 52px;
    }

    .firm-card-footer {
        gap: 0.75rem;
    }

    .pro-card .firm-detail-btn {
        padding-inline: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .firm-card,
    .firm-logo-wrapper,
    .firm-detail-btn,
    .firm-detail-btn .arrow,
    .sparkle,
    .pro-sparkle-container::before,
    .pro-sparkle-container::after,
    .firm-card.pro-card::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }

    .sparkle {
        opacity: 0.42;
        transform: none;
    }

    .firm-card.pro-card::after {
        display: none;
    }

    .ticker-viewport {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
        scrollbar-width: thin;
    }

    .ticker-track {
        animation: none !important;
    }

    .ticker-group[aria-hidden='true'] {
        display: none;
    }

    .category-scroll-container {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
        scrollbar-width: none;
    }

    .category-scroll-track {
        animation: none !important;
    }

    .category-scroll-group[aria-hidden='true'] {
        display: none;
    }
}

/* PRO uyelik merkezi ve Gece Yarisi Altini detay deneyimi */
.owner-pro-action {
    padding: .42rem .68rem;
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    background: #eef2ff;
    color: #4338ca;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.owner-pro-action.gold {
    border-color: #f4d27b;
    background: #fff8db;
    color: #9a6200;
}

.hero-detail.pro-firm-detail {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(243, 190, 72, .16), transparent 24%),
        radial-gradient(circle at 88% 70%, rgba(184, 123, 24, .13), transparent 28%),
        linear-gradient(135deg, #11141c 0%, #06080d 58%, #12100a 100%) !important;
    border-bottom: 1px solid rgba(223, 174, 69, .58) !important;
    box-shadow: inset 0 -1px rgba(255, 226, 145, .08);
}

.hero-detail.pro-firm-detail::before,
.hero-detail.pro-firm-detail::after {
    content: "✦";
    position: absolute;
    color: #ffd66d;
    filter: drop-shadow(0 0 8px rgba(255, 202, 74, .85));
    pointer-events: none;
    animation: proDetailTwinkle 3.4s ease-in-out infinite;
}

.hero-detail.pro-firm-detail::before { top: 20%; left: 5%; font-size: 18px; }
.hero-detail.pro-firm-detail::after { right: 8%; bottom: 20%; font-size: 12px; animation-delay: -1.7s; }

.pro-firm-detail .firm-logo-wrapper {
    border-color: #c9972f !important;
    box-shadow: 0 0 0 4px rgba(232, 185, 75, .08), 0 18px 45px rgba(0, 0, 0, .55), 0 0 26px rgba(228, 174, 55, .22) !important;
}

.pro-firm-detail .firm-title-info h1 { color: #fff8e7; letter-spacing: -.025em; }
.pro-firm-detail .firm-title-info > p { color: #c6bdac !important; }

.firm-detail-main.is-pro {
    background:
        linear-gradient(rgba(255,255,255,.96), rgba(255,255,255,.96)),
        radial-gradient(circle at 10% 10%, #e6b952 1px, transparent 1px) !important;
    background-size: auto, 25px 25px !important;
}

.firm-detail-main.is-pro .firm-contact-card,
.firm-detail-main.is-pro .firm-about-card {
    border-color: rgba(202, 151, 45, .45) !important;
    box-shadow: 0 18px 48px rgba(34, 27, 13, .08), 0 0 0 1px rgba(255, 226, 145, .16) !important;
}

.firm-detail-main.is-pro .firm-contact-card { position: relative; overflow: hidden; }
.firm-detail-main.is-pro .firm-contact-card::before {
    content: "PRO MEMBER";
    position: absolute;
    top: 0;
    right: 0;
    padding: .36rem .72rem;
    border-radius: 0 15px 0 12px;
    background: linear-gradient(135deg, #f5d67c, #ad7418);
    color: #181208;
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.pro-qr-widget {
    border: 1px solid #e6c160;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(145deg, #181a21, #0b0c11);
    color: #f7e7b2;
}

.pro-qr-widget summary {
    display: flex;
    gap: .7rem;
    align-items: center;
    padding: .9rem;
    cursor: pointer;
    list-style: none;
}

.pro-qr-widget summary::-webkit-details-marker { display: none; }
.pro-qr-widget summary > span { color: #f0c553; font-size: 1.3rem; }
.pro-qr-widget summary > div { display: grid; flex: 1; gap: .12rem; }
.pro-qr-widget summary strong { font-size: .86rem; }
.pro-qr-widget summary small { color: #9f9a8e; font-size: .67rem; line-height: 1.4; }
.pro-qr-widget summary > b { color: #f0c553; }
.pro-qr-widget[open] summary > b { transform: rotate(45deg); }
.pro-qr-widget > div { padding: 0 1rem 1rem; text-align: center; }
.pro-qr-widget img { display: block; width: min(180px, 100%); margin: 0 auto .7rem; padding: .55rem; border-radius: 12px; background: #fff; }
.pro-qr-widget a { color: #f5d77d; font-size: .76rem; font-weight: 800; text-decoration: none; }

.pro-campaign-showcase {
    padding: 4.5rem 0;
    background: #090b10;
    color: #fff;
    border-block: 1px solid rgba(224, 174, 62, .32);
}

.pro-campaign-heading,
.pro-campaign-card-top,
.pro-campaign-card footer,
.pro-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pro-campaign-heading { margin-bottom: 1.7rem; }
.pro-campaign-heading > div > span,
.pro-campaign-card-top > span,
.pro-page-heading > div > span,
.campaign-create-card > div > span,
.campaign-list-card > div > span,
.pro-qr-card > span,
.pro-card-heading > div > span {
    color: #d9a936;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.pro-campaign-heading h2 { margin: .35rem 0 .2rem; color: #fff8e7; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.pro-campaign-heading p { margin: 0; color: #969ba8; }
.pro-campaign-heading > b { padding: .55rem .8rem; border: 1px solid rgba(231, 186, 75, .4); border-radius: 999px; color: #f1d47f; font-size: .75rem; }
.pro-campaign-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }

.pro-campaign-card {
    position: relative;
    overflow: hidden;
    padding: 1.55rem;
    border: 1px solid rgba(222, 174, 63, .55);
    border-radius: 18px;
    background: radial-gradient(circle at 100% 0, rgba(238, 188, 64, .15), transparent 35%), linear-gradient(145deg, #171920, #0d0f14);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .32), inset 0 1px rgba(255,255,255,.04);
}

.pro-campaign-card-top b { padding: .42rem .66rem; border-radius: 9px; background: linear-gradient(135deg, #ffe28b, #b27614); color: #1e1608; font-size: .7rem; }
.pro-campaign-card h3 { position: relative; margin: 1.1rem 0 .6rem; color: #fff7df; font-size: 1.22rem; }
.pro-campaign-card > p { position: relative; min-height: 48px; margin: 0 0 1.25rem; color: #afb3bd; font-size: .88rem; line-height: 1.65; }
.pro-campaign-card footer { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1rem; }
.pro-campaign-card footer > span { color: #8c909a; font-size: .73rem; }
.pro-campaign-card footer button { border: 0; background: transparent; color: #f2ce70; font-weight: 800; cursor: pointer; }
.campaign-star { position: absolute; color: #f9d66d; font-style: normal; opacity: .28; animation: proDetailTwinkle 3s ease-in-out infinite; }
.campaign-star.star-one { right: 15%; top: 25%; font-size: 12px; }
.campaign-star.star-two { right: 6%; bottom: 23%; font-size: 7px; animation-delay: -1.3s; }

.pro-analytics-page,
.campaign-manager-page {
    min-height: 72vh;
    padding: 3.5rem 0 5rem;
    background: radial-gradient(circle at 80% 0, rgba(215, 163, 46, .11), transparent 25%), #f6f7fa;
    overflow-x: hidden;
}

.pro-page-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pro-page-heading a { display: inline-block; margin-bottom: 1.1rem; color: #5f6675; font-size: .82rem; font-weight: 700; text-decoration: none; }
.pro-page-heading h1 { margin: .4rem 0 .35rem; color: #161922; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.04em; }
.pro-page-heading p { margin: 0; color: #6d7380; }
.pro-page-heading form { min-width: 225px; padding: .8rem 1rem; border: 1px solid #e7d497; border-radius: 13px; background: #fff; box-shadow: 0 10px 30px rgba(36,29,15,.06); }
.pro-page-heading form label { display: block; margin-bottom: .28rem; color: #9a721c; font-size: .65rem; font-weight: 900; }
.pro-page-heading form select { width: 100%; border: 0; outline: 0; background: transparent; color: #20232c; font-weight: 800; }

.pro-locked-state { max-width: 640px; margin: 4rem auto; padding: 3rem; border: 1px solid #ead393; border-radius: 22px; background: #fff; text-align: center; box-shadow: 0 22px 60px rgba(33,27,15,.09); }
.pro-locked-state > span { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 50%; background: #171920; color: #efc758; font-size: 1.8rem; }
.pro-locked-state h2 { margin: 0 0 .55rem; color: #1d2028; }
.pro-locked-state p { color: #737886; }
.pro-locked-state a { display: inline-flex; padding: .75rem 1.1rem; border-radius: 10px; background: #161920; color: #f5d67a; font-weight: 800; text-decoration: none; }

.pro-stat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .85rem; margin-bottom: 1rem; }
.pro-stat-grid article { display: flex; align-items: center; gap: .8rem; min-width: 0; padding: 1.15rem; border: 1px solid #e6e8ee; border-radius: 16px; background: #fff; box-shadow: 0 8px 25px rgba(25,29,39,.045); }
.pro-stat-grid article > span { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px; background: #151820; color: #f0c85b; }
.pro-stat-grid article div { min-width: 0; }
.pro-stat-grid strong { display: block; overflow: hidden; color: #191c24; font-size: 1.22rem; text-overflow: ellipsis; }
.pro-stat-grid small { color: #7c818e; font-size: .7rem; }
.pro-analytics-layout { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(260px, .75fr); gap: 1rem; }
.pro-chart-card,
.pro-qr-card,
.pro-recent-card,
.campaign-create-card,
.campaign-list-card { border: 1px solid #e1e4eb; border-radius: 20px; background: #fff; box-shadow: 0 13px 38px rgba(26,29,38,.06); }
.pro-chart-card { min-width: 0; padding: 1.4rem; }
.pro-card-heading h2 { margin: .25rem 0 0; color: #20232b; font-size: 1.2rem; }
.pro-card-heading > strong { color: #8c650d; font-size: .78rem; }
.pro-bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 220px; margin-top: 1.5rem; padding-top: 1rem; border-bottom: 1px solid #dfe2e8; }
.pro-bar-chart > div { display: flex; flex: 1; flex-direction: column; justify-content: flex-end; gap: .35rem; height: 100%; text-align: center; }
.pro-bar-chart i { display: block; min-height: 3px; border-radius: 5px 5px 0 0; background: linear-gradient(#f0ce6c, #a46d11); }
.pro-bar-chart span { color: #989da8; font-size: .55rem; }
.pro-qr-card { padding: 1.4rem; background: radial-gradient(circle at 100% 0, rgba(225,177,58,.16), transparent 34%), #14171e; color: #fff; }
.pro-qr-card h2 { margin: .55rem 0 1rem; color: #f8edcf; font-size: 1.12rem; line-height: 1.45; }
.pro-qr-card img { display: block; width: min(180px, 100%); margin: 0 auto 1rem; padding: .55rem; border-radius: 14px; background: #fff; }
.pro-qr-card a { display: block; color: #f1ce70; font-size: .8rem; font-weight: 800; text-align: center; text-decoration: none; }
.pro-quick-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1rem 0; }
.pro-quick-links > a { display: flex; align-items: center; gap: .9rem; padding: 1.15rem; border: 1px solid #e1e4eb; border-radius: 16px; background: #fff; color: #1d2028; text-decoration: none; }
.pro-quick-links > a > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: #fff4cc; color: #9b690e; }
.pro-quick-links > a > div { display: grid; flex: 1; gap: .15rem; }
.pro-quick-links small { color: #858a96; }
.pro-quick-links b { color: #b17a16; }
.pro-recent-card { padding: 1.4rem; }
.pro-card-heading a { color: #9d6c12; font-size: .78rem; font-weight: 800; text-decoration: none; }
.pro-recent-list { margin-top: 1rem; }
.pro-recent-list > div { display: flex; align-items: center; gap: 1rem; padding: .85rem 0; border-top: 1px solid #eceef2; }
.pro-recent-list > div > span { padding: .25rem .45rem; border-radius: 6px; background: #eaf2ff; color: #265fbd; font-size: .6rem; font-weight: 900; text-transform: uppercase; }
.pro-recent-list > div > div { display: grid; flex: 1; gap: .15rem; }
.pro-recent-list small { color: #8b909c; }
.pro-recent-list a { color: #85600f; font-size: .74rem; font-weight: 800; text-decoration: none; }
.pro-empty { padding: 1.5rem; border: 1px dashed #d9dce3; border-radius: 12px; color: #858a96; text-align: center; }

.campaign-manager-layout { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); gap: 1rem; align-items: start; }
.campaign-create-card,
.campaign-list-card { padding: 1.5rem; }
.campaign-create-card { display: grid; gap: 1rem; border-color: #ddc67e; }
.campaign-create-card h2,
.campaign-list-card h2 { margin: .3rem 0 0; color: #20232b; }
.campaign-create-card label { display: grid; gap: .35rem; color: #4f5562; font-size: .75rem; font-weight: 800; }
.campaign-create-card input,
.campaign-create-card textarea { width: 100%; box-sizing: border-box; padding: .75rem .85rem; border: 1px solid #d8dce4; border-radius: 10px; background: #fbfcfe; color: #22252d; font: inherit; outline: none; }
.campaign-create-card input:focus,
.campaign-create-card textarea:focus { border-color: #c49329; box-shadow: 0 0 0 3px rgba(211,163,54,.13); }
.campaign-date-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.campaign-create-card > button { display: flex; justify-content: space-between; padding: .85rem 1rem; border: 0; border-radius: 11px; background: linear-gradient(135deg, #191c23, #080a0e); color: #f2cf71; font-weight: 900; cursor: pointer; }
.campaign-admin-list { display: grid; gap: .8rem; margin-top: 1rem; }
.campaign-admin-list article { padding: 1.1rem; border: 1px solid #e3e5eb; border-radius: 14px; background: #fafbfc; }
.campaign-admin-list article.passive { opacity: .65; }
.campaign-admin-list article > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: .7rem; }
.campaign-admin-list article > div:first-child span { color: #238255; font-size: .62rem; font-weight: 900; letter-spacing: .1em; }
.campaign-admin-list article > div:first-child b { padding: .3rem .5rem; border-radius: 7px; background: #fff1bf; color: #8b5c08; font-size: .68rem; }
.campaign-admin-list h3 { margin: .65rem 0 .35rem; color: #262932; }
.campaign-admin-list p { margin: 0 0 .5rem; color: #6f7480; font-size: .84rem; line-height: 1.55; }
.campaign-admin-list small { color: #969ba6; }
.campaign-admin-list form { display: flex; gap: .45rem; margin-top: .85rem; }
.campaign-admin-list button { padding: .42rem .65rem; border: 1px solid #d7ba6a; border-radius: 7px; background: #fff9e8; color: #835b0d; font-size: .7rem; font-weight: 800; cursor: pointer; }
.campaign-admin-list button.delete { border-color: #f1c5c5; background: #fff4f4; color: #b93333; }

@keyframes proDetailTwinkle {
    0%, 100% { opacity: .2; transform: translateY(0) scale(.75) rotate(0); }
    50% { opacity: 1; transform: translateY(-7px) scale(1.15) rotate(22deg); }
}

@media (max-width: 1050px) {
    .pro-stat-grid { grid-template-columns: repeat(3, 1fr); }
    .campaign-manager-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .pro-page-heading { align-items: stretch; flex-direction: column; }
    .pro-page-heading form { min-width: 0; }
    .pro-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .pro-analytics-layout { grid-template-columns: 1fr; }
    .pro-quick-links { grid-template-columns: 1fr; }
    .pro-campaign-heading { align-items: flex-start; flex-direction: column; }
    .pro-bar-chart > div:nth-child(even) span { display: none; }
}

@media (max-width: 480px) {
    .pro-analytics-page,
    .campaign-manager-page { padding-top: 2rem; }
    .pro-stat-grid { grid-template-columns: 1fr; }
    .campaign-date-grid { grid-template-columns: 1fr; }
    .pro-campaign-grid { grid-template-columns: 1fr; }
    .pro-campaign-card footer { align-items: flex-start; flex-direction: column; }
    .pro-recent-list > div { align-items: flex-start; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-detail.pro-firm-detail::before,
    .hero-detail.pro-firm-detail::after,
    .campaign-star { animation: none !important; }
}

/* Firma sahibi e-posta / telefon dogrulama */
.owner-pro-action.verify {
    border-color: #9bd7bd;
    background: #ecfdf5;
    color: #08794d;
}

.owner-self-verification {
    display: grid;
    gap: .9rem;
    padding: 1.1rem;
    border: 1px solid #cbd9ee;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fbff, #f2f7ff);
}

.owner-self-verification-copy { display: flex; align-items: flex-start; gap: .75rem; }
.owner-self-verification-copy > span { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px; border-radius: 10px; background: #e0ecff; color: #2563eb; font-weight: 900; }
.owner-self-verification-copy strong { display: block; color: #1c2a40; font-size: .9rem; }
.owner-self-verification-copy p { margin: .2rem 0 0; color: #68768b; font-size: .76rem; line-height: 1.5; }
.owner-verification-statuses { display: flex; flex-wrap: wrap; gap: .45rem; }
.owner-verification-statuses span { padding: .35rem .55rem; border: 1px solid #d7dee9; border-radius: 999px; background: #fff; color: #7c8798; font-size: .68rem; font-weight: 800; }
.owner-verification-statuses span.verified { border-color: #9bd7bd; background: #ecfdf5; color: #08794d; }
.owner-verification-statuses span.admin { border-color: #e5c45d; background: #fff8d9; color: #8a6106; }
.owner-self-verification > a { display: flex; align-items: center; justify-content: space-between; padding: .7rem .8rem; border-radius: 9px; background: #172033; color: #fff; font-size: .76rem; font-weight: 800; text-decoration: none; }

.owner-verification-page {
    min-height: 72vh;
    padding: 3.5rem 0 5rem;
    background: radial-gradient(circle at 82% 4%, rgba(55, 124, 246, .11), transparent 27%), #f5f7fb;
}

.verification-page-heading { max-width: 780px; margin-bottom: 2rem; }
.verification-page-heading > a { display: inline-block; margin-bottom: 1.1rem; color: #667085; font-size: .8rem; font-weight: 700; text-decoration: none; }
.verification-page-heading > span { display: block; color: #2563eb; font-size: .68rem; font-weight: 900; letter-spacing: .15em; }
.verification-page-heading h1 { margin: .4rem 0; color: #172033; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.04em; }
.verification-page-heading p { margin: 0; color: #717b8c; }
.owner-verification-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.25rem; }

.verification-method-card {
    padding: 1.45rem;
    border: 1px solid #dce2ec;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 42px rgba(30, 42, 65, .07);
}

.verification-method-card.verified { border-color: #8dd5b5; box-shadow: 0 15px 42px rgba(11, 125, 78, .08); }
.verification-method-head { display: flex; align-items: center; gap: .75rem; }
.verification-method-head > span { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px; background: #eaf2ff; color: #2563eb; font-size: 1.15rem; }
.verification-method-card.verified .verification-method-head > span { background: #e8f9f0; color: #07834f; }
.verification-method-head > div { min-width: 0; flex: 1; }
.verification-method-head small { display: block; color: #8a94a5; font-size: .6rem; font-weight: 900; letter-spacing: .1em; }
.verification-method-head h2 { margin: .15rem 0 0; color: #1e293b; font-size: 1.05rem; }
.verification-method-head > b { padding: .3rem .48rem; border-radius: 7px; background: #f2f4f7; color: #7e8795; font-size: .6rem; }
.verification-method-card.verified .verification-method-head > b { background: #e8f9f0; color: #08794d; }
.verification-target { margin: 1.2rem 0; padding: .75rem; border: 1px solid #e4e8ef; border-radius: 10px; background: #f8fafc; color: #344054; font-weight: 800; letter-spacing: .025em; }
.verification-target.missing { color: #9a6470; font-size: .78rem; font-weight: 600; }
.verification-send-form button,
.verification-code-form button,
.verification-edit-link { display: flex; align-items: center; justify-content: space-between; width: 100%; box-sizing: border-box; padding: .78rem .9rem; border: 0; border-radius: 10px; background: #1d4ed8; color: #fff; font: inherit; font-size: .78rem; font-weight: 850; text-decoration: none; cursor: pointer; }
.verification-code-form { display: grid; grid-template-columns: 1fr auto; gap: .65rem; margin-top: .75rem; padding-top: .8rem; border-top: 1px solid #e7ebf1; }
.verification-code-form label { display: grid; gap: .3rem; }
.verification-code-form label span { color: #687386; font-size: .68rem; font-weight: 800; }
.verification-code-form input { width: 100%; box-sizing: border-box; padding: .72rem; border: 1px solid #cdd5e2; border-radius: 9px; font: inherit; font-size: 1rem; font-weight: 900; letter-spacing: .25em; outline: 0; }
.verification-code-form input:focus { border-color: #3776e8; box-shadow: 0 0 0 3px rgba(55, 118, 232, .13); }
.verification-code-form button { align-self: end; width: auto; white-space: nowrap; }
.verification-complete { display: flex; align-items: flex-start; gap: .65rem; padding: .85rem; border-radius: 11px; background: #ecfdf5; color: #08794d; }
.verification-complete > span { font-weight: 900; }
.verification-complete p { margin: 0; font-size: .76rem; line-height: 1.5; }
.verification-security-note { display: flex; gap: .8rem; max-width: 700px; margin: 1rem auto 0; padding: 1rem; color: #687386; }
.verification-security-note > span { color: #2563eb; font-size: 1.3rem; }
.verification-security-note strong { display: block; color: #344054; font-size: .8rem; }
.verification-security-note p { margin: .2rem 0 0; font-size: .72rem; line-height: 1.5; }

@media (max-width: 740px) {
    .owner-verification-grid { grid-template-columns: 1fr; }
    .verification-code-form { grid-template-columns: 1fr; }
    .verification-code-form button { width: 100%; }
}

/* Uyelik bot/spam kontrolu */
.registration-bot-check {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: .9rem;
    padding: 1rem;
    border: 1px solid #bfd4f5;
    border-radius: 14px;
    background: linear-gradient(135deg, #f8fbff, #eff6ff);
}

.registration-bot-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: #dbeafe; color: #2563eb; font-size: 1.25rem; }
.registration-bot-copy { display: grid; gap: .13rem; }
.registration-bot-copy > span { color: #2563eb; font-size: .58rem; font-weight: 900; letter-spacing: .12em; }
.registration-bot-copy strong { color: #1e293b; font-size: .8rem; }
.registration-bot-copy small { color: #718096; font-size: .66rem; line-height: 1.4; }
.registration-bot-check > label { display: flex; align-items: center; gap: .5rem; padding: .45rem .55rem; border: 1px solid #c7d8f0; border-radius: 10px; background: #fff; }
.registration-bot-check > label span { color: #1e3a5f; font-size: .84rem; font-weight: 900; white-space: nowrap; }
.registration-bot-check > label input { width: 48px; padding: .45rem .25rem; border: 1px solid #c9d4e4; border-radius: 7px; color: #172033; font: inherit; font-size: 1rem; font-weight: 900; text-align: center; outline: 0; }
.registration-bot-check > label input:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37, 99, 235, .12); }

@media (max-width: 560px) {
    .registration-bot-check { grid-template-columns: auto 1fr; }
    .registration-bot-check > label { grid-column: 1 / -1; justify-content: center; }
}

/* Kisisel kesif: favori, karsilastirma, takip ve bildirimler */
.firm-card-footer-meta { display: flex; align-items: center; gap: .42rem; min-width: 0; }
.firm-card-actions { position: static; z-index: 5; display: flex; gap: .32rem; }
.firm-save-button,
.firm-compare-button { display: grid; place-items: center; width: 28px; height: 28px; padding: 0; border: 1px solid #dce3ed; border-radius: 8px; background: rgba(255,255,255,.92); color: #7b8492; box-shadow: 0 4px 12px rgba(28,39,58,.07); cursor: pointer; transition: .2s ease; }
.firm-save-button:hover,
.firm-compare-button:hover { transform: translateY(-2px); border-color: #9bb9ee; color: #2563eb; }
.firm-save-button.active { border-color: #f3a9b2; background: #fff0f2; color: #e02f49; }
.firm-compare-button.active { border-color: #91b8f8; background: #eaf2ff; color: #1d5ec8; }
.pro-card .firm-save-button,
.pro-card .firm-compare-button { border-color: rgba(225,184,75,.42); background: rgba(14,16,22,.88); color: #dbc16f; }
.pro-card .firm-save-button.active { background: #6f2430; color: #ffd9de; }
.pro-card .firm-compare-button.active { background: #173662; color: #dcecff; }

.firm-logo-wrapper.logo-bg-light,
.pro-card .firm-logo-wrapper.logo-bg-light { background: #fff !important; }
.firm-logo-wrapper.logo-bg-dark,
.pro-card .firm-logo-wrapper.logo-bg-dark { background: #0a0c11 !important; }
.firm-logo-wrapper.logo-bg-light .firm-logo-img { filter: drop-shadow(0 1px 1px rgba(0,0,0,.08)); }
.firm-logo-wrapper.logo-bg-dark .firm-logo-img { filter: drop-shadow(0 1px 2px rgba(255,255,255,.10)); }

.detail-save-action,
.detail-compare-action { display: inline-flex; align-items: center; gap: .45rem; padding: .72rem .9rem; border: 1px solid rgba(255,255,255,.25); border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; font: inherit; font-size: .78rem; font-weight: 800; cursor: pointer; }
.detail-save-action.active { border-color: #f2a0ae; background: rgba(216,48,75,.22); color: #ffdbe0; }
.detail-compare-action.active { border-color: #8eb8ff; background: rgba(37,99,235,.25); color: #e1ecff; }

.compare-floating-bar { position: fixed; z-index: 90; right: 1.2rem; bottom: 1.2rem; display: flex; align-items: center; gap: .7rem; padding: .7rem .9rem; border: 1px solid #c99d35; border-radius: 14px; background: #11141b; color: #fff; box-shadow: 0 16px 45px rgba(0,0,0,.28); text-decoration: none; opacity: 0; transform: translateY(20px); pointer-events: none; transition: .25s ease; }
.compare-floating-bar.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.compare-floating-bar > span { color: #efc75f; font-size: 1.15rem; }
.compare-floating-bar strong { font-size: .75rem; }
.compare-floating-bar strong b { color: #efc75f; }
.compare-floating-bar i { color: #d2b35e; font-size: .68rem; font-style: normal; font-weight: 800; }
.engagement-toast { position: fixed; z-index: 120; left: 50%; bottom: 1.3rem; max-width: min(420px, calc(100% - 2rem)); padding: .75rem 1rem; border-radius: 11px; background: #172033; color: #fff; box-shadow: 0 12px 35px rgba(17,24,39,.25); font-size: .78rem; font-weight: 750; opacity: 0; transform: translate(-50%, 15px); transition: .2s ease; }
.engagement-toast.visible { opacity: 1; transform: translate(-50%, 0); }

.nav-discovery-menu { position: relative; }
.nav-discovery-menu summary { padding: .45rem .55rem; color: #53627a; font-size: .73rem; font-weight: 750; list-style: none; cursor: pointer; white-space: nowrap; }
.nav-discovery-menu summary::-webkit-details-marker { display: none; }
.nav-discovery-menu summary::after { content: '⌄'; margin-left: .25rem; }
.nav-discovery-menu > div { position: absolute; z-index: 100; top: calc(100% + .7rem); right: 0; display: grid; min-width: 205px; padding: .45rem; border: 1px solid #e0e5ed; border-radius: 13px; background: #fff; box-shadow: 0 18px 45px rgba(20,31,50,.16); }
.nav-discovery-menu > div a { display: flex; align-items: center; gap: .6rem; padding: .62rem .7rem; border-radius: 8px; color: #344054; font-size: .75rem; font-weight: 700; text-decoration: none; }
.nav-discovery-menu > div a:hover { background: #f1f5fb; color: #225ab7; }
.nav-discovery-menu > div span { width: 20px; color: #2563eb; text-align: center; }
.nav-notification-link { position: relative; display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px; border: 1px solid #dbe2ec; border-radius: 10px; background: #f8fafc; color: #41516a; text-decoration: none; }
.nav-notification-link b { position: absolute; top: -6px; right: -6px; display: grid; place-items: center; min-width: 17px; height: 17px; padding: 0 3px; border: 2px solid #fff; border-radius: 999px; background: #e52f4c; color: #fff; font-size: .52rem; }

.personal-discovery-page,
.compare-page,
.follow-page,
.notifications-page { min-height: 70vh; padding: 3.7rem 0 5rem; background: radial-gradient(circle at 82% 0, rgba(55,118,232,.09), transparent 25%), #f6f8fb; }
.personal-page-heading > span,
.notifications-heading > div > span,
.follow-heading > span { color: #2563eb; font-size: .67rem; font-weight: 900; letter-spacing: .14em; }
.personal-page-heading h1,
.notifications-heading h1 { margin: .42rem 0 .3rem; color: #182134; font-size: clamp(2rem,4vw,3rem); letter-spacing: -.04em; }
.personal-page-heading p,
.notifications-heading p { margin: 0; color: #748094; }
.personal-page-heading { margin-bottom: 2rem; }
.personal-firm-grid { margin-top: 1rem; }
.personal-empty { max-width: 620px; margin: 3rem auto; padding: 3rem 2rem; border: 1px solid #dfe5ee; border-radius: 22px; background: #fff; box-shadow: 0 18px 55px rgba(29,42,65,.08); text-align: center; }
.personal-empty > span { display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: 18px; background: #eaf2ff; color: #2563eb; font-size: 1.7rem; }
.personal-empty h2 { margin: 0 0 .5rem; color: #202a3c; }
.personal-empty p { color: #7a8597; }
.personal-empty a { display: inline-flex; padding: .72rem 1rem; border-radius: 9px; background: #1d4ed8; color: #fff; font-size: .78rem; font-weight: 800; text-decoration: none; }

.comparison-scroll { overflow-x: auto; margin-top: 1.5rem; border: 1px solid #dfe4ec; border-radius: 19px; background: #fff; box-shadow: 0 16px 50px rgba(29,42,65,.08); }
.comparison-table { width: 100%; min-width: 760px; border-collapse: collapse; table-layout: fixed; }
.comparison-table th,
.comparison-table td { padding: 1rem; border-right: 1px solid #e7eaf0; border-bottom: 1px solid #e7eaf0; color: #465166; font-size: .78rem; text-align: center; }
.comparison-table tr > :first-child { width: 130px; background: #f8fafc; color: #344054; font-weight: 850; text-align: left; }
.comparison-table thead th { position: relative; padding-top: 1.35rem; background: #fff; vertical-align: top; }
.comparison-table thead th:first-child { background: #172033; color: #fff; vertical-align: middle; }
.comparison-table thead th > strong { display: block; margin: .65rem 0 .35rem; color: #202a3c; font-size: .86rem; }
.comparison-table thead th > a { color: #2563eb; font-size: .68rem; text-decoration: none; }
.comparison-firm-logo { display: grid; place-items: center; width: 62px; height: 62px; margin: 0 auto; overflow: hidden; border: 1px solid #e1e5ec; border-radius: 14px; background: #fff; }
.comparison-firm-logo img { width: 100%; height: 100%; object-fit: contain; }
.comparison-firm-logo span { color: #2563eb; font-size: 1.3rem; font-weight: 900; }
.compare-remove { position: absolute; top: .45rem; right: .45rem; width: 25px; height: 25px; border: 0; border-radius: 7px; background: #fff0f2; color: #d92e49; cursor: pointer; }
.comparison-badge { display: inline-flex; padding: .3rem .5rem; border-radius: 7px; background: #eef1f5; color: #5c6677; font-size: .66rem; }
.comparison-badge.pro { border: 1px solid #dfbc5c; background: #fff5cd; color: #8b6108; }

.email-preference-card { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 1.4rem 0 1rem; padding: 1.1rem 1.2rem; border: 1px solid #cbdcf6; border-radius: 16px; background: #fff; box-shadow: 0 10px 32px rgba(31,61,111,.06); }
.email-preference-card > div { display: flex; align-items: center; gap: .8rem; }
.email-preference-card > div > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 11px; background: #eaf2ff; color: #2563eb; }
.email-preference-card strong { display: block; color: #253148; font-size: .86rem; }
.email-preference-card small { color: #7a8598; }
.preference-switch input { position: absolute; opacity: 0; }
.preference-switch span { position: relative; display: block; width: 48px; height: 27px; border-radius: 999px; background: #cbd3df; cursor: pointer; transition: .2s; }
.preference-switch span::after { content: ''; position: absolute; top: 3px; left: 3px; width: 21px; height: 21px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.18); transition: .2s; }
.preference-switch input:checked + span { background: #2563eb; }
.preference-switch input:checked + span::after { transform: translateX(21px); }
.follow-sections { display: grid; gap: 2rem; margin-top: 2rem; }
.follow-heading h2 { margin: .35rem 0 1rem; color: #202b3e; }
.follow-chip-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: .65rem; }
.follow-chip-grid form { margin: 0; }
.follow-chip-grid button { display: flex; align-items: center; gap: .7rem; width: 100%; padding: .75rem; border: 1px solid #dce2eb; border-radius: 12px; background: #fff; color: #38455b; text-align: left; cursor: pointer; }
.follow-chip-grid button > span { display: grid; place-items: center; width: 29px; height: 29px; flex: 0 0 29px; border-radius: 8px; background: #eef3fa; color: #57708e; font-weight: 900; }
.follow-chip-grid button > div { display: grid; gap: .1rem; }
.follow-chip-grid button strong { font-size: .76rem; }
.follow-chip-grid button small { color: #8b95a5; font-size: .62rem; }
.follow-chip-grid button.active { border-color: #89b1f3; background: #edf4ff; color: #174f9e; box-shadow: inset 0 0 0 1px rgba(37,99,235,.08); }
.follow-chip-grid button.active > span { background: #2563eb; color: #fff; }
.city-grid { grid-template-columns: repeat(auto-fill,minmax(170px,1fr)); }

.notifications-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.notifications-heading form button { padding: .65rem .8rem; border: 1px solid #ccd6e5; border-radius: 9px; background: #fff; color: #4a5870; font-size: .72rem; font-weight: 800; cursor: pointer; }
.notification-list { display: grid; gap: .65rem; }
.notification-list > a { display: flex; align-items: center; gap: .9rem; padding: 1rem; border: 1px solid #e0e5ed; border-radius: 14px; background: #fff; color: inherit; text-decoration: none; }
.notification-list > a.unread { border-color: #9bbdf3; background: #f2f7ff; box-shadow: 0 9px 25px rgba(37,99,235,.07); }
.notification-symbol { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px; background: #fff2c8; }
.notification-list > a > div { display: grid; flex: 1; gap: .17rem; }
.notification-list small { color: #2563eb; font-size: .6rem; font-weight: 900; letter-spacing: .08em; }
.notification-list strong { color: #263147; font-size: .86rem; }
.notification-list p { margin: 0; color: #7c8799; font-size: .72rem; }
.notification-list > a > b { color: #2563eb; }

@media (max-width: 900px) {
    .nav-discovery-menu > div { position: static; margin-top: .35rem; box-shadow: none; }
}
@media (max-width: 600px) {
    .compare-floating-bar { right: .7rem; bottom: .7rem; left: .7rem; justify-content: center; }
    .notifications-heading { align-items: flex-start; flex-direction: column; }
    .email-preference-card { align-items: flex-start; }
    .email-preference-card small { display: block; max-width: 220px; }
}

/* SEO sehir / sektor acilis sayfalari */
.seo-directory-hero { position: relative; overflow: hidden; padding: 3.5rem 0 4rem; border-bottom: 1px solid #dbe4f0; background: radial-gradient(circle at 80% 20%, rgba(46,104,220,.18), transparent 28%), linear-gradient(135deg,#101a31,#17274a); color: #fff; }
.seo-directory-hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.14) 1px,transparent 1px); background-size: 24px 24px; opacity: .22; pointer-events: none; }
.seo-directory-hero .container { position: relative; z-index: 1; }
.seo-directory-hero .page-breadcrumb { margin-bottom: 1.7rem; }
.seo-directory-hero .page-breadcrumb a,
.seo-directory-hero .page-breadcrumb span { color: #b8c8e7; }
.seo-directory-eyebrow { color: #8bb6ff; font-size: .68rem; font-weight: 900; letter-spacing: .16em; }
.seo-directory-hero h1 { max-width: 850px; margin: .5rem 0 .7rem; color: #fff; font-size: clamp(2.1rem,5vw,3.7rem); letter-spacing: -.045em; }
.seo-directory-hero p { max-width: 720px; margin: 0; color: #c4d0e7; line-height: 1.7; }
.seo-directory-hero .container > div:last-child { display: inline-flex; align-items: baseline; gap: .4rem; margin-top: 1.3rem; padding: .5rem .75rem; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.08); }
.seo-directory-hero .container > div:last-child b { color: #fff; font-size: 1.1rem; }
.seo-directory-hero .container > div:last-child span { color: #b8c8e7; font-size: .7rem; }
.seo-directory-page { min-height: 50vh; padding: 3.5rem 0 5rem; background: #f7f9fc; }
.seo-directory-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.seo-directory-heading span { color: #2563eb; font-size: .65rem; font-weight: 900; letter-spacing: .13em; }
.seo-directory-heading h2 { margin: .35rem 0 0; color: #1e293b; font-size: 1.55rem; }
.seo-directory-heading small { color: #7d889a; }
.seo-related-links { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; margin-top: 3rem; }
.seo-related-links section { padding: 1.25rem; border: 1px solid #dfe5ee; border-radius: 16px; background: #fff; }
.seo-related-links h2 { margin: 0 0 .85rem; color: #26334a; font-size: 1rem; }
.seo-related-links section > div { display: flex; flex-wrap: wrap; gap: .45rem; }
.seo-related-links a { padding: .38rem .58rem; border: 1px solid #dce4f0; border-radius: 8px; background: #f8fafc; color: #496079; font-size: .68rem; font-weight: 700; text-decoration: none; }
.seo-related-links a:hover { border-color: #91b5ee; background: #edf4ff; color: #1f5db9; }

@media (max-width: 700px) {
    .seo-directory-heading { align-items: flex-start; flex-direction: column; }
    .seo-related-links { grid-template-columns: 1fr; }
}

/* Site geneli mobil guvenlik agi */
@media (max-width: 760px) {
    .firm-detail-main > .container {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 1.5rem !important;
    }

    .firm-detail-main > .container > *,
    main form > *,
    main form [style*="display: grid"] {
        min-width: 0;
    }

    main form [style*="grid-template-columns: 1fr 1fr"],
    main form [style*="grid-template-columns: 2fr 1fr 1fr"],
    main [style*="grid-template-columns: 1.2fr 1fr"] {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    main input,
    main select,
    main textarea,
    main button {
        max-width: 100%;
    }

    .firm-detail-main .firm-contact-card,
    .firm-detail-main .firm-about-card {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

/* Ana sayfa kayan haber vitrini */
.home-news-section { padding: 3.7rem 0 3.2rem; overflow: hidden; border-block: 1px solid var(--border); background: radial-gradient(circle at 92% 0, rgba(37,99,235,.07), transparent 28%), linear-gradient(180deg, var(--white), var(--bg)); }
.home-news-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.35rem; }
.home-news-heading > div:first-child > span { color: var(--primary); font-size: .65rem; font-weight: 900; letter-spacing: .15em; }
.home-news-heading h2 { margin: .35rem 0 .25rem; color: var(--text); font-size: clamp(1.65rem,3vw,2.25rem); letter-spacing: -.035em; }
.home-news-heading p { margin: 0; color: var(--text-muted); font-size: .82rem; }
.home-news-actions { display: flex; align-items: center; gap: .45rem; }
.home-news-actions > a { margin-right: .4rem; color: var(--primary); font-size: .75rem; font-weight: 850; text-decoration: none; }
.home-news-actions button { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 10px; background: var(--white); color: var(--text-muted); font: inherit; cursor: pointer; transition: .2s; }
.home-news-actions button:hover { border-color: var(--primary); background: var(--surface-soft); color: var(--primary); transform: translateY(-1px); }
.home-news-viewport { overflow-x: auto; padding: .25rem .1rem 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; outline: 0; }
.home-news-viewport::-webkit-scrollbar { display: none; }
.home-news-track { display: flex; gap: 1rem; width: max-content; }
.home-news-card { display: flex; flex-direction: column; width: min(350px,calc(100vw - 2.2rem)); min-height: 410px; overflow: hidden; border: 1px solid var(--border); border-radius: 17px; background: var(--white); box-shadow: var(--shadow); scroll-snap-align: start; transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease; }
.home-news-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: var(--shadow-hover); }
.home-news-card.lead { border-color: var(--primary); box-shadow: var(--shadow-hover); }
.home-news-image { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #12203d; }
.home-news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.home-news-card:hover .home-news-image img { transform: scale(1.045); }
.home-news-image > span { position: absolute; inset: 0; display: grid; align-content: center; justify-items: center; background: radial-gradient(circle at 25% 20%,rgba(81,137,244,.5),transparent 34%),linear-gradient(145deg,#12203d,#1d4a91); color: #fff; }
.home-news-image > span b { font-size: 1rem; letter-spacing: .14em; }
.home-news-image > span i { margin-top: .25rem; color: #a9c8ff; font-size: .58rem; font-style: normal; font-weight: 900; letter-spacing: .18em; }
.home-news-image time { position: absolute; right: .55rem; bottom: .55rem; padding: .28rem .43rem; border: 1px solid rgba(255,255,255,.16); border-radius: 7px; background: rgba(10,18,34,.74); color: #fff; font-size: .58rem; font-weight: 800; backdrop-filter: blur(5px); }
.home-news-copy { display: flex; min-width: 0; min-height: 190px; flex: 1; flex-direction: column; padding: 1rem; }
.home-news-copy > span { align-self: flex-start; padding: .25rem .42rem; border-radius: 6px; background: var(--surface-soft); color: var(--primary); font-size: .56rem; font-weight: 900; letter-spacing: .08em; }
.home-news-card.lead .home-news-copy > span { background: rgba(220, 38, 38, 0.12); color: #f87171; }
.home-news-copy h3 { margin: .65rem 0 .38rem; font-size: .94rem; line-height: 1.42; }
.home-news-copy h3 a { display: -webkit-box; overflow: hidden; color: var(--text); text-decoration: none; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.home-news-copy p { display: -webkit-box; overflow: hidden; margin: 0; color: var(--text-muted); font-size: .7rem; line-height: 1.52; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.home-news-read { display: inline-flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .7rem; border-top: 1px solid var(--border); color: var(--primary); font-size: .68rem; font-weight: 850; text-decoration: none; }
.home-news-progress { height: 3px; overflow: hidden; border-radius: 999px; background: var(--surface-strong); }
.home-news-progress i { display: block; width: 8%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#2563eb,#72a4f7); transition: width .25s ease; }

@media (max-width: 650px) {
    .home-news-section { padding-block: 2.7rem; }
    .home-news-heading { align-items: flex-start; flex-direction: column; }
    .home-news-actions { width: 100%; }
    .home-news-actions > a { margin-right: auto; }
    .home-news-card { width: min(84vw,340px); min-height: 390px; }
    .home-news-image { min-height: 0; aspect-ratio: 16 / 9; }
    .home-news-copy { min-height: 180px; }
}

/* Final mobil navigasyon korumasi */
@media (max-width: 960px) {
    .nav-discovery-menu[open] {
        grid-column: 1 / -1;
    }

    .nav-discovery-menu summary {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.4rem;
        font-size: 0.66rem;
    }

    .nav-discovery-menu summary::after {
        margin-left: auto;
    }

    .nav-discovery-menu > div {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        min-width: 0;
        margin-top: 0.4rem;
        padding: 0.4rem;
        box-shadow: none;
    }

    .nav-notification-link {
        display: flex;
        align-items: center;
        gap: 0.48rem;
        width: auto;
        height: auto;
        min-height: 44px;
        padding: 0.4rem;
        flex: auto;
        place-items: initial;
    }

    .nav-notification-link > .nav-action-icon {
        display: inline-grid;
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
    }
}

/* Tema yuzeyi ezmeleri */
html[data-theme="dark"],
html[data-theme="midnight"] {
    color-scheme: dark;
}

html[data-theme="dark"] body,
html[data-theme="midnight"] body {
    background:
        radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 30%),
        var(--bg);
}

html[data-theme="dark"] .site-header,
html[data-theme="midnight"] .site-header {
    border-bottom-color: var(--border);
    box-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea,
html[data-theme="dark"] option,
html[data-theme="midnight"] input,
html[data-theme="midnight"] select,
html[data-theme="midnight"] textarea,
html[data-theme="midnight"] option {
    background-color: var(--input-bg) !important;
    border-color: var(--border) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder,
html[data-theme="midnight"] input::placeholder,
html[data-theme="midnight"] textarea::placeholder {
    color: var(--text-muted) !important;
}

html[data-theme="dark"] .nav-link,
html[data-theme="dark"] .nav-login,
html[data-theme="dark"] .nav-account-link,
html[data-theme="dark"] .nav-profile,
html[data-theme="midnight"] .nav-link,
html[data-theme="midnight"] .nav-login,
html[data-theme="midnight"] .nav-account-link,
html[data-theme="midnight"] .nav-profile {
    color: var(--text);
}

html[data-theme="dark"] .nav-link:hover,
html[data-theme="dark"] .nav-link.active,
html[data-theme="midnight"] .nav-link:hover,
html[data-theme="midnight"] .nav-link.active {
    background: color-mix(in srgb, var(--primary) 16%, transparent);
    color: var(--primary);
}

html[data-theme="dark"] .nav-discovery-menu > div,
html[data-theme="midnight"] .nav-discovery-menu > div,
html[data-theme="dark"] .site-header.nav-open .main-nav,
html[data-theme="midnight"] .site-header.nav-open .main-nav {
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    border-color: var(--border);
}

html[data-theme="dark"] .nav-primary,
html[data-theme="midnight"] .nav-primary {
    border-color: color-mix(in srgb, var(--primary) 26%, transparent);
    background: linear-gradient(180deg, rgba(16, 26, 43, 0.92), rgba(8, 17, 31, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 30px rgba(0, 0, 0, 0.18);
}

html[data-theme="midnight"] .nav-primary {
    background: linear-gradient(180deg, rgba(24, 20, 15, 0.94), rgba(10, 10, 12, 0.94));
    border-color: rgba(217, 174, 74, 0.36);
}

html[data-theme="dark"] .nav-link,
html[data-theme="midnight"] .nav-link {
    color: #dbe7f7;
}

html[data-theme="dark"] .nav-link:hover,
html[data-theme="dark"] .nav-link.active {
    background: rgba(37, 99, 235, 0.18);
    color: #8bb7ff;
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.18);
}

html[data-theme="midnight"] .nav-link:hover,
html[data-theme="midnight"] .nav-link.active {
    background: rgba(217, 174, 74, 0.16);
    color: #f4d47e;
    box-shadow: inset 0 0 0 1px rgba(217, 174, 74, 0.22);
}

html[data-theme="dark"] .nav-link.active::after {
    background: #60a5fa;
    box-shadow: 0 0 9px rgba(96, 165, 250, 0.75);
}

html[data-theme="midnight"] .nav-link.active::after {
    background: #e8bd55;
    box-shadow: 0 0 9px rgba(232, 189, 85, 0.78);
}

html[data-theme="dark"] .search-filter-toggle,
html[data-theme="dark"] .search-sort-control,
html[data-theme="dark"] .active-filter-chip,
html[data-theme="dark"] .dealership-filter-panel,
html[data-theme="dark"] .dealership-filter-field,
html[data-theme="midnight"] .search-filter-toggle,
html[data-theme="midnight"] .search-sort-control,
html[data-theme="midnight"] .active-filter-chip,
html[data-theme="midnight"] .dealership-filter-panel,
html[data-theme="midnight"] .dealership-filter-field {
    background: var(--surface) !important;
    border-color: var(--border) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] .search-sort-control > span,
html[data-theme="dark"] .dealership-filter-field > span,
html[data-theme="dark"] .active-filter-chip,
html[data-theme="midnight"] .search-sort-control > span,
html[data-theme="midnight"] .dealership-filter-field > span,
html[data-theme="midnight"] .active-filter-chip {
    color: #f8fafc !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card),
html[data-theme="dark"] main .container > div[style*="background: #ffffff"],
html[data-theme="dark"] .dealership-card:not(.is-pro),
html[data-theme="dark"] .campaign-card,
html[data-theme="dark"] .review-form-card,
html[data-theme="dark"] .review-card,
html[data-theme="dark"] .owner-application-card,
html[data-theme="dark"] .owner-quote-card,
html[data-theme="dark"] .owner-quotes-empty,
html[data-theme="dark"] .firm-map-card,
html[data-theme="dark"] .working-hours-card,
html[data-theme="dark"] .similar-firm-card,
html[data-theme="dark"] .firm-rich-editor,
html[data-theme="dark"] .pro-stat-grid article,
html[data-theme="dark"] .pro-chart-card,
html[data-theme="dark"] .pro-recent-card,
html[data-theme="dark"] .campaign-create-card,
html[data-theme="dark"] .campaign-list-card,
html[data-theme="dark"] .pro-quick-links > a,
html[data-theme="dark"] .verification-method-card,
html[data-theme="dark"] .personal-empty,
html[data-theme="dark"] .comparison-scroll,
html[data-theme="dark"] .email-preference-card,
html[data-theme="dark"] .notification-list > a,
html[data-theme="dark"] .seo-related-links section,
html[data-theme="dark"] .home-news-card,
html[data-theme="midnight"] .firm-card:not(.pro-card),
html[data-theme="midnight"] main .container > div[style*="background: #ffffff"],
html[data-theme="midnight"] .dealership-card:not(.is-pro),
html[data-theme="midnight"] .campaign-card,
html[data-theme="midnight"] .review-form-card,
html[data-theme="midnight"] .review-card,
html[data-theme="midnight"] .owner-application-card,
html[data-theme="midnight"] .owner-quote-card,
html[data-theme="midnight"] .owner-quotes-empty,
html[data-theme="midnight"] .firm-map-card,
html[data-theme="midnight"] .working-hours-card,
html[data-theme="midnight"] .similar-firm-card,
html[data-theme="midnight"] .firm-rich-editor,
html[data-theme="midnight"] .pro-stat-grid article,
html[data-theme="midnight"] .pro-chart-card,
html[data-theme="midnight"] .pro-recent-card,
html[data-theme="midnight"] .campaign-create-card,
html[data-theme="midnight"] .campaign-list-card,
html[data-theme="midnight"] .pro-quick-links > a,
html[data-theme="midnight"] .verification-method-card,
html[data-theme="midnight"] .personal-empty,
html[data-theme="midnight"] .comparison-scroll,
html[data-theme="midnight"] .email-preference-card,
html[data-theme="midnight"] .notification-list > a,
html[data-theme="midnight"] .seo-related-links section,
html[data-theme="midnight"] .home-news-card {
    background: var(--surface) !important;
    border-color: var(--border) !important;
    color: var(--text);
    box-shadow: var(--shadow);
}

html[data-theme="dark"] .firm-card:not(.pro-card):hover,
html[data-theme="dark"] .home-news-card:hover,
html[data-theme="midnight"] .firm-card:not(.pro-card):hover,
html[data-theme="midnight"] .home-news-card:hover {
    border-color: color-mix(in srgb, var(--primary) 46%, var(--border)) !important;
    box-shadow: var(--shadow-hover);
}

html[data-theme="dark"] .firm-logo-wrapper,
html[data-theme="dark"] .similar-firm-logo,
html[data-theme="dark"] .dealership-logo,
html[data-theme="dark"] .comparison-firm-logo,
html[data-theme="midnight"] .firm-logo-wrapper,
html[data-theme="midnight"] .similar-firm-logo,
html[data-theme="midnight"] .dealership-logo,
html[data-theme="midnight"] .comparison-firm-logo {
    background: var(--surface-soft) !important;
    border-color: var(--border) !important;
}

html[data-theme="dark"] .firm-card .badge-dealership,
html[data-theme="dark"] .firm-card .firm-meta,
html[data-theme="dark"] .firm-card .firm-save-button,
html[data-theme="dark"] .firm-card .firm-compare-button,
html[data-theme="dark"] .firm-card .firm-views,
html[data-theme="midnight"] .firm-card .badge-dealership,
html[data-theme="midnight"] .firm-card .firm-meta,
html[data-theme="midnight"] .firm-card .firm-save-button,
html[data-theme="midnight"] .firm-card .firm-compare-button,
html[data-theme="midnight"] .firm-card .firm-views {
    background: color-mix(in srgb, var(--surface-soft) 88%, var(--primary) 12%) !important;
    border-color: var(--border) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] .firm-card h3,
html[data-theme="dark"] .firm-card h2,
html[data-theme="dark"] .firm-title-link,
html[data-theme="dark"] .firm-card strong,
html[data-theme="dark"] .firm-card label,
html[data-theme="dark"] .firm-card small,
html[data-theme="dark"] .firm-card span,
html[data-theme="dark"] .review-card h3,
html[data-theme="dark"] .pro-card-heading h2,
html[data-theme="dark"] .campaign-create-card h2,
html[data-theme="dark"] .campaign-list-card h2,
html[data-theme="dark"] .email-preference-card strong,
html[data-theme="dark"] .home-news-copy h3 a,
html[data-theme="dark"] main .container > div[style*="background: #ffffff"] h1,
html[data-theme="dark"] main .container > div[style*="background: #ffffff"] h2,
html[data-theme="dark"] main .container > div[style*="background: #ffffff"] h3,
html[data-theme="dark"] main .container > div[style*="background: #ffffff"] label,
html[data-theme="midnight"] .firm-card h3,
html[data-theme="midnight"] .firm-card h2,
html[data-theme="midnight"] .firm-title-link,
html[data-theme="midnight"] .firm-card strong,
html[data-theme="midnight"] .firm-card label,
html[data-theme="midnight"] .firm-card small,
html[data-theme="midnight"] .firm-card span,
html[data-theme="midnight"] .review-card h3,
html[data-theme="midnight"] .pro-card-heading h2,
html[data-theme="midnight"] .campaign-create-card h2,
html[data-theme="midnight"] .campaign-list-card h2,
html[data-theme="midnight"] .email-preference-card strong,
html[data-theme="midnight"] .home-news-copy h3 a,
html[data-theme="midnight"] main .container > div[style*="background: #ffffff"] h1,
html[data-theme="midnight"] main .container > div[style*="background: #ffffff"] h2,
html[data-theme="midnight"] main .container > div[style*="background: #ffffff"] h3,
html[data-theme="midnight"] main .container > div[style*="background: #ffffff"] label {
    color: #f8fafc !important;
}

html[data-theme="dark"] .firm-desc,
html[data-theme="dark"] .dealership-description,
html[data-theme="dark"] .owner-quote-card > p,
html[data-theme="dark"] .campaign-create-card label,
html[data-theme="dark"] .home-news-copy p,
html[data-theme="dark"] .firm-card p,
html[data-theme="dark"] .firm-card .firm-meta,
html[data-theme="dark"] main .container > div[style*="background: #ffffff"] p,
html[data-theme="dark"] main .container > div[style*="background: #ffffff"] div,
html[data-theme="midnight"] .firm-desc,
html[data-theme="midnight"] .dealership-description,
html[data-theme="midnight"] .owner-quote-card > p,
html[data-theme="midnight"] .campaign-create-card label,
html[data-theme="midnight"] .home-news-copy p,
html[data-theme="midnight"] .firm-card p,
html[data-theme="midnight"] .firm-card .firm-meta,
html[data-theme="midnight"] main .container > div[style*="background: #ffffff"] p,
html[data-theme="midnight"] main .container > div[style*="background: #ffffff"] div {
    color: #dbe6f6 !important;
}

html[data-theme="dark"] .site-footer,
html[data-theme="midnight"] .site-footer {
    background: var(--footer-bg);
}

html[data-theme="midnight"] .site-footer,
html[data-theme="midnight"] .firm-card.pro-card,
html[data-theme="midnight"] .dealership-card.is-pro {
    border-color: color-mix(in srgb, var(--gold) 42%, transparent);
}

html[data-theme="midnight"] .theme-switcher {
    background: linear-gradient(135deg, rgba(255, 238, 174, 0.16), rgba(92, 62, 12, 0.26));
    color: #f7e7b6;
}

/* Menu ve standart firma kartlari icin final koyu/altin cilasi */
html[data-theme="dark"] .nav-primary,
html[data-theme="midnight"] .nav-primary {
    border-color: color-mix(in srgb, var(--primary) 28%, transparent) !important;
    background: linear-gradient(180deg, rgba(16, 26, 43, 0.94), rgba(8, 17, 31, 0.94)) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 30px rgba(0, 0, 0, 0.18) !important;
}

html[data-theme="midnight"] .nav-primary {
    background: linear-gradient(180deg, rgba(24, 20, 15, 0.96), rgba(10, 10, 12, 0.96)) !important;
    border-color: rgba(217, 174, 74, 0.38) !important;
}

html[data-theme="dark"] .nav-primary .nav-link {
    color: #dbe7f7 !important;
}

html[data-theme="midnight"] .nav-primary .nav-link {
    color: #eadfbd !important;
}

html[data-theme="dark"] .nav-primary .nav-link:hover,
html[data-theme="dark"] .nav-primary .nav-link.active {
    background: rgba(37, 99, 235, 0.20) !important;
    color: #93c5fd !important;
    box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.20) !important;
}

html[data-theme="midnight"] .nav-primary .nav-link:hover,
html[data-theme="midnight"] .nav-primary .nav-link.active {
    background: rgba(217, 174, 74, 0.17) !important;
    color: #f4d47e !important;
    box-shadow: inset 0 0 0 1px rgba(217, 174, 74, 0.24) !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card),
html[data-theme="midnight"] .firm-card:not(.pro-card) {
    background:
        radial-gradient(circle at 100% 0%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 34%),
        linear-gradient(155deg, #101b2d 0%, #0d1727 58%, #0b1322 100%) !important;
    border: 1px solid rgba(96, 165, 250, 0.20) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22) !important;
}

html[data-theme="midnight"] .firm-card:not(.pro-card) {
    background:
        radial-gradient(circle at 100% 0%, rgba(217, 174, 74, 0.12), transparent 34%),
        linear-gradient(155deg, #12141b 0%, #0c0e13 58%, #090a0e 100%) !important;
    border-color: rgba(217, 174, 74, 0.24) !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card)::before,
html[data-theme="midnight"] .firm-card:not(.pro-card)::before {
    display: none !important;
}

html[data-theme="dark"] .firm-card.featured:not(.pro-card),
html[data-theme="midnight"] .firm-card.featured:not(.pro-card) {
    border-color: color-mix(in srgb, var(--primary) 38%, transparent) !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card) .firm-title-link,
html[data-theme="dark"] .firm-card:not(.pro-card) h3,
html[data-theme="dark"] .firm-card:not(.pro-card) strong,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-title-link,
html[data-theme="midnight"] .firm-card:not(.pro-card) h3,
html[data-theme="midnight"] .firm-card:not(.pro-card) strong {
    color: #f8fafc !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card) .firm-desc,
html[data-theme="dark"] .firm-card:not(.pro-card) p,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-desc,
html[data-theme="midnight"] .firm-card:not(.pro-card) p {
    color: #d3deed !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card) .firm-logo-wrapper,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-logo-wrapper {
    background: rgba(226, 242, 255, 0.96) !important;
    border-color: rgba(147, 197, 253, 0.58) !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18) !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card) .firm-logo-wrapper.logo-bg-light,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-logo-wrapper.logo-bg-light,
html[data-theme="dark"] .pro-card .firm-logo-wrapper.logo-bg-light,
html[data-theme="midnight"] .pro-card .firm-logo-wrapper.logo-bg-light {
    background: #ffffff !important;
    border-color: rgba(226, 232, 240, 0.92) !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card) .firm-logo-wrapper.logo-bg-dark,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-logo-wrapper.logo-bg-dark,
html[data-theme="dark"] .pro-card .firm-logo-wrapper.logo-bg-dark,
html[data-theme="midnight"] .pro-card .firm-logo-wrapper.logo-bg-dark {
    background: #080b12 !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card) .firm-logo-fallback {
    background: linear-gradient(135deg, #dff2ff, #f3fbff) !important;
    color: #0f73b7 !important;
    border-color: #9fd8ff !important;
    text-shadow: none !important;
}

html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-logo-fallback {
    background: linear-gradient(135deg, #f7e3a0, #fff7d4) !important;
    color: #6e4610 !important;
    border-color: rgba(217, 174, 74, 0.72) !important;
    text-shadow: none !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card) .firm-meta,
html[data-theme="dark"] .firm-card:not(.pro-card) .badge-dealership,
html[data-theme="dark"] .firm-card:not(.pro-card) .firm-save-button,
html[data-theme="dark"] .firm-card:not(.pro-card) .firm-compare-button,
html[data-theme="dark"] .firm-card:not(.pro-card) .firm-views,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-meta,
html[data-theme="midnight"] .firm-card:not(.pro-card) .badge-dealership,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-save-button,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-compare-button,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-views {
    background: rgba(19, 35, 61, 0.82) !important;
    border-color: rgba(96, 165, 250, 0.20) !important;
    color: #eef6ff !important;
}

html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-meta,
html[data-theme="midnight"] .firm-card:not(.pro-card) .badge-dealership,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-save-button,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-compare-button,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-views {
    background: rgba(32, 25, 15, 0.90) !important;
    border-color: rgba(217, 174, 74, 0.24) !important;
    color: #f7e7b6 !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card) .firm-detail-btn,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-detail-btn {
    color: #93c5fd !important;
}

html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-detail-btn {
    color: #f4d47e !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card) .firm-card-footer,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-card-footer {
    border-top-color: rgba(226, 232, 240, 0.18) !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card) .badge-featured {
    background: rgba(255, 251, 235, 0.98) !important;
    border-color: #fde68a !important;
    color: #b45309 !important;
}

html[data-theme="midnight"] .firm-card:not(.pro-card) .badge-featured {
    background: linear-gradient(135deg, #fff3bd, #dca53e) !important;
    border-color: rgba(255, 232, 153, 0.72) !important;
    color: #4d3109 !important;
}

html[data-theme="dark"] .firm-card:not(.pro-card) .firm-meta span,
html[data-theme="dark"] .firm-card:not(.pro-card) .badge-dealership span,
html[data-theme="midnight"] .firm-card:not(.pro-card) .firm-meta span,
html[data-theme="midnight"] .firm-card:not(.pro-card) .badge-dealership span {
    color: inherit !important;
}

/* Tum site koyu/gece yarisi gorunurluk gecisi */
html[data-theme="dark"] .nav-primary .nav-link.active,
html[data-theme="dark"] .nav-primary .nav-link:hover {
    color: #ffffff !important;
}

html[data-theme="midnight"] .nav-primary .nav-link.active,
html[data-theme="midnight"] .nav-primary .nav-link:hover {
    color: #15100a !important;
    background: #d9ae4a linear-gradient(135deg, #fff1b8, #d9ae4a) !important;
    box-shadow: 0 8px 20px rgba(217, 174, 74, 0.18) !important;
}

html[data-theme="dark"] main h1,
html[data-theme="dark"] main h2,
html[data-theme="dark"] main h3,
html[data-theme="dark"] main h4,
html[data-theme="dark"] .featured-section-heading h2,
html[data-theme="dark"] .section-title,
html[data-theme="dark"] .dealership-filter-heading strong,
html[data-theme="dark"] .dealership-card-title h3,
html[data-theme="dark"] .dealership-conditions h4,
html[data-theme="dark"] .dealership-metrics strong,
html[data-theme="midnight"] main h1,
html[data-theme="midnight"] main h2,
html[data-theme="midnight"] main h3,
html[data-theme="midnight"] main h4,
html[data-theme="midnight"] .featured-section-heading h2,
html[data-theme="midnight"] .section-title,
html[data-theme="midnight"] .dealership-filter-heading strong,
html[data-theme="midnight"] .dealership-card-title h3,
html[data-theme="midnight"] .dealership-conditions h4,
html[data-theme="midnight"] .dealership-metrics strong {
    color: #f8fafc !important;
}

html[data-theme="dark"] main p,
html[data-theme="dark"] main small,
html[data-theme="dark"] .section-eyebrow,
html[data-theme="dark"] .dealership-filter-heading small,
html[data-theme="dark"] .dealership-filter-status,
html[data-theme="dark"] .dealership-count-label,
html[data-theme="dark"] .dealership-card-title > p,
html[data-theme="dark"] .dealership-description,
html[data-theme="dark"] .dealership-conditions p,
html[data-theme="dark"] .dealership-support p,
html[data-theme="dark"] .dealership-metrics small,
html[data-theme="midnight"] main p,
html[data-theme="midnight"] main small,
html[data-theme="midnight"] .section-eyebrow,
html[data-theme="midnight"] .dealership-filter-heading small,
html[data-theme="midnight"] .dealership-filter-status,
html[data-theme="midnight"] .dealership-count-label,
html[data-theme="midnight"] .dealership-card-title > p,
html[data-theme="midnight"] .dealership-description,
html[data-theme="midnight"] .dealership-conditions p,
html[data-theme="midnight"] .dealership-support p,
html[data-theme="midnight"] .dealership-metrics small {
    color: #dbe6f6 !important;
}

html[data-theme="dark"] .dealership-page-hero,
html[data-theme="midnight"] .dealership-page-hero,
html[data-theme="dark"] .featured-page-hero,
html[data-theme="midnight"] .featured-page-hero,
html[data-theme="dark"] .seo-directory-hero,
html[data-theme="midnight"] .seo-directory-hero {
    color: #f8fafc !important;
}

html[data-theme="dark"] .dealership-filter-panel,
html[data-theme="dark"] .dealership-filter-field,
html[data-theme="dark"] .dealership-filter-status,
html[data-theme="dark"] .dealership-count-label {
    background: linear-gradient(155deg, rgba(16, 26, 43, 0.98), rgba(10, 18, 32, 0.98)) !important;
    border-color: rgba(96, 165, 250, 0.20) !important;
}

html[data-theme="midnight"] .dealership-filter-panel,
html[data-theme="midnight"] .dealership-filter-field,
html[data-theme="midnight"] .dealership-filter-status,
html[data-theme="midnight"] .dealership-count-label {
    background: linear-gradient(155deg, rgba(24, 20, 15, 0.98), rgba(10, 10, 12, 0.98)) !important;
    border-color: rgba(217, 174, 74, 0.25) !important;
}

html[data-theme="dark"] .dealership-filter-heading,
html[data-theme="midnight"] .dealership-filter-heading {
    border-bottom-color: rgba(226, 232, 240, 0.13) !important;
}

html[data-theme="dark"] .dealership-filter-heading > div > span {
    background: rgba(37, 99, 235, 0.18) !important;
    color: #ffffff !important;
}

html[data-theme="midnight"] .dealership-filter-heading > div > span {
    background: rgba(217, 174, 74, 0.16) !important;
    color: #15100a !important;
}

html[data-theme="dark"] .dealership-pro-toggle,
html[data-theme="midnight"] .dealership-pro-toggle,
html[data-theme="dark"] .clear-dealership-filters,
html[data-theme="midnight"] .clear-dealership-filters {
    background: rgba(15, 23, 42, 0.78) !important;
    border-color: rgba(226, 232, 240, 0.16) !important;
    color: #f8fafc !important;
}

html[data-theme="midnight"] .dealership-pro-toggle,
html[data-theme="midnight"] .clear-dealership-filters {
    background: rgba(30, 24, 15, 0.86) !important;
    border-color: rgba(217, 174, 74, 0.28) !important;
    color: #f7e7b6 !important;
}

html[data-theme="dark"] .dealership-card:not(.is-pro) {
    background:
        radial-gradient(circle at 100% 0%, rgba(37, 99, 235, 0.11), transparent 34%),
        linear-gradient(155deg, #101b2d 0%, #0d1727 58%, #0b1322 100%) !important;
    border-color: rgba(96, 165, 250, 0.22) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22) !important;
}

html[data-theme="midnight"] .dealership-card:not(.is-pro) {
    background:
        radial-gradient(circle at 100% 0%, rgba(217, 174, 74, 0.12), transparent 34%),
        linear-gradient(155deg, #12141b 0%, #0c0e13 58%, #090a0e 100%) !important;
    border-color: rgba(217, 174, 74, 0.25) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26) !important;
}

html[data-theme="dark"] .dealership-card:not(.is-pro) .dealership-logo {
    background: rgba(226, 242, 255, 0.96) !important;
    border-color: rgba(147, 197, 253, 0.58) !important;
    color: #0f73b7 !important;
}

html[data-theme="midnight"] .dealership-card:not(.is-pro) .dealership-logo {
    background: linear-gradient(135deg, #f7e3a0, #fff7d4) !important;
    border-color: rgba(217, 174, 74, 0.72) !important;
    color: #6e4610 !important;
}

html[data-theme="dark"] .dealership-card:not(.is-pro) .dealership-card-badges span,
html[data-theme="midnight"] .dealership-card:not(.is-pro) .dealership-card-badges span {
    background: rgba(255, 251, 235, 0.98) !important;
    border: 1px solid rgba(253, 230, 138, 0.70) !important;
    color: #9a5b09 !important;
}

html[data-theme="dark"] .dealership-card:not(.is-pro) .dealership-metrics > div,
html[data-theme="dark"] .dealership-card:not(.is-pro) .dealership-conditions {
    background: rgba(15, 23, 42, 0.74) !important;
    border-color: rgba(96, 165, 250, 0.17) !important;
}

html[data-theme="midnight"] .dealership-card:not(.is-pro) .dealership-metrics > div,
html[data-theme="midnight"] .dealership-card:not(.is-pro) .dealership-conditions {
    background: rgba(30, 24, 15, 0.76) !important;
    border-color: rgba(217, 174, 74, 0.20) !important;
}

html[data-theme="dark"] .dealership-card-actions,
html[data-theme="midnight"] .dealership-card-actions {
    border-top-color: rgba(226, 232, 240, 0.16) !important;
}

html[data-theme="dark"] .dealership-kicker,
html[data-theme="dark"] .featured-page-kicker {
    color: #ffffff !important;
}

html[data-theme="midnight"] .dealership-kicker,
html[data-theme="midnight"] .featured-page-kicker {
    color: #fff3c4 !important;
}

html[data-theme="dark"] .hero-stats,
html[data-theme="dark"] .hero-stats span,
html[data-theme="dark"] .hero-stats strong,
html[data-theme="midnight"] .hero-stats,
html[data-theme="midnight"] .hero-stats span,
html[data-theme="midnight"] .hero-stats strong {
    color: #f8fafc !important;
}

html[data-theme="dark"] .hero-stats span,
html[data-theme="midnight"] .hero-stats span {
    background: rgba(15, 23, 42, 0.48) !important;
    border-color: rgba(226, 232, 240, 0.15) !important;
}

html[data-theme="dark"] .ticker-icon,
html[data-theme="midnight"] .ticker-icon {
    color: #ffffff !important;
}

html[data-theme="midnight"] .ticker-icon {
    color: #15100a !important;
}

html[data-theme="dark"] .seo-directory-page,
html[data-theme="midnight"] .seo-directory-page,
html[data-theme="dark"] .news-section,
html[data-theme="midnight"] .news-section,
html[data-theme="dark"] .firm-detail-main,
html[data-theme="midnight"] .firm-detail-main {
    background:
        radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 30%),
        var(--bg) !important;
}

html[data-theme="dark"] .hero,
html[data-theme="midnight"] .hero,
html[data-theme="dark"] .hero .container,
html[data-theme="midnight"] .hero .container {
    color: #f8fafc !important;
}

html[data-theme="dark"] .news-card,
html[data-theme="dark"] .news-main-content article,
html[data-theme="dark"] .news-sidebar-card,
html[data-theme="dark"] .firm-contact-card,
html[data-theme="dark"] .firm-about-card,
html[data-theme="midnight"] .news-card,
html[data-theme="midnight"] .news-main-content article,
html[data-theme="midnight"] .news-sidebar-card,
html[data-theme="midnight"] .firm-contact-card,
html[data-theme="midnight"] .firm-about-card {
    background: var(--surface) !important;
    border-color: var(--border) !important;
    color: #f8fafc !important;
    box-shadow: var(--shadow) !important;
}

html[data-theme="dark"] .news-card h3 a,
html[data-theme="dark"] .news-body h3 a,
html[data-theme="dark"] .news-content-body,
html[data-theme="dark"] .news-content-body p,
html[data-theme="dark"] .news-sidebar-item-title,
html[data-theme="dark"] .firm-contact-card h2,
html[data-theme="dark"] .firm-contact-card a,
html[data-theme="dark"] .firm-contact-card strong,
html[data-theme="dark"] .firm-about-card h2,
html[data-theme="dark"] .firm-about-card strong,
html[data-theme="midnight"] .news-card h3 a,
html[data-theme="midnight"] .news-body h3 a,
html[data-theme="midnight"] .news-content-body,
html[data-theme="midnight"] .news-content-body p,
html[data-theme="midnight"] .news-sidebar-item-title,
html[data-theme="midnight"] .firm-contact-card h2,
html[data-theme="midnight"] .firm-contact-card a,
html[data-theme="midnight"] .firm-contact-card strong,
html[data-theme="midnight"] .firm-about-card h2,
html[data-theme="midnight"] .firm-about-card strong {
    color: #f8fafc !important;
}

html[data-theme="dark"] .news-card p,
html[data-theme="dark"] .news-body p,
html[data-theme="dark"] .news-sidebar-item-date,
html[data-theme="dark"] .firm-contact-card span,
html[data-theme="dark"] .firm-about-card,
html[data-theme="dark"] .firm-about-rich,
html[data-theme="dark"] .firm-about-rich p,
html[data-theme="midnight"] .news-card p,
html[data-theme="midnight"] .news-body p,
html[data-theme="midnight"] .news-sidebar-item-date,
html[data-theme="midnight"] .firm-contact-card span,
html[data-theme="midnight"] .firm-about-card,
html[data-theme="midnight"] .firm-about-rich,
html[data-theme="midnight"] .firm-about-rich p {
    color: #dbe6f6 !important;
}

html[data-theme="dark"] .news-image-wrapper,
html[data-theme="midnight"] .news-image-wrapper {
    background: linear-gradient(135deg, #13213a, #1d4a91) !important;
    color: #ffffff !important;
}

html[data-theme="midnight"] .news-image-wrapper {
    background: linear-gradient(135deg, #17130d, #6e4610) !important;
}

html[data-theme="dark"] .news-card .btn,
html[data-theme="dark"] .news-card .btn-outline,
html[data-theme="midnight"] .news-card .btn,
html[data-theme="midnight"] .news-card .btn-outline {
    background: rgba(15, 23, 42, 0.72) !important;
    border-color: rgba(226, 232, 240, 0.17) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] .register-type-tabs,
html[data-theme="midnight"] .register-type-tabs {
    background: rgba(15, 23, 42, 0.76) !important;
    border: 1px solid rgba(226, 232, 240, 0.14) !important;
}

html[data-theme="midnight"] .register-type-tabs {
    background: rgba(29, 23, 14, 0.82) !important;
    border-color: rgba(217, 174, 74, 0.24) !important;
}

html[data-theme="dark"] #tab-individual,
html[data-theme="dark"] #tab-corporate,
html[data-theme="midnight"] #tab-individual,
html[data-theme="midnight"] #tab-corporate {
    color: #dbe6f6 !important;
}

html[data-theme="dark"] #tab-individual[style*="background: #ffffff"],
html[data-theme="dark"] #tab-corporate[style*="background: #ffffff"] {
    background: rgba(37, 99, 235, 0.25) !important;
    color: #ffffff !important;
}

html[data-theme="midnight"] #tab-individual[style*="background: #ffffff"],
html[data-theme="midnight"] #tab-corporate[style*="background: #ffffff"] {
    background: rgba(217, 174, 74, 0.22) !important;
    color: #15100a !important;
}

html[data-theme="dark"] .firm-title-info > div > span,
html[data-theme="midnight"] .firm-title-info > div > span {
    color: #ffffff !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

html[data-theme="dark"] .firm-title-info > div > span[style*="245, 158, 11"],
html[data-theme="dark"] .firm-title-info > div > span[style*="#f59e0b"],
html[data-theme="dark"] .firm-title-info > div > span[style*="16, 185, 129"],
html[data-theme="midnight"] .firm-title-info > div > span[style*="245, 158, 11"],
html[data-theme="midnight"] .firm-title-info > div > span[style*="#f59e0b"],
html[data-theme="midnight"] .firm-title-info > div > span[style*="16, 185, 129"] {
    color: #0f172a !important;
}

html[data-theme="dark"] .firm-contact-card div > span[style*="background: #eff6ff"],
html[data-theme="midnight"] .firm-contact-card div > span[style*="background: #eff6ff"] {
    background: rgba(37, 99, 235, 0.20) !important;
    color: #ffffff !important;
}

html[data-theme="midnight"] .firm-contact-card div > span[style*="background: #eff6ff"] {
    background: rgba(217, 174, 74, 0.18) !important;
    color: #15100a !important;
}

html[data-theme="midnight"] .btn,
html[data-theme="midnight"] button[type="submit"].btn {
    color: #15100a !important;
}

/* Final kullanici alani tema onarimi: koyu/altin sayfalari bastan sona okunabilir tutun */
html[data-theme="dark"] .dealership-application-section,
html[data-theme="dark"] .firm-reviews-section,
html[data-theme="dark"] .similar-firms-section,
html[data-theme="dark"] .owner-quotes-page,
html[data-theme="dark"] .owner-applications-page,
html[data-theme="dark"] .pro-analytics-page,
html[data-theme="dark"] .campaign-manager-page,
html[data-theme="dark"] .personal-discovery-page,
html[data-theme="dark"] .compare-page,
html[data-theme="dark"] .follow-page,
html[data-theme="dark"] .notifications-page,
html[data-theme="dark"] .news-detail-layout,
html[data-theme="midnight"] .dealership-application-section,
html[data-theme="midnight"] .firm-reviews-section,
html[data-theme="midnight"] .similar-firms-section,
html[data-theme="midnight"] .owner-quotes-page,
html[data-theme="midnight"] .owner-applications-page,
html[data-theme="midnight"] .pro-analytics-page,
html[data-theme="midnight"] .campaign-manager-page,
html[data-theme="midnight"] .personal-discovery-page,
html[data-theme="midnight"] .compare-page,
html[data-theme="midnight"] .follow-page,
html[data-theme="midnight"] .notifications-page,
html[data-theme="midnight"] .news-detail-layout {
    background:
        radial-gradient(circle at 82% 0%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 28%),
        var(--bg) !important;
    border-color: var(--border) !important;
    color: #f8fafc !important;
}

html[data-theme="midnight"] .dealership-application-section,
html[data-theme="midnight"] .firm-reviews-section,
html[data-theme="midnight"] .similar-firms-section,
html[data-theme="midnight"] .owner-quotes-page,
html[data-theme="midnight"] .owner-applications-page,
html[data-theme="midnight"] .pro-analytics-page,
html[data-theme="midnight"] .campaign-manager-page,
html[data-theme="midnight"] .personal-discovery-page,
html[data-theme="midnight"] .compare-page,
html[data-theme="midnight"] .follow-page,
html[data-theme="midnight"] .notifications-page,
html[data-theme="midnight"] .news-detail-layout {
    background:
        radial-gradient(circle at 82% 0%, rgba(217, 174, 74, 0.13), transparent 28%),
        var(--bg) !important;
}

html[data-theme="dark"] .dealership-application-form,
html[data-theme="dark"] .rating-summary,
html[data-theme="dark"] .review-login-prompt,
html[data-theme="dark"] .review-owner-notice,
html[data-theme="dark"] .review-status-notice,
html[data-theme="dark"] .reviews-empty,
html[data-theme="dark"] .similar-firm-card,
html[data-theme="dark"] .owner-quote-total,
html[data-theme="dark"] .owner-quote-filters a,
html[data-theme="dark"] .owner-quotes-empty,
html[data-theme="dark"] .owner-application-stat,
html[data-theme="dark"] .owner-application-card,
html[data-theme="dark"] .pro-page-heading form,
html[data-theme="dark"] .pro-locked-state,
html[data-theme="dark"] .pro-chart-card,
html[data-theme="dark"] .pro-recent-card,
html[data-theme="dark"] .pro-quick-links > a,
html[data-theme="dark"] .personal-empty,
html[data-theme="dark"] .email-preference-card,
html[data-theme="dark"] .notification-list > a,
html[data-theme="dark"] .notifications-heading form button,
html[data-theme="dark"] .comparison-scroll,
html[data-theme="dark"] main .container > div[style*="background: #ffffff"],
html[data-theme="dark"] main article[style*="background: #ffffff"],
html[data-theme="dark"] main nav[style*="background: #ffffff"],
html[data-theme="midnight"] .dealership-application-form,
html[data-theme="midnight"] .rating-summary,
html[data-theme="midnight"] .review-login-prompt,
html[data-theme="midnight"] .review-owner-notice,
html[data-theme="midnight"] .review-status-notice,
html[data-theme="midnight"] .reviews-empty,
html[data-theme="midnight"] .similar-firm-card,
html[data-theme="midnight"] .owner-quote-total,
html[data-theme="midnight"] .owner-quote-filters a,
html[data-theme="midnight"] .owner-quotes-empty,
html[data-theme="midnight"] .owner-application-stat,
html[data-theme="midnight"] .owner-application-card,
html[data-theme="midnight"] .pro-page-heading form,
html[data-theme="midnight"] .pro-locked-state,
html[data-theme="midnight"] .pro-chart-card,
html[data-theme="midnight"] .pro-recent-card,
html[data-theme="midnight"] .pro-quick-links > a,
html[data-theme="midnight"] .personal-empty,
html[data-theme="midnight"] .email-preference-card,
html[data-theme="midnight"] .notification-list > a,
html[data-theme="midnight"] .notifications-heading form button,
html[data-theme="midnight"] .comparison-scroll,
html[data-theme="midnight"] main .container > div[style*="background: #ffffff"],
html[data-theme="midnight"] main article[style*="background: #ffffff"],
html[data-theme="midnight"] main nav[style*="background: #ffffff"] {
    background: var(--surface) !important;
    border-color: var(--border) !important;
    color: #f8fafc !important;
    box-shadow: var(--shadow) !important;
}

html[data-theme="dark"] main [style*="background: #f8fafc"],
html[data-theme="dark"] main [style*="background:#f8fafc"],
html[data-theme="midnight"] main [style*="background: #f8fafc"],
html[data-theme="midnight"] main [style*="background:#f8fafc"] {
    background: var(--surface-soft) !important;
    border-color: var(--border) !important;
}

html[data-theme="dark"] .dealership-application-copy h2,
html[data-theme="dark"] .dealership-application-copy p,
html[data-theme="dark"] .dealership-application-copy li,
html[data-theme="dark"] .application-field > span,
html[data-theme="dark"] .application-consent,
html[data-theme="dark"] .application-consent span,
html[data-theme="dark"] .reviews-heading h2,
html[data-theme="dark"] .reviews-heading p,
html[data-theme="dark"] .rating-summary > strong,
html[data-theme="dark"] .rating-summary small,
html[data-theme="dark"] .review-form-heading h3,
html[data-theme="dark"] .review-form-heading p,
html[data-theme="dark"] .review-login-prompt p,
html[data-theme="dark"] .reviews-empty h3,
html[data-theme="dark"] .reviews-empty p,
html[data-theme="dark"] .similar-firm-copy h3,
html[data-theme="dark"] .similar-firm-copy p,
html[data-theme="dark"] .owner-quotes-heading h1,
html[data-theme="dark"] .owner-quotes-heading p,
html[data-theme="dark"] .owner-quote-total span,
html[data-theme="dark"] .owner-quotes-empty h2,
html[data-theme="dark"] .owner-quotes-empty p,
html[data-theme="dark"] .pro-page-heading h1,
html[data-theme="dark"] .pro-page-heading p,
html[data-theme="dark"] .pro-locked-state h2,
html[data-theme="dark"] .pro-locked-state p,
html[data-theme="dark"] .pro-stat-grid strong,
html[data-theme="dark"] .pro-stat-grid small,
html[data-theme="dark"] .pro-card-heading h2,
html[data-theme="dark"] .pro-quick-links strong,
html[data-theme="dark"] .pro-quick-links small,
html[data-theme="dark"] .notifications-heading h1,
html[data-theme="dark"] .notifications-heading p,
html[data-theme="dark"] .notification-list strong,
html[data-theme="dark"] .notification-list p,
html[data-theme="dark"] .personal-empty h2,
html[data-theme="dark"] .personal-empty p,
html[data-theme="dark"] .nav-discovery-menu > div a,
html[data-theme="dark"] main [style*="color: var(--text)"],
html[data-theme="dark"] main [style*="color: #0f172a"],
html[data-theme="dark"] main [style*="color:#0f172a"],
html[data-theme="midnight"] .dealership-application-copy h2,
html[data-theme="midnight"] .dealership-application-copy p,
html[data-theme="midnight"] .dealership-application-copy li,
html[data-theme="midnight"] .application-field > span,
html[data-theme="midnight"] .application-consent,
html[data-theme="midnight"] .application-consent span,
html[data-theme="midnight"] .reviews-heading h2,
html[data-theme="midnight"] .reviews-heading p,
html[data-theme="midnight"] .rating-summary > strong,
html[data-theme="midnight"] .rating-summary small,
html[data-theme="midnight"] .review-form-heading h3,
html[data-theme="midnight"] .review-form-heading p,
html[data-theme="midnight"] .review-login-prompt p,
html[data-theme="midnight"] .reviews-empty h3,
html[data-theme="midnight"] .reviews-empty p,
html[data-theme="midnight"] .similar-firm-copy h3,
html[data-theme="midnight"] .similar-firm-copy p,
html[data-theme="midnight"] .owner-quotes-heading h1,
html[data-theme="midnight"] .owner-quotes-heading p,
html[data-theme="midnight"] .owner-quote-total span,
html[data-theme="midnight"] .owner-quotes-empty h2,
html[data-theme="midnight"] .owner-quotes-empty p,
html[data-theme="midnight"] .pro-page-heading h1,
html[data-theme="midnight"] .pro-page-heading p,
html[data-theme="midnight"] .pro-locked-state h2,
html[data-theme="midnight"] .pro-locked-state p,
html[data-theme="midnight"] .pro-stat-grid strong,
html[data-theme="midnight"] .pro-stat-grid small,
html[data-theme="midnight"] .pro-card-heading h2,
html[data-theme="midnight"] .pro-quick-links strong,
html[data-theme="midnight"] .pro-quick-links small,
html[data-theme="midnight"] .notifications-heading h1,
html[data-theme="midnight"] .notifications-heading p,
html[data-theme="midnight"] .notification-list strong,
html[data-theme="midnight"] .notification-list p,
html[data-theme="midnight"] .personal-empty h2,
html[data-theme="midnight"] .personal-empty p,
html[data-theme="midnight"] .nav-discovery-menu > div a,
html[data-theme="midnight"] main [style*="color: var(--text)"],
html[data-theme="midnight"] main [style*="color: #0f172a"],
html[data-theme="midnight"] main [style*="color:#0f172a"] {
    color: #f8fafc !important;
}

html[data-theme="dark"] main [style*="color: var(--text-muted)"],
html[data-theme="dark"] main [style*="color: #64748b"],
html[data-theme="dark"] main [style*="color:#64748b"],
html[data-theme="dark"] main [style*="color: #718096"],
html[data-theme="dark"] main [style*="color:#718096"],
html[data-theme="dark"] main [style*="color: #748094"],
html[data-theme="dark"] main [style*="color:#748094"],
html[data-theme="midnight"] main [style*="color: var(--text-muted)"],
html[data-theme="midnight"] main [style*="color: #64748b"],
html[data-theme="midnight"] main [style*="color:#64748b"],
html[data-theme="midnight"] main [style*="color: #718096"],
html[data-theme="midnight"] main [style*="color:#718096"],
html[data-theme="midnight"] main [style*="color: #748094"],
html[data-theme="midnight"] main [style*="color:#748094"] {
    color: #dbe6f6 !important;
}

html[data-theme="dark"] .nav-login,
html[data-theme="midnight"] .nav-login {
    background: #f8fafc !important;
    border-color: rgba(147, 197, 253, 0.45) !important;
    color: #1d4ed8 !important;
    opacity: 1 !important;
}

html[data-theme="dark"] .nav-login span,
html[data-theme="midnight"] .nav-login span {
    color: inherit !important;
}

html[data-theme="dark"] .nav-discovery-menu > div,
html[data-theme="midnight"] .nav-discovery-menu > div {
    background: #172235 !important;
    border-color: rgba(147, 197, 253, 0.18) !important;
}

html[data-theme="midnight"] .nav-discovery-menu > div {
    background: #1b1710 !important;
    border-color: rgba(217, 174, 74, 0.25) !important;
}

html[data-theme="dark"] .nav-discovery-menu > div a:hover {
    background: rgba(37, 99, 235, 0.18) !important;
    color: #ffffff !important;
}

html[data-theme="midnight"] .nav-discovery-menu > div a:hover {
    background: rgba(217, 174, 74, 0.16) !important;
    color: #fff3c4 !important;
}

html[data-theme="dark"] table tr[style*="background: #f8fafc"],
html[data-theme="midnight"] table tr[style*="background: #f8fafc"] {
    background: var(--surface-soft) !important;
}

html[data-theme="dark"] table th,
html[data-theme="dark"] table td,
html[data-theme="midnight"] table th,
html[data-theme="midnight"] table td {
    border-color: var(--border) !important;
    color: #e5edf8 !important;
}

html[data-theme="dark"] .pro-page-heading form select,
html[data-theme="midnight"] .pro-page-heading form select {
    background: var(--input-bg) !important;
    color: #f8fafc !important;
}

html[data-theme="dark"] .pro-locked-state {
    background:
        radial-gradient(circle at 50% 0%, rgba(96, 165, 250, .14), transparent 45%),
        #101827 !important;
    border-color: rgba(96, 165, 250, .32) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .36) !important;
}

html[data-theme="midnight"] .pro-locked-state {
    background:
        radial-gradient(circle at 50% 0%, rgba(217, 174, 74, .18), transparent 45%),
        #17130d !important;
    border-color: rgba(217, 174, 74, .48) !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .42), 0 0 0 1px rgba(217, 174, 74, .08) inset !important;
}

html[data-theme="dark"] .pro-locked-state > span,
html[data-theme="midnight"] .pro-locked-state > span {
    background: rgba(248, 250, 252, .08) !important;
    border: 1px solid rgba(245, 214, 122, .34) !important;
    color: #ffd76a !important;
}

html[data-theme="dark"] .pro-locked-state h2,
html[data-theme="midnight"] .pro-locked-state h2 {
    color: #ffffff !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .18);
}

html[data-theme="dark"] .pro-locked-state p,
html[data-theme="midnight"] .pro-locked-state p {
    color: #dbe6f6 !important;
}

html[data-theme="dark"] .pro-locked-state a,
html[data-theme="midnight"] .pro-locked-state a {
    background: linear-gradient(135deg, #ffe18a, #d79b27) !important;
    color: #17110a !important;
    box-shadow: 0 14px 34px rgba(217, 174, 74, .22) !important;
}

html[data-theme="dark"] .selected-firm-display,
html[data-theme="midnight"] .selected-firm-display {
    background: rgba(37, 99, 235, 0.10) !important;
    border-color: rgba(96, 165, 250, 0.55) !important;
    color: #f8fafc !important;
}

html[data-theme="midnight"] .selected-firm-display {
    background: rgba(217, 174, 74, 0.12) !important;
    border-color: rgba(217, 174, 74, 0.42) !important;
}

html[data-theme="dark"] .detail-save-action,
html[data-theme="dark"] .detail-compare-action,
html[data-theme="midnight"] .detail-save-action,
html[data-theme="midnight"] .detail-compare-action {
    background: rgba(15, 23, 42, 0.86) !important;
    border-color: rgba(226, 232, 240, 0.22) !important;
    color: #ffffff !important;
}

html[data-theme="midnight"] .detail-save-action,
html[data-theme="midnight"] .detail-compare-action {
    background: rgba(29, 23, 14, 0.90) !important;
    border-color: rgba(217, 174, 74, 0.28) !important;
    color: #fff2c3 !important;
}

html[data-theme="dark"] .whatsapp-action,
html[data-theme="midnight"] .whatsapp-action {
    background: linear-gradient(135deg, #16a34a, #047857) !important;
    border-color: rgba(134, 239, 172, 0.38) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .search-advanced-row,
html[data-theme="midnight"] .search-advanced-row {
    background: rgba(15, 23, 42, 0.84) !important;
    border-color: rgba(226, 232, 240, 0.16) !important;
    color: #f8fafc !important;
}

html[data-theme="midnight"] .search-advanced-row {
    background: rgba(29, 23, 14, 0.88) !important;
    border-color: rgba(217, 174, 74, 0.24) !important;
}

html[data-theme="dark"] .search-advanced-row *,
html[data-theme="midnight"] .search-advanced-row * {
    color: inherit !important;
}

html[data-theme="dark"] .firm-products-empty,
html[data-theme="midnight"] .firm-products-empty {
    background: var(--surface) !important;
    border-color: var(--border) !important;
    color: #dbe6f6 !important;
    box-shadow: var(--shadow) !important;
}

html[data-theme="dark"] .firm-products-section h2,
html[data-theme="midnight"] .firm-products-section h2 {
    color: #f8fafc !important;
}

html[data-theme="dark"] .firm-products-empty p,
html[data-theme="midnight"] .firm-products-empty p {
    color: #dbe6f6 !important;
}

/* Gorunmeyen alanlar icin tema rengi duzeltme ezmeleri */
html[data-theme="dark"] .follow-heading h2,
html[data-theme="midnight"] .follow-heading h2 {
    color: var(--text) !important;
}

html[data-theme="dark"] .follow-chip-grid button,
html[data-theme="midnight"] .follow-chip-grid button {
    background: var(--surface) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
}

html[data-theme="dark"] .follow-chip-grid button strong,
html[data-theme="midnight"] .follow-chip-grid button strong {
    color: var(--text) !important;
}

html[data-theme="dark"] .follow-chip-grid button small,
html[data-theme="midnight"] .follow-chip-grid button small {
    color: var(--text-muted) !important;
}

html[data-theme="dark"] .follow-chip-grid button > span,
html[data-theme="midnight"] .follow-chip-grid button > span {
    background: var(--surface-soft) !important;
    color: var(--text-muted) !important;
}

html[data-theme="dark"] .follow-chip-grid button.active,
html[data-theme="midnight"] .follow-chip-grid button.active {
    background: color-mix(in srgb, var(--primary) 12%, transparent) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

html[data-theme="dark"] .follow-chip-grid button.active > span,
html[data-theme="midnight"] .follow-chip-grid button.active > span {
    background: var(--primary) !important;
    color: #ffffff !important;
}

html[data-theme="dark"] .nav-account-link:hover,
html[data-theme="dark"] .nav-logout:hover,
html[data-theme="dark"] .nav-notification-link:hover,
html[data-theme="dark"] .nav-discovery-menu summary:hover,
html[data-theme="dark"] .nav-profile:hover,
html[data-theme="midnight"] .nav-account-link:hover,
html[data-theme="midnight"] .nav-logout:hover,
html[data-theme="midnight"] .nav-notification-link:hover,
html[data-theme="midnight"] .nav-discovery-menu summary:hover,
html[data-theme="midnight"] .nav-profile:hover {
    background: var(--surface-soft) !important;
    color: var(--primary) !important;
    border-color: var(--border) !important;
}

@media (max-width: 991px) {
    html[data-theme="dark"] .nav-account-link,
    html[data-theme="dark"] .nav-logout,
    html[data-theme="dark"] .nav-notification-link,
    html[data-theme="dark"] .nav-discovery-menu summary,
    html[data-theme="midnight"] .nav-account-link,
    html[data-theme="midnight"] .nav-logout,
    html[data-theme="midnight"] .nav-notification-link,
    html[data-theme="midnight"] .nav-discovery-menu summary {
        background: var(--surface) !important;
        border-color: var(--border) !important;
        color: var(--text) !important;
    }
    
    html[data-theme="dark"] .nav-profile,
    html[data-theme="midnight"] .nav-profile {
        background: var(--surface) !important;
        border-color: var(--border) !important;
        color: var(--text) !important;
    }
    
    html[data-theme="dark"] .nav-profile-arrow,
    html[data-theme="midnight"] .nav-profile-arrow {
        background: var(--surface-soft) !important;
        color: var(--text-muted) !important;
    }

    html[data-theme="dark"] .nav-link:not(.active),
    html[data-theme="midnight"] .nav-link:not(.active) {
        background: var(--surface-soft) !important;
        border-color: var(--border) !important;
        color: var(--text-muted) !important;
    }
}

/* Mobil/baslik navigasyon simgeleri ve PRO one cikan rozetleri icin tema ezmeleri */
html[data-theme="dark"] .nav-item-icon,
html[data-theme="dark"] .nav-action-icon,
html[data-theme="midnight"] .nav-item-icon,
html[data-theme="midnight"] .nav-action-icon {
    background: var(--surface-soft) !important;
    color: var(--primary) !important;
}

html[data-theme="dark"] .nav-logout .nav-action-icon,
html[data-theme="midnight"] .nav-logout .nav-action-icon {
    background: rgba(220, 38, 38, 0.15) !important;
    color: #ef4444 !important;
}

html[data-theme="dark"] .nav-action-icon.pro,
html[data-theme="midnight"] .nav-action-icon.pro {
    background: rgba(217, 174, 74, 0.15) !important;
    color: var(--gold) !important;
}

html[data-theme="dark"] .nav-admin-link,
html[data-theme="midnight"] .nav-admin-link {
    background: var(--surface) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
}

html[data-theme="dark"] .nav-admin-link > span:first-child,
html[data-theme="midnight"] .nav-admin-link > span:first-child {
    background: var(--surface-soft) !important;
    color: var(--text) !important;
}

html[data-theme="dark"] .badge-featured,
html[data-theme="midnight"] .badge-featured,
.pro-card .badge-featured {
    background: rgba(217, 174, 74, 0.14) !important;
    border-color: rgba(217, 174, 74, 0.32) !important;
    color: var(--gold) !important;
}

/* Masaustu ve mobil navigasyon baslik ogeleri icin genel ezmeler */
html[data-theme="dark"] .nav-profile,
html[data-theme="midnight"] .nav-profile {
    background: var(--surface) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
}

html[data-theme="dark"] .nav-notification-link,
html[data-theme="midnight"] .nav-notification-link {
    background: var(--surface) !important;
    border-color: var(--border) !important;
    color: var(--text) !important;
}

/* Masaustunde bildirim simgesinin gorunur oldugundan emin olun */
.nav-notification-link .nav-action-icon {
    display: inline-grid !important;
    background: transparent !important;
    color: inherit !important;
    width: auto !important;
    height: auto !important;
    font-size: 0.95rem !important;
}

/* --- PROFIL ACILIR MENU STILLERI --- */

/* Sadece masaustu stilleri */
@media (min-width: 961px) {
    .nav-profile-container {
        position: relative;
        display: inline-block;
    }

    .nav-profile {
        cursor: pointer;
        user-select: none;
    }

    .nav-profile-arrow {
        display: inline-block !important;
        font-size: 0.8rem;
        transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        margin-left: 2px;
    }

    .nav-profile-container.active .nav-profile-arrow {
        transform: rotate(90deg);
    }

    .nav-profile-dropdown {
        display: flex;
        flex-direction: column;
        gap: 2px;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        z-index: 1000;
        width: 240px;
        padding: 0.6rem;
        border-radius: 16px;
        border: 1px solid var(--border);
        background: color-mix(in srgb, var(--surface) 88%, transparent);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.25), 
                    0 4px 12px -5px rgba(0, 0, 0, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.05);
        
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px) scale(0.97);
        transform-origin: top right;
        transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), 
                    visibility 0.22s;
    }

    .nav-profile-container.active .nav-profile-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    /* Masaustunde Acilir Menu Icindeki Menu Ogeleri */
    .nav-profile-dropdown a,
    .nav-profile-dropdown details summary {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.65rem !important;
        width: 100% !important;
        height: auto !important;
        min-height: 38px !important;
        padding: 0.5rem 0.75rem !important;
        border: none !important;
        border-radius: 9px !important;
        background: transparent !important;
        color: var(--text) !important;
        font-size: 0.78rem !important;
        font-weight: 650 !important;
        text-decoration: none !important;
        box-shadow: none !important;
        transform: none !important;
        transition: background 0.15s ease, color 0.15s ease !important;
        cursor: pointer;
    }

    .nav-profile-dropdown .nav-mobile-label {
        display: inline !important;
    }

    /* Acilir menudeki butonlar/linkler icin varsayilan arka plan/kenarliklari ez */
    .nav-profile-dropdown .nav-admin-link,
    .nav-profile-dropdown .nav-notification-link {
        width: 100% !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .nav-profile-dropdown .nav-notification-link b {
        margin-left: auto;
        background: var(--brand-primary);
        color: #ffffff;
        font-size: 0.65rem;
        padding: 0.1rem 0.35rem;
        border-radius: 999px;
        min-width: 16px;
        text-align: center;
    }

    /* Normal linkler icin hover efekti */
    .nav-profile-dropdown a:hover,
    .nav-profile-dropdown details summary:hover {
        background: var(--surface-soft) !important;
        color: var(--brand-primary) !important;
    }

    /* Cikis yapmaya ozel premium stil */
    .nav-profile-dropdown .nav-logout {
        color: #dc2626 !important;
    }
    
    .nav-profile-dropdown .nav-logout:hover {
        background: rgba(220, 38, 38, 0.08) !important;
        color: #dc2626 !important;
    }

    /* Acilir menu icindeki Kesif Alt Menusu (detaylar) */
    .nav-profile-dropdown details {
        width: 100%;
    }

    .nav-profile-dropdown details[open] summary {
        background: var(--surface-soft);
        color: var(--brand-primary);
    }

    .nav-profile-dropdown details > div {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding-left: 2.1rem;
        margin-top: 2px;
        margin-bottom: 4px;
    }

    .nav-profile-dropdown details > div a {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.74rem !important;
        font-weight: 550 !important;
        color: var(--text-muted) !important;
    }

    .nav-profile-dropdown details > div a:hover {
        color: var(--brand-primary) !important;
        background: var(--surface-soft) !important;
    }

    /* Acilir menu icindeki Aksiyon Simgeleri */
    .nav-profile-dropdown .nav-action-icon {
        display: inline-grid !important;
        place-items: center !important;
        width: 25px !important;
        height: 25px !important;
        border-radius: 7px !important;
        background: var(--surface-soft) !important;
        color: var(--text-muted) !important;
        font-size: 0.72rem !important;
        font-weight: 800 !important;
        transition: all 0.15s ease;
        flex: 0 0 25px !important;
    }

    .nav-profile-dropdown a:hover .nav-action-icon,
    .nav-profile-dropdown details summary:hover .nav-action-icon {
        background: color-mix(in srgb, var(--brand-primary) 12%, transparent) !important;
        color: var(--brand-primary) !important;
    }

    .nav-profile-dropdown a:hover .nav-action-icon.pro,
    .nav-profile-dropdown details summary:hover .nav-action-icon.pro {
        background: rgba(217, 174, 74, 0.18) !important;
        color: var(--gold) !important;
    }

    .nav-dropdown-divider {
        height: 1px;
        margin: 4px 8px;
        background: var(--border);
    }
}

/* Mobil duyarli stilleri */
@media (max-width: 960px) {
    .nav-profile-container {
        display: contents !important;
    }

    .nav-profile-dropdown {
        display: contents !important;
    }

    .nav-profile-dropdown .main-profile-link,
    .nav-profile-dropdown .nav-dropdown-divider {
        display: none !important;
    }
}

/* Zengin Editor Tema Destegi */
html[data-theme="dark"] .firm-rich-editor,
html[data-theme="midnight"] .firm-rich-editor {
    border-color: var(--border) !important;
    background: var(--surface) !important;
    box-shadow: var(--shadow) !important;
}
html[data-theme="dark"] .rich-editor-toolbar,
html[data-theme="midnight"] .rich-editor-toolbar {
    border-bottom: 1px solid var(--border) !important;
    background: var(--surface-soft) !important;
}
html[data-theme="dark"] .rich-editor-toolbar > span:not(.toolbar-spacer),
html[data-theme="midnight"] .rich-editor-toolbar > span:not(.toolbar-spacer) {
    background: var(--border) !important;
}
html[data-theme="dark"] .rich-editor-toolbar button,
html[data-theme="midnight"] .rich-editor-toolbar button {
    color: var(--text-muted) !important;
}
html[data-theme="dark"] .rich-editor-toolbar button:hover,
html[data-theme="dark"] .rich-editor-toolbar button.active,
html[data-theme="midnight"] .rich-editor-toolbar button:hover,
html[data-theme="midnight"] .rich-editor-toolbar button.active {
    border-color: var(--primary) !important;
    background: color-mix(in srgb, var(--primary) 12%, transparent) !important;
    color: var(--primary) !important;
}
html[data-theme="dark"] .rich-editor-surface,
html[data-theme="midnight"] .rich-editor-surface {
    background: var(--surface) !important;
    color: var(--text) !important;
}
html[data-theme="dark"] .rich-editor-surface:empty::before,
html[data-theme="midnight"] .rich-editor-surface:empty::before {
    color: var(--text-muted) !important;
}
html[data-theme="dark"] .rich-editor-footer,
html[data-theme="midnight"] .rich-editor-footer {
    border-top: 1px solid var(--border) !important;
    background: var(--surface-soft) !important;
}
html[data-theme="dark"] .rich-editor-footer span,
html[data-theme="midnight"] .rich-editor-footer span {
    color: var(--primary) !important;
}
html[data-theme="dark"] .rich-editor-footer small,
html[data-theme="midnight"] .rich-editor-footer small {
    color: var(--text-muted) !important;
}

/* Haber Detayi Geri Butonu Renk Duzeltmesi */
.news-detail-layout .btn-outline {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.news-detail-layout .btn-outline:hover {
    color: #ffffff !important;
    background: var(--primary) !important;
}

/* Premium Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 0.85rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    color: var(--text-muted);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

.page-link:hover {
    background: var(--primary);
    color: #ffffff !important;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.page-link.active {
    background: var(--primary);
    color: #ffffff !important;
    border-color: var(--primary);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
    cursor: default;
    pointer-events: none;
}

.page-link.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    background: var(--surface-soft);
    border-color: var(--border);
    color: var(--text-muted) !important;
}

.page-ellipsis {
    color: var(--text-muted);
    font-size: 1.1rem;
    padding: 0 0.4rem;
    user-select: none;
}

/* Dark and Midnight themes adaptations */
html[data-theme="dark"] .page-link,
html[data-theme="midnight"] .page-link {
    background: var(--white);
    border-color: var(--border);
    color: var(--text-muted);
}

html[data-theme="dark"] .page-link:hover,
html[data-theme="midnight"] .page-link:hover {
    color: #ffffff !important;
}

/* Directory Listing Filter Styles */
.directory-filters-section {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow);
}

.directory-filters-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.directory-filters-grid {
    display: grid;
    grid-template-columns: 2.2fr 1.3fr 1.3fr 1fr;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .directory-filters-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .directory-filters-grid {
        grid-template-columns: 1fr;
    }
}

.directory-filters-grid input[type="text"],
.directory-filters-grid select {
    width: 100%;
    height: 48px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--input-bg);
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.directory-filters-grid input[type="text"]:focus,
.directory-filters-grid select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent);
}

.directory-filters-options {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
    cursor: pointer;
    user-select: none;
}

.filter-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 1px solid var(--border);
    cursor: pointer;
    accent-color: var(--primary);
}

.directory-filters-actions {
    margin-left: auto;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

@media (max-width: 640px) {
    .directory-filters-actions {
        width: 100%;
        margin-left: 0;
    }
    .directory-filters-actions button,
    .directory-filters-actions a {
        flex: 1;
        text-align: center;
    }
}

/* Dynamic Live Search Loading State overlay */
.firms-grid-container {
    position: relative;
    min-height: 200px;
}

.firms-grid-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--bg) 75%, transparent);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    border-radius: var(--radius);
}

.firms-grid-container.loading .firms-grid-loader {
    opacity: 1;
    pointer-events: auto;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile navigation final polish */
@media (max-width: 960px) {
    .site-header.nav-open {
        z-index: 80;
    }

    .site-header.nav-open .main-nav {
        left: 0.75rem !important;
        right: 0.75rem !important;
        top: calc(100% + 6px) !important;
        width: auto !important;
        max-height: calc(100dvh - 86px) !important;
        gap: 0.85rem !important;
        padding: 0.9rem !important;
        border-radius: 22px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        background:
            radial-gradient(circle at 92% 0%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 34%),
            color-mix(in srgb, var(--surface) 96%, transparent) !important;
        border: 1px solid color-mix(in srgb, var(--primary) 20%, var(--border)) !important;
        box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34) !important;
        backdrop-filter: blur(18px);
    }

    .mobile-nav-heading {
        margin: 0 !important;
        padding: 0.35rem 0.35rem 0.95rem !important;
        border-bottom: 1px solid var(--border) !important;
    }

    .mobile-nav-heading strong {
        color: var(--text) !important;
        font-size: 1rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.02em;
    }

    .mobile-nav-heading small {
        color: var(--text-muted) !important;
        font-size: 0.76rem !important;
        line-height: 1.35 !important;
        font-weight: 750 !important;
    }

    .mobile-nav-heading > span {
        padding: 0.38rem 0.62rem !important;
        border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
        background: color-mix(in srgb, var(--primary) 12%, var(--surface)) !important;
        color: var(--primary) !important;
        font-size: 0.62rem !important;
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.10);
    }

    .nav-primary,
    .nav-actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.55rem !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .nav-actions {
        margin-top: 0 !important;
        padding-top: 0.9rem !important;
        border-top: 1px solid var(--border) !important;
    }

    .nav-section-label {
        grid-column: 1 / -1 !important;
        margin: 0 0 -0.2rem !important;
        padding: 0 0.15rem !important;
        color: var(--text-muted) !important;
        font-size: 0.66rem !important;
        font-weight: 950 !important;
        letter-spacing: 0.14em !important;
        text-transform: uppercase;
    }

    .nav-link,
    .nav-login,
    .nav-register,
    .nav-account-link,
    .nav-notification-link,
    .nav-discovery-menu summary,
    .nav-logout,
    .language-switcher,
    .theme-switcher {
        min-width: 0 !important;
        min-height: 48px !important;
        justify-content: flex-start !important;
        gap: 0.58rem !important;
        padding: 0.58rem 0.62rem !important;
        border: 1px solid var(--border) !important;
        border-radius: 13px !important;
        background: color-mix(in srgb, var(--surface-soft) 72%, var(--surface)) !important;
        color: var(--text) !important;
        box-shadow: none !important;
        text-align: left !important;
        font-size: 0.76rem !important;
        font-weight: 850 !important;
        line-height: 1.15 !important;
    }

    .nav-link.active,
    .nav-link:hover {
        border-color: color-mix(in srgb, var(--primary) 52%, var(--border)) !important;
        background: color-mix(in srgb, var(--primary) 16%, var(--surface)) !important;
        color: var(--primary) !important;
    }

    .nav-item-icon,
    .nav-action-icon,
    .language-switcher > span,
    .theme-switcher > span {
        display: inline-grid !important;
        place-items: center !important;
        width: 30px !important;
        height: 30px !important;
        flex: 0 0 30px !important;
        border-radius: 10px !important;
        background: color-mix(in srgb, var(--primary) 14%, transparent) !important;
        color: var(--primary) !important;
        font-size: 0.82rem !important;
        font-weight: 950 !important;
    }

    .nav-item-label,
    .nav-login,
    .nav-register,
    .nav-account-link,
    .nav-notification-link,
    .nav-discovery-menu summary,
    .nav-logout,
    .theme-switcher small {
        font-size: 0.76rem !important;
        font-weight: 850 !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .language-switcher {
        position: relative;
        overflow: hidden;
    }

    .language-switcher select {
        width: 100% !important;
        min-width: 0 !important;
        height: 30px !important;
        border: 0 !important;
        outline: 0 !important;
        background: transparent !important;
        color: var(--text) !important;
        font-size: 0.78rem !important;
        font-weight: 950 !important;
        line-height: 1 !important;
        appearance: none;
        -webkit-appearance: none;
        cursor: pointer;
    }

    .language-switcher::after {
        content: "⌄";
        position: absolute;
        right: 0.72rem;
        top: 50%;
        transform: translateY(-54%);
        color: var(--text-muted);
        font-size: 0.92rem;
        pointer-events: none;
    }

    .theme-switcher {
        width: auto !important;
    }

    .nav-login,
    .nav-register {
        display: inline-flex !important;
    }

    .nav-register {
        background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 76%, #0f172a)) !important;
        color: #ffffff !important;
        border-color: transparent !important;
        justify-content: center !important;
    }

    .nav-register span {
        color: inherit !important;
    }

    .nav-profile {
        grid-column: 1 / -1 !important;
        min-height: 54px !important;
        border-color: color-mix(in srgb, var(--primary) 20%, var(--border)) !important;
        background: color-mix(in srgb, var(--surface-soft) 78%, var(--surface)) !important;
    }

    .nav-profile-copy strong {
        color: var(--text) !important;
        font-size: 0.78rem !important;
    }

    .nav-profile-copy small {
        color: var(--text-muted) !important;
        font-size: 0.66rem !important;
    }

    .nav-profile-dropdown {
        grid-column: 1 / -1;
    }
}

@media (max-width: 420px) {
    .site-header.nav-open .main-nav {
        left: 0.55rem !important;
        right: 0.55rem !important;
        padding: 0.75rem !important;
        gap: 0.72rem !important;
    }

    .nav-primary,
    .nav-actions {
        gap: 0.45rem !important;
    }

    .nav-link,
    .nav-login,
    .nav-register,
    .nav-account-link,
    .nav-notification-link,
    .nav-discovery-menu summary,
    .nav-logout,
    .language-switcher,
    .theme-switcher {
        min-height: 46px !important;
        padding: 0.52rem !important;
        font-size: 0.7rem !important;
    }

    .nav-item-label,
    .nav-login,
    .nav-register,
    .nav-account-link,
    .nav-notification-link,
    .nav-discovery-menu summary,
    .nav-logout,
    .theme-switcher small,
    .language-switcher select {
        font-size: 0.7rem !important;
    }
}
