/* =====================================================
   VİZE DANIŞMANLIK — FRONTEND CSS
   Inter font, 1600px max-width, mobile-first
   ===================================================== */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Brand: Marka renkleri (logo: mor + turuncu) ── */
  --navy:        #1a0533;     /* deep purple-navy — header, footer, dark bg */
  --navy-d:      #0d0220;     /* çok koyu mor */
  --navy-l:      #5b21b6;     /* medium purple */
  --blue:        #7c3aed;     /* ANA MARKA RENGİ — mor */
  --blue-l:      #a78bfa;     /* açık mor */
  --blue-lt:     #f5f0ff;     /* çok açık mor tint */
  --indigo:      #6d28d9;     /* koyu mor */
  --bg-blue:     #f5f0ff;
  --bg-navy:     #1a0533;
  --accent:      #e8421a;     /* TURUNCU-KIRMIZI aksan (logodaki turuncu) */
  --accent-d:    #c73010;
  --accent-l:    #fff0ed;
  --hero-dark:   #070d1e;     /* hero arka planı */
  /* ── Nötr ── */
  --text:        #0f172a;
  --text-2:      #334155;
  --text-m:      #64748b;
  --text-l:      #94a3b8;
  --border:      #e2e8f0;
  --border-l:    #f1f5f9;
  --bg:          #ffffff;
  --bg-light:    #f8fafc;
  /* ── Durum renkleri ── */
  --green:       #10b981;
  --green-l:     #d1fae5;
  --orange:      #f59e0b;
  --orange-l:    #fef3c7;
  --red:         #ef4444;
  /* ── Gölgeler ── */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.12);
  --r:           12px;
  --r-sm:        8px;
  --r-lg:        20px;
  --r-xl:        28px;
  --trans:       .2s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Base ── */
.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.section--lg { padding: 100px 0; }
.section--dark { background: var(--bg-navy); color: #fff; }
.section--light { background: var(--bg-light); }
.section--blue { background: var(--bg-blue); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--bg-blue);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-label--light { color: #93c5fd; background: rgba(255,255,255,.1); }

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title--light { color: #fff; }
.section-title--center { text-align: center; }

.section-sub {
  font-size: 16px;
  color: var(--text-m);
  max-width: 620px;
  line-height: 1.7;
}
.section-sub--center { text-align: center; margin: 0 auto; }
.section-sub--light { color: #94a3b8; }

.section-head {
  margin-bottom: 52px;
}
.section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: var(--trans);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn--primary:hover { background: var(--navy-l); border-color: var(--navy-l); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,.3); }

.btn--navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--navy:hover { background: var(--navy-d); border-color: var(--navy-d); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover { background: var(--blue); color: #fff; }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn--white {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn--white:hover { background: var(--bg-light); }

.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: var(--r); }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }

.btn svg { flex-shrink: 0; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--topbar-bg, #f8fafc);
  color: var(--text-2);
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-m);
  transition: color var(--trans);
}
.top-bar__item:hover { color: var(--text); }
.top-bar__item svg { opacity: .65; }
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar__link {
  color: var(--text-m);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--trans);
}
.top-bar__link:hover { color: var(--blue); }
.top-bar__divider { width: 1px; height: 14px; background: var(--border); }

/* ── HEADER / NAV ── */
.site-header {
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.site-header__inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo__img {
  height: 40px;
  width: auto;
}
.site-logo__text {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
}
.site-logo__text span { color: var(--blue); }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: var(--trans);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue); background: var(--bg-blue); }
.nav-link svg { transition: transform var(--trans); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .18s ease;
  z-index: 300;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  transition: var(--trans);
}
.nav-dropdown__item:hover { background: var(--bg-blue); color: var(--blue); }
.nav-dropdown__item__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.nav-dropdown__title { font-weight: 600; font-size: 13px; }
.nav-dropdown__sub { font-size: 11.5px; color: var(--text-m); margin-top: 1px; }
/* Ülke dropdown — 2 sütun grid */
.ulke-grid { display: grid; grid-template-columns: 1fr 1fr; }
.ulke-grid .nav-dropdown__title { white-space: nowrap; }

/* Search bar in header */
.header-search {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  gap: 8px;
  width: 220px;
  transition: var(--trans);
}
.header-search:focus-within { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.header-search input {
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--text);
  width: 100%;
  outline: none;
}
.header-search svg { color: var(--text-m); flex-shrink: 0; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
  display: block;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================
   MOBILE DRAWER
   ==================================================== */

/* Backdrop */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .52);
  z-index: 399;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.mobile-overlay.is-open { display: block; }

/* Drawer panel — slides in from left */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 320px;
  max-width: 92vw;
  background: #fff;
  z-index: 400;
  transform: translateX(-100%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(0,0,0,.18);
}
.mobile-drawer.is-open { transform: translateX(0); }

/* Head */
.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--navy, #1a0533);
  flex-shrink: 0;
}
.mobile-drawer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}
.mobile-drawer__close {
  background: rgba(255,255,255,.15);
  border: none;
  width: 34px; height: 34px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
}
.mobile-drawer__close:hover { background: rgba(255,255,255,.28); }

/* Search */
.mobile-drawer__search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
  flex-shrink: 0;
}
.mobile-drawer__search svg { color: #94a3b8; flex-shrink: 0; }
.mobile-drawer__search input {
  flex: 1;
  border: none;
  background: none;
  font-size: 13px;
  color: #334155;
  outline: none;
  font-family: inherit;
}
.mobile-drawer__search input::placeholder { color: #94a3b8; }

/* CTA Strip */
.mobile-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: linear-gradient(90deg, var(--blue, #7c3aed) 0%, #9333ea 100%);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  transition: opacity .15s;
}
.mobile-cta-strip:hover { opacity: .9; }

/* Nav body (scrollable) */
.mobile-nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-nav::-webkit-scrollbar { width: 4px; }
.mobile-nav::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

/* Accordion group */
.mobile-nav__group { border-bottom: 1px solid #f1f5f9; }

.mobile-nav__acc {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  background: none;
  border: none;
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.mobile-nav__acc-icon {
  width: 28px; height: 28px;
  background: #f1f5f9;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue, #7c3aed);
}
.mobile-nav__chevron {
  margin-left: auto;
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform .2s;
}
.mobile-nav__acc.is-open .mobile-nav__chevron { transform: rotate(180deg); }
.mobile-nav__acc.is-open { color: var(--blue, #7c3aed); }
.mobile-nav__acc.is-open .mobile-nav__acc-icon { background: #ede9fe; }

/* Accordion body */
.mobile-nav__acc-body {
  display: none;
  padding: 4px 12px 10px;
  background: #fafbff;
}
.mobile-nav__acc-body.is-open { display: block; }

/* Service items */
.mobile-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #334155;
  font-size: 13px;
  transition: background .12s, color .12s;
}
.mobile-service-item:hover { background: #ede9fe; color: var(--blue, #7c3aed); }
.mobile-service-item__icon {
  width: 30px; height: 30px;
  background: #f1f5f9;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

/* Country grid */
.mobile-country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 4px;
}
.mobile-country-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 7px;
  text-decoration: none;
  color: #334155;
  font-size: 12.5px;
  transition: background .12s, color .12s;
}
.mobile-country-item:hover { background: #ede9fe; color: var(--blue, #7c3aed); }
.mobile-country-item__flag { font-size: 18px; line-height: 1; flex-shrink: 0; }

/* See-all link */
.mobile-nav__see-all {
  display: block;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue, #7c3aed);
  text-decoration: none;
  border-radius: 6px;
  transition: background .12s;
}
.mobile-nav__see-all:hover { background: #ede9fe; }

/* Direct links */
.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: #1e293b;
  font-size: 13.5px;
  font-weight: 600;
  transition: background .12s, color .12s;
}
.mobile-nav__link svg:last-child { margin-left: auto; color: #cbd5e1; flex-shrink: 0; }
.mobile-nav__link:hover,
.mobile-nav__link.is-active { color: var(--blue, #7c3aed); background: #fafbff; }
.mobile-nav__link.is-active .mobile-nav__acc-icon { background: #ede9fe; }

/* Drawer footer */
.mobile-drawer__foot {
  padding: 14px 16px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
  flex-shrink: 0;
}
.mobile-drawer__contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.mobile-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  background: #f1f5f9;
  color: #334155;
  transition: background .12s;
}
.mobile-contact:hover { background: #e2e8f0; }
.mobile-contact--wa { background: #dcfce7; color: #15803d; }
.mobile-contact--wa:hover { background: #bbf7d0; }
.mobile-drawer__socials { display: flex; gap: 8px; justify-content: center; }
.mobile-social {
  width: 34px; height: 34px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.mobile-social:hover { background: var(--blue, #7c3aed); color: #fff; }

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 40%, #f5f3ff 100%);
  padding: 80px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37,99,235,.1);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero__title span { color: var(--blue); position: relative; }
.hero__title span::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  border-radius: 2px;
}
.hero__desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-2);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.hero__pill svg { color: var(--blue); }
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: var(--text-m);
  font-size: 13px;
}
.hero__trust-avatars {
  display: flex;
}
.hero__trust-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--blue-l), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  margin-left: -8px;
}
.hero__trust-avatar:first-child { margin-left: 0; }
.hero__trust strong { color: var(--text-2); font-weight: 700; }

/* Hero Search Card */
.hero-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  position: relative;
  z-index: 1;
}
.hero-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-card__sub {
  font-size: 13px;
  color: var(--text-m);
  margin-bottom: 24px;
}
.hero-card__search {
  position: relative;
  margin-bottom: 20px;
}
.hero-card__search input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  border: 2px solid var(--border);
  border-radius: var(--r);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  transition: var(--trans);
  outline: none;
}
.hero-card__search input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.hero-card__search-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-m);
}
.hero-card__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-m);
  margin-bottom: 12px;
}
.hero-card__countries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.hero-country-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--trans);
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-2);
}
.hero-country-chip:hover { border-color: var(--blue); background: var(--bg-blue); color: var(--blue); }
.hero-country-chip__flag { font-size: 24px; line-height: 1; }

/* ====================================================
   STATS BAR
   ==================================================== */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border-radius: var(--r);
  overflow: hidden;
}
.stat-item {
  background: var(--navy);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--trans);
}
.stat-item:hover { background: var(--navy-d); }
.stat-num {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-num span { color: #60a5fa; }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  font-weight: 500;
}
.stat-sub {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-top: 3px;
}

/* ====================================================
   POPULAR COUNTRIES
   ==================================================== */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.country-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  color: var(--text);
}
.country-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--blue);
}
.country-card__flag { font-size: 36px; line-height: 1; }
.country-card__name { font-size: 13px; font-weight: 600; }
.country-card__types {
  font-size: 11px;
  color: var(--text-m);
}
.country-card--more {
  background: var(--bg-light);
  border-style: dashed;
  color: var(--text-m);
  font-size: 13px;
  font-weight: 600;
}
.country-card--more:hover { border-color: var(--blue); background: var(--bg-blue); color: var(--blue); }

.countries-all-link {
  margin-top: 32px;
  text-align: center;
}

/* ====================================================
   SERVICES
   ==================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-card__icon--blue { background: #dbeafe; }
.service-card__icon--green { background: #d1fae5; }
.service-card__icon--orange { background: #fef3c7; }
.service-card__icon--purple { background: #ede9fe; }
.service-card__icon--pink { background: #fce7f3; }
.service-card__icon--teal { background: #ccfbf1; }

.service-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--text-m);
  line-height: 1.7;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--trans);
}
.service-card:hover .service-card__link { gap: 9px; }

/* ====================================================
   WHY US
   ==================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-visual {
  position: relative;
}
.why-visual__main {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-visual__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #fff;
  border-radius: var(--r);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-visual__badge-icon {
  width: 44px; height: 44px;
  background: var(--green-l);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
}
.why-visual__badge-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.why-visual__badge-label {
  font-size: 12px;
  color: var(--text-m);
}
.why-visual__float {
  position: absolute;
  top: 20px;
  right: -16px;
  background: #fff;
  border-radius: var(--r);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.why-visual__float-num { font-size: 20px; font-weight: 900; color: var(--blue); }
.why-visual__float-label { font-size: 11px; color: var(--text-m); }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.why-feature__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.why-feature__desc {
  font-size: 13.5px;
  color: var(--text-m);
  line-height: 1.65;
}

/* ======================================================
   WHY STICKY SCROLL SECTION
   ====================================================== */
/* ====================================================
   GREEN CARD SECTION
   ==================================================== */
.gc-section { background: var(--bg-light); }

.gc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Label */
.gc-label {
  color: var(--blue) !important;
  background: transparent !important;
  border-color: transparent !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  padding-left: 0 !important;
}
.gc-label::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* Title */
.gc-title {
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 16px 0 16px;
}
.gc-title span {
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
}
.gc-desc {
  font-size: 15px;
  color: var(--text-m);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 480px;
}

/* ── TABS ── */
.gc-tabs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.gc-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  user-select: none;
  outline: none;
}
.gc-tab:hover {
  border-color: rgba(124,58,237,.35);
  box-shadow: 0 4px 14px rgba(124,58,237,.08);
  transform: translateX(4px);
}
.gc-tab--active {
  border-color: var(--blue);
  box-shadow: 0 4px 18px rgba(124,58,237,.14);
  transform: translateX(4px);
}

/* Icon: borrow bg colors from service-card__icon--* */
.gc-tab__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gc-tab .service-card__icon--blue   { color: #3b82f6; }
.gc-tab .service-card__icon--green  { color: #059669; }
.gc-tab .service-card__icon--orange { color: #d97706; }
.gc-tab .service-card__icon--purple { color: #7c3aed; }

.gc-tab__body { flex: 1; min-width: 0; }
.gc-tab__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  transition: color .2s;
}
.gc-tab--active .gc-tab__title { color: var(--blue); }
.gc-tab__desc { font-size: 12px; color: var(--text-m); line-height: 1.45; }

.gc-tab__arr {
  color: var(--border);
  transition: color .2s, transform .2s;
  flex-shrink: 0;
}
.gc-tab--active .gc-tab__arr,
.gc-tab:hover .gc-tab__arr { color: var(--blue); transform: translateX(2px); }

/* Actions */
.gc-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn--ghost-light {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-2);
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn--ghost-light:hover { border-color: var(--blue); color: var(--blue); }

/* ── RIGHT PANEL ── */
.gc-visual { position: relative; }

.gc-panel { display: none; }
.gc-panel--active {
  display: block;
  animation: gcPanelIn .3s cubic-bezier(.22,.68,0,1.1) both;
}
@keyframes gcPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Card */
.gc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
}
.gc-card__glow { display: none; }

.gc-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1.5px solid var(--border);
  background: var(--bg-light);
}
.gc-card__flag {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.gc-card__flag.service-card__icon--blue   { color: #3b82f6; }
.gc-card__flag.service-card__icon--green  { color: #059669; }
.gc-card__flag.service-card__icon--orange { color: #d97706; }
.gc-card__flag.service-card__icon--purple { color: #7c3aed; }

.gc-card__title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.gc-card__sub   { font-size: 11px; color: var(--text-m); }
.gc-card__badge {
  margin-left: auto;
  font-size: 10px; font-weight: 800; letter-spacing: .5px;
  color: #059669;
  background: rgba(5,150,105,.08);
  border: 1px solid rgba(5,150,105,.2);
  padding: 4px 10px; border-radius: 20px;
}

.gc-card__desc-block {
  padding: 16px 24px;
  margin: 0;
  font-size: 13.5px;
  color: var(--text-m);
  line-height: 1.7;
  border-bottom: 1.5px solid var(--border);
}

.gc-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1.5px solid var(--border);
}
.gc-card__stat {
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.gc-card__stat:last-child { border-right: none; }
.gc-card__stat-val { font-size: 22px; font-weight: 900; color: var(--blue); margin-bottom: 4px; }
.gc-card__stat-lbl { font-size: 9px; color: var(--text-m); text-transform: uppercase; letter-spacing: .5px; line-height: 1.4; }

.gc-card__programs { padding: 18px 24px; border-bottom: 1.5px solid var(--border); }
.gc-card__programs-title { font-size: 10px; font-weight: 700; color: var(--text-m); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 10px; }
.gc-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.gc-card__tag {
  font-size: 11px; font-weight: 600;
  color: var(--blue);
  background: rgba(124,58,237,.07);
  border: 1px solid rgba(124,58,237,.18);
  padding: 4px 10px; border-radius: 20px;
  transition: background .2s, border-color .2s;
}
.gc-card__tag:hover { background: rgba(124,58,237,.14); border-color: rgba(124,58,237,.3); }

.gc-card__cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: rgba(124,58,237,.04);
  text-decoration: none;
  transition: background .2s;
}
.gc-card__cta:hover { background: rgba(124,58,237,.09); }
.gc-card__cta-text  { font-size: 13px; font-weight: 600; color: var(--blue); }
.gc-card__cta-arrow { color: var(--blue); display: flex; }

/* Floating pill */
.gc-pill {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12px; font-weight: 600; color: var(--text-2);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.09);
  animation: gcPillFloat 4s ease-in-out infinite;
}
.gc-pill--1 { top: -16px; right: 0; }
@keyframes gcPillFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* Responsive */
@media (max-width: 1024px) {
  .gc-wrap { grid-template-columns: 1fr; gap: 40px; }
  .gc-visual { order: -1; }
  .gc-pill { display: none; }
  .gc-tab:hover, .gc-tab--active { transform: none; }
}
@media (max-width: 640px) {
  .gc-card__stats { grid-template-columns: repeat(2,1fr); }
}

/* ====================================================
   HOW IT WORKS (PROCESS)
   ==================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  opacity: .3;
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(37,99,235,.3);
}
.process-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.process-step__desc {
  font-size: 13px;
  color: var(--text-m);
  line-height: 1.65;
}

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: var(--trans);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-l); }
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--orange);
}
.testimonial-card__text {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-l), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.testimonial-card__info {
  font-size: 12px;
  color: var(--text-m);
  margin-top: 2px;
}
.testimonial-card__visa {
  display: inline-block;
  background: var(--bg-blue);
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 100px;
  margin-top: 4px;
}

/* ====================================================
   BLOG PREVIEW
   ==================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--trans);
  text-decoration: none;
  color: var(--text);
  display: block;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--blue-l); }
.blog-card__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-blue), #e0e7ff);
  overflow: hidden;
}
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card__thumb img { transform: scale(1.04); }
.blog-card__thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-l);
}
.blog-card__body { padding: 22px 24px; }
.blog-card__tag {
  display: inline-block;
  background: var(--bg-blue);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.blog-card__title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card:hover .blog-card__title { color: var(--blue); }
.blog-card__excerpt {
  font-size: 13px;
  color: var(--text-m);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-m);
  border-top: 1px solid var(--border-l);
  padding-top: 14px;
}
.blog-card__meta svg { color: var(--text-l); }

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0d0220 0%, #2e0a6e 50%, #1a0533 100%);
  border-radius: var(--r-xl);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 30%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(79,70,229,.2);
}
.cta-banner__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-banner__title span { color: #e8421a; }
.cta-banner__sub {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.cta-banner__note {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-align: right;
}

/* ====================================================
   TRUST BADGES
   ==================================================== */
.trust-bar {
  background: var(--bg-light);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
  font-size: 13.5px;
  font-weight: 600;
}
.trust-badge__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-brand__logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
}
.footer-brand__logo-text span { color: #60a5fa; }
.footer-brand__desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  transition: color var(--trans);
}
.footer-contact:hover { color: #fff; }
.footer-contact svg { color: #60a5fa; flex-shrink: 0; }

.footer-col__title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  transition: color var(--trans);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: #93c5fd; }
.footer-link::before { content: '→'; font-size: 11px; opacity: .5; }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--trans);
  text-decoration: none;
}
.footer-social:hover { background: var(--blue); color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
}
.footer-bottom__links {
  display: flex;
  gap: 20px;
}
.footer-bottom__link {
  color: rgba(255,255,255,.35);
  transition: color var(--trans);
}
.footer-bottom__link:hover { color: rgba(255,255,255,.75); }

/* ====================================================
   INNER PAGE COMPONENTS
   ==================================================== */
/* Breadcrumb */
.breadcrumb {
  background: var(--bg-light);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-m);
  flex-wrap: wrap;
}
.breadcrumb__item { color: var(--text-m); }
.breadcrumb__item:last-child { color: var(--text-2); font-weight: 500; }
.breadcrumb__sep { color: var(--text-l); }

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--hero-start, var(--navy)) 0%, var(--hero-end, #1e3a8a) 100%);
  padding: 64px 0;
  color: #fff;
}
.page-hero__inner { max-width: 720px; }
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 16px;
}
.page-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.page-hero__desc {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

/* Content with Sidebar */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
/* Grid blowout fix */
.content-layout > * { min-width: 0; }
.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.sidebar-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-l);
}
.sidebar-card--cta {
  background: linear-gradient(135deg, var(--navy), var(--cta-end, #1e40af));
  border-color: transparent;
  color: #fff;
}
.sidebar-card--cta .sidebar-card__title { color: #fff; border-color: rgba(255,255,255,.15); }

/* Vize Page — 3-column layout */
.vize-layout {
  display: grid;
  grid-template-columns: 200px 1fr 280px;
  gap: 32px;
  align-items: start;
}
/* Grid blowout fix — children must not expand beyond allocated track */
.vize-layout > * { min-width: 0; }
.vize-layout .sidebar-card { padding: 20px 18px; }
.vize-layout .sidebar-card__title { margin-bottom: 14px; padding-bottom: 10px; font-size: 13px; }

/* Sol vize türleri nav */
.vize-nav {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 10px;
}
.vize-nav__title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-m);
  margin-bottom: 8px;
  padding: 0 8px;
}
.vize-nav__list { display: flex; flex-direction: column; gap: 2px; }
.vize-nav__link {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: var(--trans);
  border-left: 3px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vize-nav__link:hover { background: var(--bg-blue); color: var(--blue); }
.vize-nav__link.active { background: var(--bg-blue); color: var(--blue); font-weight: 700; border-left-color: var(--blue); }

/* Mobil yatay nav (tablet + telefon) */
.vize-nav-mobile {
  display: none;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
  width: 100%;
  max-width: 100%;
}
.vize-nav-mobile::-webkit-scrollbar { display: none; }
.vize-nav-mobile__link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-m);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--trans);
}
.vize-nav-mobile__link:hover { color: var(--blue); }
.vize-nav-mobile__link.active { color: var(--blue); border-bottom-color: var(--blue); }

/* Rich content */
.rich-content { line-height: 1.85; color: var(--text-2); }
.rich-content h2 { font-size: 22px; font-weight: 800; color: var(--navy); margin: 36px 0 14px; overflow-wrap: break-word; word-break: break-word; }
.rich-content h3 { font-size: 18px; font-weight: 700; color: var(--text); margin: 28px 0 12px; overflow-wrap: break-word; word-break: break-word; }
.rich-content p { margin-bottom: 18px; font-size: 15px; overflow-wrap: break-word; }
.rich-content ul, .rich-content ol { padding-left: 22px; margin-bottom: 18px; }
.rich-content li { margin-bottom: 8px; font-size: 15px; }
.rich-content ul li { list-style: disc; }
.rich-content ol li { list-style: decimal; }
.rich-content strong { font-weight: 700; color: var(--text); }
.rich-content a { color: var(--blue); text-decoration: underline; }
.rich-content table { width: 100%; max-width: 100%; overflow-x: auto; display: block; border-collapse: collapse; }
.rich-content table td, .rich-content table th { padding: 8px 12px; border: 1px solid var(--border); font-size: 14px; }
.rich-content iframe, .rich-content video, .rich-content embed { max-width: 100%; }
.rich-content blockquote {
  border-left: 4px solid var(--blue);
  background: var(--bg-blue);
  padding: 16px 20px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-2);
}
.rich-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.rich-content th, .rich-content td { padding: 10px 14px; border: 1px solid var(--border); font-size: 14px; }
.rich-content th { background: var(--bg-light); font-weight: 600; }

/* FAQ / SSS */
.sss-list { display: flex; flex-direction: column; gap: 8px; }
.sss-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--trans);
}
.sss-item.open { border-color: var(--blue); }
.sss-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: background var(--trans);
  user-select: none;
}
.sss-question:hover { background: var(--bg-light); }
.sss-item.open .sss-question { background: var(--bg-blue); color: var(--blue); }
.sss-question svg { flex-shrink: 0; transition: transform var(--trans); }
.sss-item.open .sss-question svg { transform: rotate(45deg); }
.sss-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.75;
  background: var(--bg-blue);
}
.sss-item.open .sss-answer { display: block; }

/* Yazar kutusu */
.yazar-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-top: 48px;
}
.yazar-box__photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-l), var(--indigo));
}
.yazar-box__photo-placeholder {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.yazar-box__tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-m); margin-bottom: 4px; }
.yazar-box__name { font-size: 16px; font-weight: 700; color: var(--text); }
.yazar-box__title { font-size: 13px; color: var(--blue); margin-top: 2px; margin-bottom: 10px; }
.yazar-box__bio { font-size: 13.5px; color: var(--text-m); line-height: 1.65; }

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: center;
}
.value-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin: 0 auto 16px;
}
.value-card__title { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.value-card__desc { font-size: 13.5px; color: var(--text-m); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--trans);
}
.team-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-l); }
.team-card__photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; color: #fff;
  margin: 0 auto 16px;
}
.team-card__name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.team-card__role { font-size: 13px; color: var(--blue); }

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-item__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-info-item__title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.contact-info-item__val { font-size: 14px; color: var(--text-m); line-height: 1.65; }
.contact-info-item__val a { color: var(--blue); }

.contact-form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  transition: var(--trans);
  outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
textarea.form-control { resize: vertical; min-height: 130px; line-height: 1.6; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--text-m); margin-top: 4px; }

/* ====================================================
   COUNTRIES LIST PAGE
   ==================================================== */
.countries-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-m);
  background: #fff;
  cursor: pointer;
  transition: var(--trans);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ====================================================
   ALERTS / FLASH
   ==================================================== */
.alert {
  padding: 14px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.alert--success { background: var(--green-l); color: #065f46; border: 1px solid #a7f3d0; }
.alert--error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1200px) {
  .hero__inner { grid-template-columns: 1fr 400px; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 500px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .vize-layout { grid-template-columns: 1fr 260px; gap: 24px; }
  .vize-nav { display: none; }
  .vize-nav-mobile { display: flex; }
  .contact-layout { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { grid-template-columns: 1fr; text-align: center; }
  .cta-banner__actions { align-items: center; }
  .cta-banner__note { text-align: center; }
}

@media (max-width: 768px) {
  .top-bar__contacts .top-bar__item:nth-child(n+3) { display: none; }
  .site-nav, .header-search { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 48px 0 64px; }
  .hero__title { font-size: 30px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero-card__countries { grid-template-columns: repeat(4, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .about-values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 40px 28px; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__inner { justify-content: center; }
  .vize-layout { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-card { padding: 24px 20px; }
  .hero-card__countries { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar { display: none; }
}

/* ======================================================
   YENI BUTONLAR — accent & ghost
   ====================================================== */
.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232,66,26,.35);
}
.btn--accent:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,66,26,.45); }

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border);
  text-decoration: none;
}
.btn--ghost:hover { background: var(--bg-light); color: var(--blue); border-color: var(--blue); }

/* ======================================================
   HERO SCROLL WRAPPER — sticky hero
   ====================================================== */
.hero-scroll-wrap {
  position: relative;
  /* height set by JS or just use min-height trick */
}

/* ======================================================
   HERO IMMERSIVE (hi-*)
   ====================================================== */
.hero-imm {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #fafbff 0%, #f3f0ff 35%, #eef5ff 70%, #f8f3ff 100%);
  z-index: 1;
}

/* Ambient glow backgrounds */
.hi-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hi-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .6;
}
.hi-glow--purple {
  width: 800px; height: 800px;
  top: -200px; left: 30%;
  background: radial-gradient(circle, rgba(124,58,237,.12), transparent 70%);
  animation: glowPulse 8s ease-in-out infinite;
}
.hi-glow--orange {
  width: 500px; height: 500px;
  bottom: -100px; right: 10%;
  background: radial-gradient(circle, rgba(232,66,26,.09), transparent 70%);
  animation: glowPulse 10s ease-in-out infinite 2s;
}
@keyframes glowPulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50% { transform: scale(1.15); opacity: .9; }
}

/* Grid layout inside hero */
.hi-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 520px 320px;
  gap: 32px;
  align-items: center;
  min-height: 100vh;
}

/* ── Left text ── */
.hi-left { padding: 80px 0; }

.hi-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: rgba(124,58,237,.08);
  border: 1px solid rgba(124,58,237,.2);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  color: #6d28d9;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hi-tag__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(124,58,237,.4);
  animation: tagBlink 2.2s ease-in-out infinite;
}
@keyframes tagBlink {
  0%,100% { box-shadow: 0 0 0 0 rgba(124,58,237,.5); }
  50% { box-shadow: 0 0 0 8px rgba(124,58,237,0); }
}

.hi-title {
  font-size: clamp(38px, 3.8vw, 66px);
  font-weight: 900;
  line-height: 1.07;
  color: #0f172a;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}
.hi-title__line { display: block; }
.hi-title__line--em em {
  font-style: normal;
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
}

.hi-desc {
  font-size: 16px;
  color: #475569;
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 430px;
}

.hi-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Stats row */
.hi-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hi-stat { display: flex; flex-direction: column; gap: 3px; }
.hi-stat strong { font-size: 24px; font-weight: 900; color: #0f172a; line-height: 1; }
.hi-stat span { font-size: 11px; color: #94a3b8; text-transform: uppercase; letter-spacing: .5px; }
.hi-stat-sep { width: 1px; height: 32px; background: #e2e8f0; }

/* ── Globe ── */
.hi-globe-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 560px;
}

/* Globe.gl 3D canvas container */
#globeViz {
  width: 560px;
  height: 560px;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  overflow: hidden;
}
#globeViz canvas {
  display: block;
}

.hi-globe {
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 28%, #6b9ff8 0%, #1e3a8a 30%, #0e1f55 60%, #03091a 100%);
  box-shadow:
    0 0 0 1px rgba(120,160,255,.12),
    0 0 60px rgba(124,58,237,.4),
    0 0 140px rgba(124,58,237,.18),
    inset -20px -25px 60px rgba(0,5,30,.75);
  position: relative;
  overflow: hidden;
  animation: globeFloat 7s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: transform .4s ease;
}
@keyframes globeFloat {
  0%,100% { transform: translateY(0) rotateY(0deg); }
  50% { transform: translateY(-16px) rotateY(5deg); }
}

.hi-globe__grid {
  position: absolute; inset: 0; border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, transparent 0px, transparent 54px, rgba(150,200,255,.07) 54px, rgba(150,200,255,.07) 56px),
    repeating-linear-gradient(90deg, transparent 0px, transparent 54px, rgba(150,200,255,.07) 54px, rgba(150,200,255,.07) 56px);
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 220px 0; }
}

.hi-globe__atm {
  position: absolute; inset: -18px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, transparent 42%, rgba(124,58,237,.12) 58%, rgba(124,58,237,.22) 75%, transparent 88%);
  pointer-events: none;
}
.hi-globe__shine {
  position: absolute; top: 8%; left: 12%; width: 34%; height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Globe location pins */
.globe-pin {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(232,66,26,.9);
  box-shadow: 0 0 0 3px rgba(232,66,26,.3), 0 0 12px rgba(232,66,26,.6);
  animation: pinPulse 2.5s ease-in-out infinite;
}
.globe-pin:nth-child(2) { animation-delay: .5s; background: rgba(124,58,237,.9); box-shadow: 0 0 0 3px rgba(124,58,237,.3), 0 0 12px rgba(124,58,237,.6); }
.globe-pin:nth-child(3) { animation-delay: 1s; }
.globe-pin:nth-child(4) { animation-delay: 1.5s; background: rgba(16,185,129,.9); box-shadow: 0 0 0 3px rgba(16,185,129,.3), 0 0 12px rgba(16,185,129,.6); }
.globe-pin:nth-child(5) { animation-delay: 2s; }
@keyframes pinPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* Orbiting rings */
.hi-globe-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(124,58,237,.2); pointer-events: none;
}
.hi-globe-ring--1 { width: 510px; height: 510px; top:50%; left:50%; transform: translate(-50%,-50%); animation: ringPulse 4s ease-in-out infinite; }
.hi-globe-ring--2 { width: 600px; height: 600px; top:50%; left:50%; transform: translate(-50%,-50%); border-color: rgba(124,58,237,.1); animation: ringPulse 4s ease-in-out infinite .7s; }
.hi-globe-ring--3 { width: 700px; height: 700px; top:50%; left:50%; transform: translate(-50%,-50%); border-color: rgba(124,58,237,.05); animation: ringPulse 4s ease-in-out infinite 1.4s; }
@keyframes ringPulse {
  0%,100% { opacity: .8; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: .4; transform: translate(-50%,-50%) scale(1.025); }
}

/* Orbiting dot */
.hi-orbit {
  position: absolute;
  width: 560px; height: 560px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 12s linear infinite;
  pointer-events: none;
}
.hi-orbit__dot {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  box-shadow: 0 0 16px rgba(124,58,237,.7);
}
@keyframes orbitSpin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ── Right panels ── */
.hi-panels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 80px 0;
}

.hi-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(124,58,237,.1);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(100,116,139,.08);
}
.hi-panel::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,.06), rgba(232,66,26,.04));
  opacity: 0; transition: opacity .3s;
}
.hi-panel:hover::before, .hi-panel--active::before { opacity: 1; }
.hi-panel--active {
  border-color: rgba(124,58,237,.35);
  background: rgba(124,58,237,.06);
  box-shadow: inset 3px 0 0 #7c3aed, 0 4px 24px rgba(124,58,237,.18);
}
.hi-panel--active .hi-panel__name { color: #7c3aed; }
.hi-panel--active .hi-panel__arr  { color: #7c3aed; transform: translateX(4px); }

.hi-panel__flag {
  width: 38px;
  height: 26px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  display: block;
}
.hi-panel__info { flex: 1; }
.hi-panel__name { font-size: 13px; font-weight: 700; color: #0f172a; margin-bottom: 2px; }
.hi-panel__type { font-size: 11px; color: #94a3b8; text-transform: uppercase; letter-spacing: .4px; }
.hi-panel__arr { font-size: 15px; color: #cbd5e1; transition: .25s; }
.hi-panel:hover .hi-panel__arr, .hi-panel--active .hi-panel__arr { color: var(--blue); transform: translateX(4px); }

.hi-panel-all {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-top: 6px; padding: 10px;
  border-radius: 10px; border: 1px dashed rgba(124,58,237,.25);
  font-size: 12px; font-weight: 600; color: #7c3aed;
  text-decoration: none; transition: .25s;
  background: rgba(124,58,237,.04);
}
.hi-panel-all:hover { border-color: var(--blue); background: rgba(124,58,237,.08); color: var(--indigo); }

/* ── Scroll hint ── */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(0,0,0,.25); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; z-index: 10; transition: opacity .4s;
}
.scroll-hint__mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(0,0,0,.18);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-hint__wheel {
  width: 3px; height: 7px;
  background: rgba(0,0,0,.3); border-radius: 3px;
  animation: wheelBounce 2s ease-in-out infinite;
}
@keyframes wheelBounce {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ======================================================
   TRUST STRIP
   ====================================================== */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}
.trust-strip__inner {
  display: flex; gap: 0; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none;
}
.trust-strip__inner::-webkit-scrollbar { display: none; }
.trust-strip__item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 28px;
  border-right: 1px solid var(--border);
  white-space: nowrap; flex-shrink: 0;
}
.trust-strip__item:last-child { border-right: none; }
.trust-strip__icon { font-size: 22px; }
.trust-strip__item strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.trust-strip__item small { font-size: 11px; color: var(--text-m); }

/* ======================================================
   COUNTRY CARDS NEW
   ====================================================== */
.countries-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.country-card-new {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  text-decoration: none;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.country-card-new::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-lt), transparent);
  opacity: 0; transition: opacity .25s;
}
.country-card-new:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(124,58,237,.12); }
.country-card-new:hover::before { opacity: 1; }
.country-card-new__flag { font-size: 24px; line-height: 1; flex-shrink: 0; }
.country-card-new__name { font-size: 13px; font-weight: 700; color: var(--text); flex: 1; }
.country-card-new__arrow { font-size: 13px; color: var(--text-l); transition: .25s; margin-left: auto; }
.country-card-new:hover .country-card-new__arrow { color: var(--blue); transform: translateX(3px); }
.country-card-new--all { background: var(--blue-lt); border-color: var(--blue); }
.country-card-new--all .country-card-new__name { color: var(--blue); font-weight: 800; }
.country-card-new--all .country-card-new__arrow { color: var(--blue); font-weight: 800; }

/* ======================================================
   RATING BADGE
   ====================================================== */
.rating-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: var(--blue-lt);
  border: 1.5px solid rgba(124,58,237,.2);
  border-radius: var(--r);
}
.rating-badge span { color: var(--orange); }
.rating-badge strong { display: block; font-size: 16px; font-weight: 800; color: var(--navy); }
.rating-badge small { font-size: 11px; color: var(--text-m); }

/* ======================================================
   SCROLL-DRIVEN ANIMATIONS
   ====================================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .85s cubic-bezier(.22,.68,0,1.1), transform .85s cubic-bezier(.22,.68,0,1.1);
}
[data-animate="left"]  { transform: translateX(-32px) translateY(0); }
[data-animate="right"] { transform: translateX(32px) translateY(0); }
[data-animate="scale"] { transform: scale(.93) translateY(0); }
[data-animate].animated { opacity: 1; transform: none; }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-stagger].animated > *:nth-child(1)  { transition-delay: .04s; opacity:1; transform:none; }
[data-stagger].animated > *:nth-child(2)  { transition-delay: .10s; opacity:1; transform:none; }
[data-stagger].animated > *:nth-child(3)  { transition-delay: .16s; opacity:1; transform:none; }
[data-stagger].animated > *:nth-child(4)  { transition-delay: .22s; opacity:1; transform:none; }
[data-stagger].animated > *:nth-child(5)  { transition-delay: .28s; opacity:1; transform:none; }
[data-stagger].animated > *:nth-child(6)  { transition-delay: .34s; opacity:1; transform:none; }
[data-stagger].animated > *:nth-child(7)  { transition-delay: .40s; opacity:1; transform:none; }
[data-stagger].animated > *:nth-child(8)  { transition-delay: .46s; opacity:1; transform:none; }
[data-stagger].animated > *:nth-child(n+9){ transition-delay: .52s; opacity:1; transform:none; }

/* ── VİZE TÜRÜ NAVİGASYON ── */
.tur-pill {
  display: inline-flex; align-items: center; padding: 8px 18px;
  border: 1.5px solid var(--border); border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  background: #fff; text-decoration: none; transition: var(--trans);
}
.tur-pill:hover { border-color: var(--blue); color: var(--blue); background: var(--bg-blue); }
.tur-pill--active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── HAKKIMIZDA TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 40px; }
.team-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 28px 20px; text-align: center; transition: var(--trans); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-card__photo { width:80px; height:80px; border-radius:50%; background:linear-gradient(135deg,var(--blue),var(--indigo)); color:#fff; font-size:28px; font-weight:800; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.team-card__name { font-size:16px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.team-card__role { font-size:13px; color:var(--blue); font-weight:500; }

/* ── PAYLAŞIM ── */
.share-buttons { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:32px; }
.share-btn { display:inline-flex; align-items:center; gap:7px; padding:8px 16px; border-radius:100px; font-size:13px; font-weight:600; transition:var(--trans); text-decoration:none; border:1.5px solid transparent; cursor:pointer; }
.share-btn--twitter { background:#1da1f2; color:#fff; }
.share-btn--twitter:hover { background:#0c85d0; }
.share-btn--whatsapp { background:#25d366; color:#fff; }
.share-btn--whatsapp:hover { background:#1ea050; }
.share-btn--copy { background:var(--bg-light); color:var(--text-2); border-color:var(--border); }
.share-btn--copy:hover { background:var(--border); }

/* ── PAGINATION ── */
.pagination-wrap { display:flex; justify-content:center; margin-top:48px; }
.pagination-wrap nav { display:flex; gap:6px; align-items:center; flex-wrap:wrap; justify-content:center; }
/* Bootstrap 4 pagination — frontend override */
.pagination-wrap .pagination { display:flex; gap:4px; list-style:none; margin:0; padding:0; flex-wrap:wrap; justify-content:center; }
.pagination-wrap .pagination .page-item .page-link {
    display:inline-flex; align-items:center; justify-content:center;
    min-width:36px; height:36px; padding:0 10px;
    border:1.5px solid var(--border); border-radius:8px;
    background:#fff; color:var(--text); font-size:14px; font-weight:500;
    text-decoration:none; transition:all .15s; line-height:1;
}
.pagination-wrap .pagination .page-item .page-link svg { width:14px; height:14px; }
.pagination-wrap .pagination .page-item.active .page-link { background:var(--blue); border-color:var(--blue); color:#fff; }
.pagination-wrap .pagination .page-item.disabled .page-link { background:#f8fafc; color:#cbd5e1; pointer-events:none; border-color:#e2e8f0; }
.pagination-wrap .pagination .page-item .page-link:hover:not([aria-disabled]) { background:var(--bg-light); border-color:var(--blue); color:var(--blue); }
@media (max-width:480px) {
    .pagination-wrap { margin-top:32px; }
    .pagination-wrap .pagination .page-item .page-link { min-width:32px; height:32px; font-size:13px; }
}
/* ── ALERTS ── */
.alert--success { background:var(--green-l); color:#065f46; border:1px solid #a7f3d0; padding:14px 18px; border-radius:var(--r-sm); margin-bottom:16px; }
.alert--error   { background:#fee2e2; color:#991b1b; border:1px solid #fca5a5; padding:14px 18px; border-radius:var(--r-sm); margin-bottom:16px; }

/* ── RESPONSIVE HERO ── */
@media (max-width: 1200px) {
  .hi-inner { grid-template-columns: 1fr 400px 280px; gap: 24px; }
  .hi-globe { width: 360px; height: 360px; }
  .hi-globe-ring--1 { width: 420px; height: 420px; }
  .hi-globe-ring--2 { width: 490px; height: 490px; }
  .hi-globe-ring--3 { width: 560px; height: 560px; }
  .hi-orbit { width: 460px; height: 460px; }
}
@media (max-width: 1024px) {
  .hi-inner { grid-template-columns: 1fr 280px; gap: 20px; }
  .hi-globe-wrap { display: none; }
  .hi-title { font-size: 44px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .countries-grid-new { grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); }
}
@media (max-width: 768px) {
  .hi-inner { grid-template-columns: 1fr; padding: 0 20px; }
  .hi-panels { display: none; }
  .hi-left { padding: 100px 0 60px; }
  .hi-title { font-size: 36px; }
  .hi-desc { max-width: 100%; }
  .trust-strip__item { padding: 12px 18px; }
  .countries-grid-new { grid-template-columns: repeat(3,1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hi-title { font-size: 30px; }
  .countries-grid-new { grid-template-columns: repeat(2,1fr); }
  .hi-stats { gap: 16px; }
  .hi-stat strong { font-size: 20px; }
}

/* ====================================================
   VİZE TÜRÜ NAVİGASYON (tur.blade.php / vize.blade.php)
   ==================================================== */
.tur-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: #fff;
  text-decoration: none;
  transition: var(--trans);
}
.tur-pill:hover { border-color: var(--blue); color: var(--blue); background: var(--bg-blue); }
.tur-pill--active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ====================================================
   HAKKIMIZDA — TEAM GRID
   ==================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.team-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--trans);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-card__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.team-card__name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: 13px; color: var(--blue); font-weight: 500; }

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ====================================================
   HAKKIMIZDA — ikili kolon responsive
   ==================================================== */
@media (max-width: 768px) {
  .hakkimizda-2col { grid-template-columns: 1fr !important; }
}

/* ====================================================
   UTILITY
   ==================================================== */
.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-m); }
.fw-700 { font-weight: 700; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-12 { gap: 12px; }
.badge-green {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--green-l); color: #065f46;
  padding: 3px 10px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.badge-blue {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--bg-blue); color: var(--blue);
  padding: 3px 10px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}

/* Visa type pills */
.vize-turu-list { display: flex; flex-wrap: wrap; gap: 8px; }
.vize-turu-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  transition: var(--trans);
  background: #fff;
}
.vize-turu-pill:hover { border-color: var(--blue); color: var(--blue); background: var(--bg-blue); }
.vize-turu-pill.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Paylasim butonlari */
.share-buttons { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 32px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  transition: var(--trans); text-decoration: none;
  border: 1.5px solid transparent;
}
.share-btn--twitter { background: #1da1f2; color: #fff; }
.share-btn--twitter:hover { background: #0c85d0; }
.share-btn--whatsapp { background: #25d366; color: #fff; }
.share-btn--whatsapp:hover { background: #1ea050; }
.share-btn--copy { background: var(--bg-light); color: var(--text-2); border-color: var(--border); }
.share-btn--copy:hover { background: var(--border); }

/* Pagination */
.pagination-wrap { display: flex; justify-content: center; margin-top: 48px; }
.pagination-wrap nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: center; }
.pagination-wrap .pagination { display:flex; gap:4px; list-style:none; margin:0; padding:0; flex-wrap:wrap; justify-content:center; }
.pagination-wrap .pagination .page-item .page-link {
    display:inline-flex; align-items:center; justify-content:center;
    min-width:36px; height:36px; padding:0 10px;
    border:1.5px solid var(--border); border-radius:8px;
    background:#fff; color:var(--text); font-size:14px; font-weight:500;
    text-decoration:none; transition:all .15s; line-height:1;
}
.pagination-wrap .pagination .page-item .page-link svg { width:14px; height:14px; }
.pagination-wrap .pagination .page-item.active .page-link { background:var(--blue); border-color:var(--blue); color:#fff; }
.pagination-wrap .pagination .page-item.disabled .page-link { background:#f8fafc; color:#cbd5e1; pointer-events:none; border-color:#e2e8f0; }
.pagination-wrap .pagination .page-item .page-link:hover:not([aria-disabled]) { background:var(--bg-light); border-color:var(--blue); color:var(--blue); }
