/* VinçGo — Beyaz · Sarı · Lacivert Tasarım Sistemi */
:root {
    --navy-950: #040f1f;
    --navy-900: #071829;
    --navy-800: #0b2547;
    --navy-700: #123b6b;
    --navy-600: #1a4f8f;
    --yellow-500: #f5b800;
    --yellow-400: #ffc72c;
    --yellow-300: #ffd95a;
    --yellow-100: #fff8e1;
    --white: #ffffff;
    --gray-50: #f7f9fc;
    --gray-100: #eef2f8;
    --gray-200: #dce3ef;
    --gray-400: #8b9bb5;
    --gray-600: #4a5d78;
    --gray-800: #1e2d42;
    --shadow-sm: 0 2px 8px rgba(7, 24, 41, 0.06);
    --shadow-md: 0 8px 30px rgba(7, 24, 41, 0.1);
    --shadow-lg: 0 20px 50px rgba(7, 24, 41, 0.15);
    --radius: 16px;
    --radius-lg: 24px;
}

* { box-sizing: border-box; }

body {
    background: var(--gray-50);
    color: var(--gray-800);
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
}

/* ── NAV ── */
.vg-nav {
    background: rgba(7, 24, 41, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--yellow-500);
}
.vg-nav.scrolled { box-shadow: var(--shadow-md); }
.vg-nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color .2s;
}
.vg-nav-link:hover { color: var(--yellow-400); }
.vg-btn-yellow {
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-400));
    color: var(--navy-900);
    font-weight: 800;
    border-radius: 12px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(245, 184, 0, 0.35);
}
.vg-btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 184, 0, 0.45);
}
.vg-btn-navy {
    background: var(--navy-800);
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid var(--navy-700);
    transition: all .2s;
}
.vg-btn-navy:hover {
    background: var(--navy-700);
    border-color: var(--yellow-500);
}

/* ── HERO ── */
.vg-hero {
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    position: relative;
    overflow: hidden;
}
.vg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 90% 10%, rgba(245,184,0,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(245,184,0,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.vg-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black 40%, transparent);
    z-index: 2;
    pointer-events: none;
}
.vg-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.vg-hero-media-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.vg-hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4,15,31,0.88) 0%, rgba(7,24,41,0.78) 50%, rgba(11,37,71,0.72) 100%);
    z-index: 1;
    pointer-events: none;
}
.vg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,184,0,0.15);
    border: 1px solid rgba(245,184,0,0.35);
    color: var(--yellow-400);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.vg-search-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    overflow: visible;
    position: relative;
    z-index: 30;
}
.vg-hero-home { overflow: visible; }
.vg-search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}
@media (min-width: 768px) {
    .vg-search-field { border-right: 1px solid var(--gray-200); }
    .vg-search-field:last-of-type { border-right: none; }
}
@media (max-width: 767px) {
    .vg-search-field { border-bottom: 1px solid var(--gray-200); }
    .vg-search-field:last-of-type { border-bottom: none; }
}
.vg-btn-navy.text-white,
.vg-btn-navy { color: #fff !important; }
.vg-search-field i { color: var(--yellow-500); font-size: 1.1rem; }
.vg-search-field select {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-weight: 600;
    color: var(--navy-900);
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
}
.vg-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all .2s;
}
.vg-tag:hover {
    background: var(--yellow-500);
    color: var(--navy-900);
    border-color: var(--yellow-500);
}

/* ── STATS BAR (hero altı yüzen kart) ── */
.vg-stats-wrap {
    margin-top: -48px;
    position: relative;
    z-index: 20;
    padding: 0 16px 32px;
}
.vg-stats {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 20px 50px rgba(7, 24, 41, 0.12);
    padding: 8px;
}
.vg-stats-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}
@media (min-width: 768px) {
    .vg-stats-inner { grid-template-columns: repeat(3, 1fr); gap: 0; }
}
.vg-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-radius: 14px;
    transition: background .2s;
}
.vg-stat-item:hover { background: var(--gray-50); }
@media (min-width: 768px) {
    .vg-stat-item:not(:last-child) { border-right: 1px solid var(--gray-100); }
}
.vg-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.vg-stat-icon.navy { background: var(--navy-900); color: var(--yellow-400); }
.vg-stat-icon.yellow { background: var(--yellow-100); color: var(--navy-800); }

/* ── SECTION HEADERS ── */
.vg-section-label {
    color: var(--yellow-500);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.vg-section-title {
    color: var(--navy-900);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
}

/* ── CATEGORY CARDS (Rehber) ── */
.vg-cat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.vg-cat-card:hover {
    border-color: var(--yellow-500);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.vg-cat-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.vg-cat-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,24,41,0.7) 0%, transparent 60%);
}
.vg-cat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--yellow-500);
    color: var(--navy-900);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 1;
}
.vg-cat-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.vg-cat-icon {
    width: 44px;
    height: 44px;
    background: var(--yellow-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-800);
    margin-bottom: 12px;
    border: 1px solid rgba(245,184,0,0.3);
}
.vg-cat-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ── STEPS ── */
.vg-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--yellow-500);
    color: var(--navy-900);
    font-weight: 900;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 0 var(--navy-800);
}

/* ── DETAIL PAGE ── */
.vg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 24px;
}
.vg-breadcrumb a { color: var(--navy-700); transition: color .2s; }
.vg-breadcrumb a:hover { color: var(--yellow-500); }
.vg-breadcrumb .sep { color: var(--gray-200); }
.vg-detail-hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    min-height: 280px;
}
@media (min-width: 768px) { .vg-detail-hero { min-height: 360px; } }
.vg-detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.vg-detail-hero-overlay {
    position: relative;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
    background: linear-gradient(135deg, rgba(7,24,41,0.94) 0%, rgba(7,24,41,0.82) 45%, rgba(7,24,41,0.55) 100%);
    color: #fff;
}
@media (min-width: 768px) { .vg-detail-hero-overlay { padding: 40px 48px; } }
.vg-detail-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow-500), var(--yellow-300), var(--yellow-500));
}
.vg-detail-hero-overlay > * { position: relative; z-index: 1; }

/* ── FIRM CARDS (Rehber Listesi) ── */
.vg-firm-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    transition: all .25s;
    position: relative;
}
@media (max-width: 640px) {
    .vg-firm-card { grid-template-columns: 1fr; text-align: center; }
}
.vg-firm-card:hover {
    border-color: var(--yellow-500);
    box-shadow: var(--shadow-md);
}
.vg-firm-avatar {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    border: 3px solid var(--yellow-100);
}
.vg-firm-initial {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    color: var(--yellow-400);
    font-size: 1.75rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--yellow-100);
}
.vg-firm-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--yellow-100);
    color: var(--navy-800);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.vg-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--yellow-100);
    color: var(--navy-900);
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
}
.vg-rating i { color: var(--yellow-500); }

/* ── SIDEBAR ── */
.vg-sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.vg-sidebar-head {
    background: var(--navy-900);
    color: #fff;
    padding: 16px 20px;
    font-weight: 800;
    font-size: 0.95rem;
    border-bottom: 3px solid var(--yellow-500);
}
.vg-sidebar-body { padding: 16px; }
.vg-cta-card {
    background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
    border-radius: var(--radius-lg);
    padding: 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.vg-cta-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: var(--yellow-500);
    opacity: 0.15;
    border-radius: 50%;
}

/* ── CARDS & FAQ ── */
.vg-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.vg-faq details {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}
.vg-faq summary {
    padding: 16px 20px;
    font-weight: 700;
    color: var(--navy-900);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-50);
}
.vg-faq summary::-webkit-details-marker { display: none; }
.vg-faq details[open] summary { background: var(--yellow-100); border-bottom: 1px solid var(--gray-200); }
.vg-faq .answer { padding: 16px 20px; color: var(--gray-600); font-size: 0.9rem; line-height: 1.6; }

/* ── REVIEW CARDS ── */
.vg-review {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
}

/* ── FOOTER ── */
.vg-footer {
    background: var(--navy-950);
    color: rgba(255,255,255,0.7);
    border-top: 4px solid var(--yellow-500);
}
.vg-footer h4 { color: #fff; font-weight: 800; margin-bottom: 20px; }
.vg-footer a { transition: color .2s; }
.vg-footer a:hover { color: var(--yellow-400); }

/* ── FORM ── */
.form-input, .vg-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--navy-900);
    transition: border-color .2s, box-shadow .2s;
    font-weight: 500;
}
.form-input:focus, .vg-input:focus {
    outline: none;
    border-color: var(--yellow-500);
    box-shadow: 0 0 0 3px rgba(245,184,0,0.2);
    background: var(--white);
}
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 6px;
}

/* ── MODAL ── */
.vg-modal-head {
    background: var(--navy-900);
    color: #fff;
    padding: 20px 24px;
    border-bottom: 3px solid var(--yellow-500);
}

/* ── ARTICLE (SEO içerik) ── */
.vg-article h2 { color: var(--navy-900); font-weight: 800; margin-top: 1.5rem; }
.vg-article a { color: var(--navy-700); font-weight: 600; }
.vg-article a:hover { color: var(--yellow-500); }
.vg-hero .vg-article a,
.vg-detail-hero-overlay .vg-article a { color: var(--yellow-400); }
.vg-hero .vg-article a:hover { color: var(--yellow-300); }

/* ── SCROLLBAR ── */
.custom-scrollbar::-webkit-scrollbar { width: 5px; }
.custom-scrollbar::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 4px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: var(--navy-600); border-radius: 4px; }

/* ── MOBILE MENU ── */
#mobileMenu { background: var(--navy-900); }
#mobileMenu a { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.1) !important; }

/* ── FLOATING WA ── */
.vg-fab-wa {
    background: #25D366;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    box-shadow: var(--shadow-lg);
    transition: transform .2s;
}
.vg-fab-wa:hover { transform: scale(1.08); }

/* ── LOCATION LIST ── */
.vg-loc-item {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: all .15s;
    border: 1px solid transparent;
}
.vg-loc-item:hover, .vg-loc-item.active {
    background: var(--yellow-100);
    color: var(--navy-900);
    border-color: rgba(245,184,0,0.4);
}
.vg-loc-selected {
    background: var(--navy-900);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid var(--yellow-500);
}

/* ── CATEGORY SIDEBAR LIST ── */
.vg-cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-600);
    transition: all .15s;
    border: 1px solid transparent;
}
.vg-cat-link:hover { background: var(--gray-50); border-color: var(--gray-200); }
.vg-cat-link.active {
    background: var(--yellow-100);
    color: var(--navy-900);
    border-color: var(--yellow-500);
}

/* ── CUSTOM SELECT ── */
.vg-cselect { position: relative; flex: 1; min-width: 0; }
.vg-cselect-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy-900);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.vg-cselect-btn .placeholder { color: var(--gray-400); }
.vg-cselect-btn i.chevron {
    color: var(--yellow-500);
    font-size: 0.7rem;
    transition: transform .2s;
    flex-shrink: 0;
}
.vg-cselect.open .vg-cselect-btn i.chevron { transform: rotate(180deg); }
.vg-cselect-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: -20px;
    right: -20px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-height: 280px;
    overflow-y: auto;
    z-index: 60;
    padding: 8px;
}
.vg-cselect.open .vg-cselect-menu { display: block; }
.vg-cselect-menu-portal {
    position: fixed;
    z-index: 9999;
    display: none;
}
.vg-cselect-menu-portal.open { display: block; }
.vg-cselect-option {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-800);
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    transition: all .15s;
}
.vg-cselect-option:hover,
.vg-cselect-option.selected {
    background: var(--yellow-100);
    color: var(--navy-900);
}
.vg-cselect-option.selected { box-shadow: inset 3px 0 0 var(--yellow-500); }
.vg-cselect-native { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }

/* ── HOMEPAGE SEO SECTIONS ── */
.vg-hp-stat-num {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--yellow-500);
    line-height: 1;
}
.vg-hp-feature {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
    transition: all .25s;
    height: 100%;
}
.vg-hp-feature:hover {
    border-color: var(--yellow-500);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.vg-hp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--navy-900);
    color: var(--yellow-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.vg-hp-city {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-weight: 700;
    color: var(--navy-800);
    transition: all .2s;
}
.vg-hp-city:hover {
    border-color: var(--yellow-500);
    background: var(--yellow-100);
    color: var(--navy-900);
}
.vg-region-picker {
    max-width: 360px;
    margin: 0 auto;
}
