/* Vizesiz Geziyorum — Next.js ana sayfa görünümüne yakın */
:root {
  --vgz-bg: #f0f4f8;
  --vgz-bg2: #e8edf5;
  --vgz-card: #ffffff;
  --vgz-charcoal: #1a2332;
  --vgz-muted: #64748b;
  --vgz-border: #e8edf3;
  --vgz-blue: #2563eb;
  --vgz-green: #16a34a;
  --vgz-radius: 20px;
  --vgz-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --vgz-serif: "DM Serif Display", Georgia, serif;
  --vgz-title: "Sora", var(--vgz-font);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--vgz-font);
  background: var(--vgz-bg);
  color: var(--vgz-charcoal);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

body.vgz-body-home {
  overflow-x: hidden;
}

a {
  color: var(--vgz-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.vgz-container {
  width: min(1240px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.vgz-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--vgz-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.vgz-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.vgz-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--vgz-title);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--vgz-charcoal);
  text-decoration: none !important;
}

.vgz-logo__mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  font-size: 1rem;
}

.vgz-nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vgz-nav__list a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--vgz-muted);
  text-decoration: none;
  position: relative;
}

.vgz-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  transition: width 0.25s ease;
}

.vgz-nav__list a:hover {
  color: var(--vgz-green);
  text-decoration: none;
}

.vgz-nav__list a:hover::after {
  width: 100%;
}

.vgz-main {
  min-height: 60vh;
}

/* ── Ana sayfa hero (Next.js birebir) ── */
.vgz-body-home .vgz-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  transition: background 0.25s, box-shadow 0.25s;
}

.vgz-body-home .vgz-header--scrolled {
  background: #fff;
  border-bottom: 1px solid var(--vgz-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.vgz-body-home .vgz-main {
  padding-top: 0;
}

.vgz-logo--split {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--vgz-title);
  font-weight: 800;
  font-size: 1.375rem;
  letter-spacing: -0.5px;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
}

.vgz-logo--split span {
  display: inline;
  margin: 0;
  padding: 0;
}

.vgz-logo__accent,
.vgz-logo__dot {
  color: #60a5fa;
  transition: color 0.25s;
}

.vgz-header--overlay .vgz-logo__main,
.vgz-header--overlay .vgz-nav__list--hero a {
  color: #fff;
}

.vgz-header--scrolled .vgz-logo__main {
  color: #1a2332;
}

.vgz-body-home .vgz-header--scrolled {
  background: #fff;
  border-bottom: 1px solid var(--vgz-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.vgz-header--scrolled .vgz-nav__list--hero a {
  color: #475569;
}

.vgz-header--scrolled .vgz-nav__list--hero a:hover {
  color: #2563eb;
}

.vgz-nav--main {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: clamp(8px, 1.5vw, 20px);
  min-width: 0;
}

.vgz-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.vgz-nav-search {
  position: relative;
  display: flex;
  align-items: center;
}

.vgz-nav-search__icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  display: flex;
}

.vgz-header--scrolled .vgz-nav-search__icon {
  color: #94a3b8;
}

.vgz-nav-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.vgz-header--scrolled .vgz-nav-divider {
  background: #e2e8f0;
}

.vgz-social-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vgz-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none !important;
  transition: transform 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.vgz-header--scrolled .vgz-social-btn {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #64748b;
}

.vgz-social-btn:hover {
  transform: scale(1.12);
  color: #fff;
  border-color: transparent;
}

.vgz-social-btn[data-hover="instagram"]:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.vgz-social-btn[data-hover="youtube"]:hover {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.vgz-social-btn[data-hover="spotify"]:hover {
  background: linear-gradient(135deg, #1db954, #158a3e);
}

.vgz-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.vgz-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.vgz-header--scrolled .vgz-menu-toggle span {
  background: #334155;
}

.vgz-mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-bottom: 1px solid var(--vgz-border);
  padding: 8px 16px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.vgz-mobile-menu[hidden] {
  display: none !important;
}

.vgz-mobile-menu a {
  padding: 12px 0;
  font-weight: 600;
  font-size: 14px;
  color: #334155;
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
}

.vgz-nav__list--hero a.is-active {
  color: #60a5fa;
}

.vgz-nav--home {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

.vgz-nav__list--hero {
  flex-wrap: wrap;
  justify-content: center;
}

.vgz-nav-search input {
  width: 156px;
  padding: 7px 10px 7px 30px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  outline: none;
}

.vgz-header--scrolled .vgz-nav-search input {
  border-color: #cbd5e1;
  background: #f1f5f9;
  color: #1a2332;
}

.vgz-hero-full {
  position: relative;
  min-height: 88vh;
  max-height: 860px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 8vh, 6.5rem) 0 clamp(2rem, 4vh, 3.5rem);
  overflow: visible;
  z-index: 2;
}

.vgz-hero-full__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.vgz-hero-full__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: vgzKenBurns 18s ease-in-out infinite alternate;
}

@keyframes vgzKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.12) translate(-2%, -1%); }
}

.vgz-hero-full__overlay--top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), transparent);
  z-index: 1;
}

.vgz-hero-full__overlay--bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(5, 20, 40, 0.92) 0%, rgba(5, 20, 40, 0.65) 35%, transparent 100%);
  z-index: 1;
}

.vgz-hero-full__tint {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 60, 0.22);
  z-index: 1;
}

.vgz-hero-full__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vgz-filter-widget {
  position: relative;
  z-index: 50;
  overflow: visible;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.vgz-hero-full__title {
  text-align: center;
  margin: 0 0 0.75rem;
  line-height: 1.05;
  font-size: clamp(2rem, 6vw, 4rem);
}

.vgz-hero-full__title-white {
  font-family: var(--vgz-title);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.vgz-hero-full__title-accent-wrap {
  position: relative;
  display: inline-block;
}

.vgz-hero-full__title-accent {
  font-family: var(--vgz-serif);
  font-style: italic;
  font-weight: 700;
  color: #0f172a;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.vgz-title-underline {
  position: absolute;
  bottom: -6px;
  left: -4px;
  width: calc(100% + 8px);
  height: 11px;
  overflow: visible;
  pointer-events: none;
}

.vgz-hero-full__sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 1.25rem;
}

.vgz-hero-full__sub strong {
  color: #0f172a;
  font-weight: 800;
}

.vgz-home-content {
  background: var(--vgz-bg);
  padding-top: 2.5rem;
}

.vgz-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  width: 100%;
  justify-content: center;
}

@media (min-width: 769px) {
  .vgz-hero-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

.vgz-hero-pill {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.94);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--vgz-font);
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s, border-color 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.vgz-hero-pill:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
}

.vgz-hero-pill__ico {
  display: flex;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85);
}

.vgz-hero-pill.is-active {
  color: #fff;
  border: none;
}

.vgz-hero-pill.is-active .vgz-hero-pill__ico {
  color: #fff;
}

.vgz-hero-pill[data-cat="vizesiz"].is-active {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.45);
}

.vgz-hero-pill[data-cat="kapida_vize"].is-active {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.45);
}

.vgz-hero-pill[data-cat="e_vize"].is-active {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}

.vgz-hero-pill[data-cat="kimlik"].is-active {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.45);
}

.vgz-search__icon {
  opacity: 0.5;
  margin-right: 0.5rem;
}

.vgz-search--hero input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
  padding: 0.65rem 0;
}

.vgz-search--hero input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

/* Filters */
.vgz-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.75rem;
  padding-top: 0.5rem;
}

.vgz-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vgz-tab {
  border: 1px solid var(--vgz-border);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--vgz-muted);
  font-family: inherit;
  transition: all 0.2s ease;
}

.vgz-tab:hover {
  border-color: #cbd5e1;
  color: var(--vgz-charcoal);
}

.vgz-tab.is-active {
  background: var(--vgz-charcoal);
  color: #fff;
  border-color: var(--vgz-charcoal);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.vgz-select {
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--vgz-border);
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
  color: var(--vgz-charcoal);
}

.vgz-section {
  padding-bottom: 4rem;
}

/* Grid */
.vgz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.35rem;
}

/* Cards — Next benzeri */
.vgz-card {
  background: #fff;
  border-radius: var(--vgz-radius);
  overflow: hidden;
  border: 1px solid #e8edf3;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.vgz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18);
  border-color: #e2e8f0;
}

.vgz-card__link {
  display: block;
  color: inherit;
  text-decoration: none !important;
}

.vgz-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(160deg, #334155, #0f172a);
}

.vgz-card__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.vgz-card:hover .vgz-card__photo {
  transform: scale(1.06);
}

.vgz-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.vgz-card:hover .vgz-card__media::after {
  opacity: 1;
}

.vgz-card__hover {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.vgz-card:hover .vgz-card__hover {
  opacity: 1;
}

.vgz-card:hover .vgz-card__warn {
  opacity: 0;
}

.vgz-card__hover-tri {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 360px;
  border-color: transparent transparent var(--vgz-hover-color, #2563eb) transparent;
  opacity: 0.92;
  animation: vgz-card-tri 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.vgz-card__hover-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 12px 14px 14px;
  animation: vgz-card-up 0.35s ease 0.18s both;
}

.vgz-card__hover-stats {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vgz-card__hover-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.vgz-card__hover-dots {
  display: inline-flex;
  gap: 3px;
  flex-shrink: 0;
}

.vgz-card__hover-dots .on {
  color: #fff;
  font-size: 10px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.vgz-card__hover-dots .off {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

@keyframes vgz-card-tri {
  from { transform: translateX(-105%) translateY(105%); }
  to { transform: translateX(0) translateY(0); }
}

@keyframes vgz-card-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.vgz-card__butce--eco {
  color: #15803d;
  background: rgba(22, 163, 74, 0.09);
}

.vgz-card__butce--mid {
  color: #b45309;
  background: rgba(245, 158, 11, 0.09);
}

.vgz-card__butce--high {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.09);
}

.vgz-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #334155 0%, #1e293b 60%, #0f172a 100%);
}

.vgz-card__pill {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
}

.vgz-card__flag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: #1e293b;
  line-height: 1;
}

.vgz-card__flag img {
  display: block;
  width: 34px;
  height: 23px;
  object-fit: cover;
}

.vgz-card__warn {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 3;
  background: rgba(220, 38, 38, 0.88);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}

.vgz-card__body {
  background: #fff;
  padding: 13px 16px 15px;
}

.vgz-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 4px;
}

.vgz-card__title {
  margin: 0;
  font-family: var(--vgz-title);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.vgz-card__meta {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: var(--vgz-muted);
  font-weight: 500;
}

.vgz-card__budget {
  text-align: right;
  flex-shrink: 0;
}

.vgz-card__butce {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.vgz-card__gunluk {
  display: block;
  font-size: 0.68rem;
  color: var(--vgz-muted);
  margin-top: 3px;
  font-weight: 500;
}

.vgz-card__vibe {
  font-size: 0.8rem;
  color: #475569;
  font-style: italic;
  line-height: 1.45;
  margin: 0.4rem 0 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vgz-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
}

.vgz-card__tags span {
  font-size: 10.5px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  color: #4338ca;
  border-radius: 999px;
  padding: 3px 10px;
  font-weight: 500;
}

/* Single */
.vgz-single__hero {
  position: relative;
  min-height: 320px;
  background: #1e293b;
}

.vgz-single__img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.vgz-single__img--placeholder {
  min-height: 320px;
  background: linear-gradient(160deg, #334155, #0f172a);
}

.vgz-single__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
}

.vgz-single__title {
  font-family: var(--vgz-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0.25rem 0;
}

.vgz-single__content {
  padding: 2rem 0 3rem;
}

.vgz-alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.vgz-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vgz-stats div {
  background: #fff;
  border: 1px solid var(--vgz-border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.vgz-ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.vgz-ratings .on {
  color: #eab308;
}

.vgz-ratings .off {
  color: #cbd5e1;
}

.vgz-prose {
  max-width: 68ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

.vgz-btn {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(22, 163, 74, 0.35);
}

.vgz-empty-box {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
  border-radius: var(--vgz-radius);
  border: 1px dashed #cbd5e1;
  color: var(--vgz-muted);
}

.vgz-empty,
.vgz-loading {
  text-align: center;
  color: var(--vgz-muted);
  padding: 2rem;
}

.vgz-footer {
  background: #fff;
  border-top: 1px solid var(--vgz-border);
  padding: 1.75rem 0;
  margin-top: 2rem;
}

.vgz-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--vgz-muted);
}

/* Filtre widget — lean / glass */
.vgz-filter-shadow {
  border-radius: 22px;
  overflow: visible;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.vgz-filter-widget__inner {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 22px;
  overflow: visible;
  position: relative;
  transition: border-radius 0.25s, box-shadow 0.25s;
}

.vgz-filter-widget__inner.adv-open {
  border-radius: 20px 20px 0 0;
}

.vgz-filter-row {
  display: flex;
  align-items: stretch;
  min-height: 68px;
}

.vgz-filter-divider {
  width: 1px;
  align-self: stretch;
  margin: 14px 0;
  flex-shrink: 0;
  background: linear-gradient(180deg, transparent, #e2e8f0, transparent);
}

.vgz-search-drop {
  position: relative;
  flex: 1;
  min-width: 0;
}

.vgz-search-drop__btn {
  width: 100%;
  height: 100%;
  min-height: 68px;
  padding: 12px 16px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--vgz-font);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.vgz-search-drop__label-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.vgz-search-drop__ico {
  color: #94a3b8;
  display: flex;
  align-items: center;
  line-height: 1;
}

.vgz-ico-tl {
  font-family: var(--vgz-title);
  font-weight: 800;
  font-size: 12px;
  color: currentColor;
}

.vgz-search-drop__label {
  font-size: 11px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-family: var(--vgz-title);
}

.vgz-search-drop__value-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  min-width: 0;
}

.vgz-search-drop__value {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.vgz-search-drop__value.has-value {
  color: #0f172a;
}

.vgz-search-drop__chev {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.vgz-search-drop.is-open .vgz-search-drop__chev {
  transform: rotate(180deg);
  color: #0f172a;
}

.vgz-search-drop.is-open .vgz-search-drop__value.has-value ~ .vgz-search-drop__chev,
.vgz-search-drop.is-open .vgz-search-drop__chev {
  color: #0f172a;
}

.vgz-search-drop__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  border: 1px solid #e2e8f0;
  z-index: 10000;
  padding: 6px 0;
}

.vgz-drop-item {
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--vgz-font);
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.12s;
}

.vgz-drop-item:hover {
  background: #f8fafc;
}

.vgz-drop-item__check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid #d1d5db;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.12s;
}

.vgz-drop-item.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.vgz-drop-item.is-on {
  background: linear-gradient(90deg, #f0fdf4, #f0fdf9);
  color: #16a34a;
  font-weight: 700;
}

.vgz-drop-item.is-on .vgz-drop-item__check {
  background: #16a34a;
  border-color: #16a34a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.vgz-drop-item__main {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.vgz-drop-item__sub {
  font-size: 11px;
  color: #94a3b8;
  white-space: nowrap;
  flex-shrink: 0;
}

.vgz-drop-item.is-on .vgz-drop-item__sub {
  color: #86efac;
}

.vgz-filter-ara {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  gap: 6px;
  flex-shrink: 0;
}

.vgz-btn-kesfet {
  border: none;
  border-radius: 50px;
  padding: 13px 26px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--vgz-font);
  background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.45);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  transition: box-shadow 0.2s, transform 0.2s, filter 0.2s;
}

.vgz-btn-kesfet:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.55);
  filter: brightness(1.05);
}

.vgz-btn-kesfet:active {
  transform: translateY(0);
}

.vgz-filter-clear-link {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--vgz-font);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 4px;
}

.vgz-filter-adv-toggle {
  width: 100%;
  border: none;
  border-top: 1px solid #f8fafc;
  background: #fff;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  cursor: pointer;
  font-family: var(--vgz-font);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}

.vgz-filter-adv-toggle.is-open {
  color: #ea580c;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(234, 88, 12, 0.06));
  border-top-color: rgba(245, 158, 11, 0.25);
}

.vgz-filter-adv-toggle__chev {
  transition: transform 0.25s;
}

.vgz-filter-adv-toggle.is-open .vgz-filter-adv-toggle__chev {
  transform: rotate(180deg);
}

.vgz-filter-adv {
  border-top: 1px solid #f1f5f9;
  padding: 22px 24px 26px;
  background: #fff;
  border-radius: 0 0 20px 20px;
  margin-top: -1px;
}

.vgz-filter-adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}

.vgz-adv-block__label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a2332;
  margin-bottom: 10px;
}

.vgz-adv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.vgz-adv-chip {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--vgz-font);
  transition: all 0.15s;
}

.vgz-adv-chip.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.vgz-adv-chip.is-on {
  background: #1a2332;
  border-color: #1a2332;
  color: #fff;
  font-weight: 700;
}

.vgz-adv-chip--nomad.is-on {
  background: #f5f3ff;
  border-color: #7c3aed;
  color: #7c3aed;
}

.vgz-result-count {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--vgz-muted);
  font-weight: 600;
}

.vgz-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.vgz-results-bar h2 {
  margin: 0;
  font-family: var(--vgz-title);
  font-size: 1.15rem;
}

.vgz-btn-text {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--vgz-font);
}

.vgz-btn-text--danger {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
}

/* SVG dünya haritası */
.vgz-map-section {
  margin-bottom: 2rem;
}

.vgz-map-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
}

.vgz-map-card__head {
  padding: 14px 22px 12px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.vgz-map-card__title {
  margin: 0 0 2px;
  font-family: var(--vgz-title);
  font-size: 16px;
  font-weight: 800;
  color: #1a2332;
}

.vgz-map-card__sub {
  margin: 0;
  font-size: 11px;
  color: #94a3b8;
}

.vgz-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
}

.vgz-map-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

.vgz-svg-map__frame,
.vgz-svg-map__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  background: #b8d8f0;
  cursor: grab;
}

.vgz-svg-map__svg {
  display: block;
  width: 100%;
  height: 100%;
}

.vgz-svg-map__zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vgz-svg-map__zoom button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.vgz-svg-map__zoom-label {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  z-index: 20;
}

.vgz-svg-map__tooltip {
  position: absolute;
  z-index: 60;
  width: 248px;
  pointer-events: none;
  animation: vgz-fade-up 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes vgz-fade-up {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.vgz-svg-map__tooltip-inner {
  --vgz-tt-accent: #2563eb;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(15, 23, 42, 0.06);
  border-top: 3px solid var(--vgz-tt-accent);
  padding: 14px 15px 12px;
  pointer-events: auto;
}

.vgz-svg-map__tooltip-head {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.vgz-svg-map__tooltip-emoji {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.vgz-svg-map__tooltip-head-text {
  min-width: 0;
  flex: 1;
}

.vgz-svg-map__tooltip-head strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--vgz-title);
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.vgz-svg-map__tooltip-head-text > span:first-of-type {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-top: 3px;
  font-weight: 500;
}

.vgz-tt-cost {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #0f172a;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 999px;
}

.vgz-svg-map__tooltip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.vgz-svg-map__tooltip-meta span {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.vgz-svg-map__tooltip-meta .vgz-tt-giris {
  font-weight: 700;
}

.vgz-svg-map__tooltip-meta .vgz-tt-butce {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.vgz-svg-map__tooltip-vibe {
  font-size: 12px;
  color: #334155;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  margin: 0 0 12px;
  padding: 9px 11px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 10px;
  border-left: 3px solid var(--vgz-tt-accent);
}

.vgz-svg-map__tooltip-vibe-mark {
  color: var(--vgz-tt-accent);
  font-weight: 700;
  font-style: normal;
}

.vgz-svg-map__tooltip-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #fff !important;
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.vgz-svg-map__tooltip-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

.vgz-leaflet-map {
  border-radius: var(--vgz-radius);
  overflow: hidden;
  border: 1px solid var(--vgz-border);
  background: #e8edf5;
}

.vgz-page-hero {
  padding: 2rem 0 0.5rem;
}

.vgz-page-hero h1 {
  font-family: var(--vgz-serif);
  margin: 0 0 0.35rem;
}

/* Ülke detay — genişletilmiş */
.vgz-stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.vgz-stat-strip__item {
  background: #fff;
  border: 1px solid var(--vgz-border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
}

.vgz-stat-strip__item strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.vgz-stat-strip__item--accent {
  border-color: #c4b5fd;
  background: #f5f3ff;
}

.vgz-panel {
  background: #fff;
  border: 1px solid var(--vgz-border);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.vgz-panel h2 {
  margin: 0 0 0.85rem;
  font-family: var(--vgz-title);
  font-size: 1.1rem;
}

.vgz-month-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vgz-month-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  background: #f1f5f9;
  color: #64748b;
}

.vgz-month-pill.is-on {
  background: #1a2332;
  color: #fff;
  font-weight: 600;
}

.vgz-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.vgz-tag {
  background: #eef2ff;
  color: #4338ca;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.vgz-tag--muted {
  background: #f1f5f9;
  color: #475569;
}

.vgz-pratik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.vgz-pratik-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  border: 1px solid #e8edf3;
}

.vgz-pratik-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.vgz-pratik-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.vgz-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem;
}

.vgz-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.vgz-card[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  .vgz-filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: auto;
  }

  .vgz-filter-divider {
    display: none;
  }

  .vgz-search-drop {
    width: 100%;
    flex: none;
    border-bottom: 1px solid #f1f5f9;
    border-right: 1px solid #f1f5f9;
  }

  .vgz-search-drop:nth-child(2n) {
    border-right: none;
  }

  .vgz-search-drop__btn {
    min-height: 64px;
  }

  .vgz-filter-ara {
    grid-column: 1 / -1;
    width: 100%;
    padding: 12px 16px 16px;
  }

  .vgz-filter-adv-grid,
  .adv-filter-grid {
    grid-template-columns: 1fr;
  }

  .vgz-nav__list--hero {
    display: none;
  }

  .vgz-menu-toggle {
    display: flex;
  }

  .vgz-nav-divider,
  .vgz-social-nav {
    display: none;
  }

  .vgz-blog-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .vgz-blog-card {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .vgz-grid {
    grid-template-columns: 1fr;
  }

  .vgz-hero-full {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

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

  .vgz-search-drop {
    border-right: none !important;
  }

  .vgz-search-drop__panel {
    min-width: calc(100vw - 3rem);
    max-width: 320px;
  }

  .vgz-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog — Son Yazılar */
.vgz-blog-section {
  background: #f8faff;
  padding: 80px 0 0;
}

.vgz-blog-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.vgz-blog-section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 10px;
}

.vgz-blog-section__title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #1a2332;
  line-height: 1.15;
  margin: 0;
}

.vgz-blog-section__title em {
  font-style: italic;
  color: #7c3aed;
}

.vgz-blog-section__more {
  font-size: 13px;
  color: #7c3aed;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #7c3aed;
  padding-bottom: 3px;
}

.vgz-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  min-height: 480px;
}

.vgz-blog-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none !important;
  min-height: 480px;
}

.vgz-blog-card__img,
.vgz-blog-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vgz-blog-card__placeholder {
  background: linear-gradient(145deg, #1e3a5f, #312e81);
}

.vgz-blog-card__placeholder--1 { background: linear-gradient(145deg, #065f46, #047857); }
.vgz-blog-card__placeholder--2 { background: linear-gradient(145deg, #1e3a5f, #2563eb); }
.vgz-blog-card__placeholder--3 { background: linear-gradient(145deg, #9a3412, #d97706); }
.vgz-blog-card__placeholder--0 { background: linear-gradient(145deg, #4c1d95, #7c3aed); }

.vgz-blog-card:hover .vgz-blog-card__img,
.vgz-blog-card:hover .vgz-blog-card__placeholder {
  transform: scale(1.06);
}

.vgz-blog-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  color: #fff;
}

.vgz-blog-card__cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.vgz-blog-card__overlay h3 {
  margin: 0;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

/* Newsletter — Fırsatları Kaçırma */
.vgz-newsletter {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4c1d95 100%);
  padding: 80px clamp(16px, 4vw, 48px);
}

.vgz-newsletter__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.vgz-newsletter__title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
}

.vgz-newsletter__lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 10px;
}

.vgz-newsletter__note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 36px;
}

.vgz-newsletter__form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.vgz-newsletter__form input {
  flex: 1;
  padding: 17px 24px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  outline: none;
  color: #1a2332;
  min-width: 0;
}

.vgz-newsletter__form button {
  padding: 17px 30px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.vgz-newsletter__msg {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Shared footer */
.vgz-sf-wrap {
  background: #1a2332;
  width: 100%;
  overflow: hidden;
}

.vgz-sf-top {
  background: linear-gradient(135deg, #1e3a5f 0%, #1e2a4a 100%);
  padding: 52px 0 44px;
}

.vgz-sf-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px 48px;
  max-width: 1100px;
}

.vgz-sf-logo {
  font-family: var(--vgz-title);
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.vgz-sf-logo .vgz-logo__main {
  color: #fff;
}

.vgz-sf-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin: 0 0 18px;
  max-width: 300px;
}

.vgz-sf-social {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.vgz-sf-social__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: transform 0.15s;
}

.vgz-sf-social__btn:hover {
  transform: scale(1.12);
}

.vgz-sf-social__btn--ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.vgz-sf-social__btn--yt { background: linear-gradient(135deg, #ff0000, #cc0000); }
.vgz-sf-social__btn--sp { background: linear-gradient(135deg, #1db954, #158a3e); }

.vgz-sf-label {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin: 0 0 14px;
}

.vgz-sf-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vgz-sf-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 9px;
  line-height: 1.4;
  transition: color 0.15s;
}

.vgz-sf-links a:hover {
  color: #60a5fa;
}

.vgz-sf-links span {
  font-size: 9px;
  color: #818cf8;
}

.vgz-sf-nl-form {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 280px;
}

.vgz-sf-nl-form input {
  flex: 1;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  outline: none;
  font-size: 12px;
  color: #fff;
  min-width: 0;
}

.vgz-sf-nl-form button {
  padding: 10px 14px;
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.vgz-sf-nl-msg {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

.vgz-sf-bottom {
  background: #111827;
  padding: 16px 0;
}

.vgz-sf-bottom__inner {
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.vgz-sf-bottom__note {
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

@media (max-width: 860px) {
  .vgz-sf-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }

  .vgz-sf-col--logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .vgz-sf-top {
    padding: 36px 0 32px;
  }

  .vgz-sf-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vgz-newsletter__form {
    flex-direction: column;
    border-radius: 16px;
  }

  .vgz-newsletter__form button {
    border-radius: 0 0 16px 16px;
  }
}

/* ── Ana sayfa kategori bölümleri (Next.js grouped) ── */
.vgz-liste-anchor {
  scroll-margin-top: 72px;
}

.vgz-home-categories {
  padding: 8px 0 24px;
}

.vgz-cat-section {
  margin-bottom: 64px;
}

.vgz-cat-section__rule {
  height: 1px;
  background: #e2e8f0;
  margin-bottom: 20px;
}

.vgz-cat-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.vgz-cat-section__count {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin: 0 0 8px;
}

.vgz-cat-section__title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: #0f172a;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.vgz-cat-section__sub {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.vgz-cat-section__all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: 1.5px solid #0f172a;
  padding-bottom: 2px;
  margin-top: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.vgz-cat-section__all:hover {
  opacity: 0.55;
}

.vgz-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1099px) {
  .vgz-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .vgz-grid--home {
    grid-template-columns: 1fr;
  }
}

.vgz-cat-section__more-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  width: 100%;
}

.vgz-cat-section__more-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.vgz-cat-section__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.15s;
}

.vgz-cat-section__more:hover {
  color: #0f172a;
}

.vgz-filter-results {
  padding-top: 2rem;
}

/* ── Giriş tipi arşiv — turuncu/mor/yeşil hero ── */
.vgz-giris-archive {
  background: #f0f4f8;
}

.vgz-giris-hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 48px;
  color: #fff;
}

.vgz-giris-hero__orb {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.vgz-giris-hero__inner {
  position: relative;
  max-width: 900px;
}

.vgz-giris-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.vgz-giris-hero__title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.vgz-giris-hero__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.vgz-giris-hero__badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 4px;
}

.vgz-giris-hero__title {
  font-family: var(--vgz-title);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  color: #fff;
}

.vgz-giris-hero__lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 0 28px;
}

.vgz-giris-hero__search {
  position: relative;
  max-width: 440px;
}

.vgz-giris-hero__search input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  outline: none;
  color: #1a2332;
}

.vgz-giris-hero__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
}

.vgz-giris-stats {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 16px 0;
}

.vgz-giris-stats__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vgz-giris-stats__num {
  font-family: var(--vgz-title);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.vgz-giris-stats__label {
  font-size: 13px;
  color: #64748b;
}

.vgz-giris-stats__filtered {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
}

.vgz-giris-seo-wrap {
  padding: 24px 0 0;
}

.vgz-giris-seo {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.vgz-giris-seo__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.vgz-giris-seo__toggle-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vgz-title);
  font-size: 14px;
  font-weight: 800;
  color: #1a2332;
}

.vgz-giris-seo__toggle-btn {
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
  border: 1px solid;
}

.vgz-giris-seo__body,
.vgz-giris-seo__more {
  padding: 0 22px 20px;
}

.vgz-giris-seo__more {
  border-top: 1px solid #f8fafc;
  padding-top: 14px;
}

.vgz-giris-seo__body p,
.vgz-giris-seo__more p {
  margin: 0;
  font-size: 13.5px;
  color: #475569;
  line-height: 1.85;
}

.vgz-giris-grid-section .vgz-grid {
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 18px;
}

@media (max-width: 640px) {
  .vgz-cat-section__head {
    flex-direction: column;
  }

  .vgz-cat-section__all {
    align-self: flex-start;
  }
}

/* ── Ana sayfa kategori bölümleri (Next.js grouped) ── */
.vgz-liste-anchor {
  scroll-margin-top: 72px;
}

.vgz-home-categories {
  padding-top: 8px;
}

.vgz-cat-section {
  margin-bottom: 64px;
}

.vgz-cat-section__rule {
  height: 1px;
  background: #e2e8f0;
  margin-bottom: 20px;
}

.vgz-cat-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.vgz-cat-section__count {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin: 0 0 8px;
}

.vgz-cat-section__title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: #0f172a;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}

.vgz-cat-section__sub {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

.vgz-cat-section__all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 4px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid #0f172a;
  transition: opacity 0.15s;
}

.vgz-cat-section__all:hover {
  opacity: 0.55;
}

.vgz-grid--home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1099px) {
  .vgz-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .vgz-grid--home {
    grid-template-columns: 1fr;
  }
}

.vgz-cat-section__more-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  width: 100%;
}

.vgz-cat-section__more-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.vgz-cat-section__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.15s;
}

.vgz-cat-section__more:hover {
  color: #0f172a;
}

.vgz-filter-results {
  padding-top: 2rem;
}

/* ── Giriş tipi arşiv sayfası (/giris/kapida-vize/) ── */
.vgz-giris-archive {
  background: #f0f4f8;
}

.vgz-giris-hero {
  position: relative;
  padding: 60px 0 48px;
  overflow: hidden;
}

.vgz-giris-hero__orb {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.vgz-giris-hero__inner {
  position: relative;
  z-index: 1;
}

.vgz-giris-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.vgz-giris-hero__title-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.vgz-giris-hero__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.vgz-giris-hero__badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 4px;
}

.vgz-giris-hero__title {
  font-family: var(--vgz-title);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin: 0;
}

.vgz-giris-hero__lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 0 28px;
}

.vgz-giris-hero__search {
  position: relative;
  max-width: 440px;
}

.vgz-giris-hero__search input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  outline: none;
  color: #1a2332;
}

.vgz-giris-hero__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
}

.vgz-giris-stats {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 16px 0;
}

.vgz-giris-stats__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vgz-giris-stats__num {
  font-family: var(--vgz-title);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.vgz-giris-stats__label {
  font-size: 13px;
  color: #64748b;
}

.vgz-giris-stats__filtered {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
}

.vgz-giris-seo-wrap {
  padding: 24px 0 0;
}

.vgz-giris-seo {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.vgz-giris-seo__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.vgz-giris-seo__toggle-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vgz-title);
  font-size: 14px;
  font-weight: 800;
  color: #1a2332;
}

.vgz-giris-seo__toggle-btn {
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
  border: 1px solid;
}

.vgz-giris-seo__body {
  padding: 0 22px 20px;
}

.vgz-giris-seo__body p,
.vgz-giris-seo__more p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.85;
  margin: 0;
}

.vgz-giris-seo__more {
  padding: 14px 22px 20px;
  border-top: 1px solid #f8fafc;
}

.vgz-giris-grid-section {
  padding-bottom: 80px;
}

.vgz-giris-grid-section .vgz-grid {
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 18px;
}

@media (max-width: 640px) {
  .vgz-cat-section__head {
    flex-direction: column;
  }

  .vgz-cat-section__all {
    align-self: flex-start;
  }
}
