/* ============================================
   EBA VİZE — Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #1A2B4A;
  --navy-deep: #0F1C35;
  --blue: #1E3A6E;
  --blue-accent: #2C5282;
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #A07840;
  --bg: #F8F7F4;
  --surface: #FFFFFF;
  --text: #0F1C35;
  --text-secondary: #4A5E7A;
  --divider: #E8EDF4;
  --shadow-sm: 0 2px 8px rgba(26,43,74,0.08);
  --shadow-md: 0 8px 32px rgba(26,43,74,0.12);
  --shadow-lg: 0 20px 60px rgba(26,43,74,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); }
h1 { font-size: clamp(38px, 5.5vw, 64px); font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 600; line-height: 1.2; letter-spacing: -0.005em; }
h3 { font-family: var(--font-body); font-size: 24px; font-weight: 700; line-height: 1.3; }
.section-label {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.section-label::before { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--gold); }
.section-sub { font-family: var(--font-body); font-size: 17px; color: var(--text-secondary); max-width: 640px; margin-top: 16px; line-height: 1.7; }
section { padding: 120px 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; font-family: var(--font-body); font-weight: 700;
  font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 30px rgba(201,169,110,0.55); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.5); color: white; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: white; }
.btn-whatsapp { background: #25D366; color: white; letter-spacing: 0.05em; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.btn-whatsapp:hover { transform: translateY(-2px); background: #1fbf5b; }

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; height: 80px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 1000; border-bottom: 1px solid transparent;
  transition: height 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.header.scrolled { height: 64px; background: rgba(255,255,255,0.96); box-shadow: var(--shadow-sm); border-color: var(--divider); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.logo { display: flex; align-items: center; gap: 12px; color: var(--navy); }
.logo img { height: 56px; width: auto; display: block; transition: height 0.25s ease; }
.header.scrolled .logo img { height: 44px; }
.footer .logo img { height: 70px; background: white; padding: 6px 14px; border-radius: 8px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-family: var(--font-body); font-weight: 500; font-size: 14px; color: var(--text); position: relative; padding: 6px 0; transition: color 0.2s; }
.nav a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.25s ease; }
.nav a:hover { color: var(--navy); }
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--navy); }
.header-phone svg { color: var(--gold); }
.btn-whatsapp-mini {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: white;
  padding: 10px 18px; border-radius: 6px; font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(201,169,110,0.35); transition: all 0.2s;
}
.btn-whatsapp-mini:hover { transform: translateY(-2px); }
.nav-mobile { display: none; }
.hamburger { display: none; width: 40px; height: 40px; border: none; background: transparent; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.hamburger span { width: 22px; height: 2px; background: var(--navy); transition: 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative; min-height: 100vh; padding: 160px 0 140px;
  display: flex; align-items: center;
  background: linear-gradient(160deg, rgba(15,28,53,0.88) 0%, rgba(26,43,74,0.65) 60%, rgba(15,28,53,0.88) 100%), radial-gradient(ellipse at top left, #1a2b4a, #0f1c35 70%);
  overflow: hidden; color: white;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201,169,110,0.15), transparent 50%), radial-gradient(circle at 80% 70%, rgba(44,82,130,0.4), transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='1' cy='1' r='1' fill='%23c9a96e' opacity='0.08'/></svg>");
  background-size: 40px 40px; pointer-events: none; opacity: 0.6;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-body); font-weight: 600; font-size: 12px; color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero h1 { color: white; margin-bottom: 28px; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--gold); }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.82); max-width: 540px; margin-bottom: 40px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; height: 540px; }
.passport-card { position: absolute; border-radius: 14px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,169,110,0.2); background: white; transition: transform 0.5s ease; }
.passport-card img { width: 100%; height: 100%; object-fit: cover; }
.passport-card.p1 { width: 260px; height: 340px; top: 30px; left: 30px; transform: rotate(-8deg); z-index: 2; }
.passport-card.p2 { width: 260px; height: 340px; top: 80px; right: 10px; transform: rotate(6deg); z-index: 3; }
.passport-card.p3 { width: 240px; height: 320px; bottom: 0; left: 120px; transform: rotate(-2deg); z-index: 4; }
.passport-card.p1:hover { transform: rotate(-4deg) translateY(-6px); }
.passport-card.p2:hover { transform: rotate(2deg) translateY(-6px); }
.passport-card.p3:hover { transform: rotate(0deg) translateY(-6px); z-index: 5; }
.passport-badge { position: absolute; background: rgba(15,28,53,0.95); border: 1px solid rgba(201,169,110,0.4); color: white; padding: 10px 16px; border-radius: 30px; font-family: var(--font-body); font-weight: 600; font-size: 12px; letter-spacing: 0.05em; z-index: 5; box-shadow: 0 8px 24px rgba(0,0,0,0.3); display: inline-flex; align-items: center; gap: 8px; }
.passport-badge .flag { font-size: 16px; }
.passport-badge.b1 { top: 0; right: 30px; }
.passport-badge.b2 { bottom: 70px; right: -10px; }
.passport-badge.b3 { bottom: -10px; left: 20px; background: var(--gold); color: var(--navy-deep); border-color: var(--gold-light); }

.hero-trust { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-top: 1px solid rgba(201,169,110,0.3); z-index: 3; }
.hero-trust-inner { max-width: 1240px; margin: 0 auto; padding: 20px 32px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--navy); }
.trust-item .check { width: 28px; height: 28px; border-radius: 50%; background: rgba(201,169,110,0.15); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }

/* COUNTERS */
.counters { background: var(--navy); position: relative; overflow: hidden; padding: 80px 0; }
.counters::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='1' cy='1' r='1' fill='%23c9a96e' opacity='0.5'/></svg>"); background-size: 40px 40px; opacity: 0.05; }
.counters-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); align-items: center; }
.counter-item { text-align: center; padding: 20px 24px; position: relative; }
.counter-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(201,169,110,0.2); }
.counter-num { font-family: var(--font-display); font-weight: 700; font-size: 56px; color: var(--gold); line-height: 1; display: inline-flex; align-items: baseline; }
.counter-num .unit { font-size: 28px; margin-left: 2px; }
.counter-label { font-family: var(--font-body); font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 12px; letter-spacing: 0.02em; }

/* SECTION HEAD */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .section-label::after { content: ''; display: inline-block; width: 40px; height: 1px; background: var(--gold); }
.section-head .section-label { justify-content: center; }
.section-head .section-sub { margin-left: auto; margin-right: auto; }

/* SERVICES */
.services { background: var(--bg); }
.filter-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.tab-btn { padding: 12px 24px; border: 1px solid var(--divider); background: transparent; color: var(--text-secondary); font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 30px; cursor: pointer; transition: all 0.25s; }
.tab-btn:hover { color: var(--navy); border-color: var(--gold); }
.tab-btn.active { background: var(--navy); color: white; border-color: var(--navy); box-shadow: 0 4px 16px rgba(26,43,74,0.2); }
.subsection-title { font-family: var(--font-body); font-weight: 700; font-size: 18px; color: var(--text); margin-bottom: 32px; display: inline-flex; flex-direction: column; gap: 10px; }
.subsection-title::after { content: ''; width: 36px; height: 2px; background: var(--gold); }

.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.country-card { position: relative; height: 380px; border-radius: 16px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s; }
.country-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.country-card .bg { position: absolute; inset: 0; background-position: center; background-size: cover; transition: transform 0.6s ease; }
.country-card:hover .bg { transform: scale(1.06); }
.country-card .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,28,53,0.15) 0%, rgba(15,28,53,0.5) 50%, rgba(15,28,53,0.92) 100%); }
.country-card .border-glow { position: absolute; inset: 0; border: 2px solid transparent; border-radius: 16px; transition: border-color 0.3s; pointer-events: none; }
.country-card:hover .border-glow { border-color: rgba(201,169,110,0.6); }
.country-card .content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; color: white; z-index: 2; }
.country-card .flag { font-size: 32px; margin-bottom: 12px; display: block; line-height: 1; }
.country-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: white; margin-bottom: 4px; }
.country-card .type { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.75); letter-spacing: 0.06em; text-transform: uppercase; }
.country-card .hover-desc { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.6; margin-top: 14px; max-height: 0; overflow: hidden; opacity: 0; transform: translateY(8px); transition: all 0.4s ease; }
.country-card:hover .hover-desc { max-height: 80px; opacity: 1; transform: translateY(0); }
.country-card .cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; transition: transform 0.25s; }
.country-card:hover .cta { transform: translateX(4px); }
.visa-strip { position: absolute; top: 16px; right: 16px; background: rgba(201,169,110,0.95); color: var(--navy-deep); font-family: var(--font-body); font-weight: 700; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 12px; border-radius: 4px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; }
.visa-strip .dot { width: 6px; height: 6px; background: var(--navy-deep); border-radius: 50%; animation: blink 1.6s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.country-card .proof-row { position: absolute; top: 16px; left: 16px; display: flex; z-index: 3; }
.country-card .proof-thumb { width: 44px; height: 56px; border-radius: 4px; border: 2px solid rgba(255,255,255,0.9); overflow: hidden; margin-right: -12px; background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: transform 0.3s; }
.country-card .proof-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.country-card:hover .proof-thumb:nth-child(1) { transform: rotate(-6deg) translateY(-3px); }
.country-card:hover .proof-thumb:nth-child(2) { transform: rotate(0deg) translateY(-6px); }
.country-card:hover .proof-thumb:nth-child(3) { transform: rotate(6deg) translateY(-3px); }

/* CATEGORIES */
.categories { background: #F0F4F9; padding: 100px 0; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.category-card { background: white; border-radius: 14px; padding: 28px 24px; border: 1px solid var(--divider); border-top: 3px solid transparent; box-shadow: var(--shadow-sm); transition: all 0.3s; cursor: pointer; }
.category-card:hover { border-top-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.category-card .icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(201,169,110,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.category-card:hover .icon { background: var(--gold); color: white; transform: rotate(6deg); }
.category-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 17px; margin-top: 18px; margin-bottom: 10px; color: var(--text); }
.category-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.category-card .link { margin-top: 16px; display: inline-flex; gap: 6px; font-size: 13px; font-weight: 600; color: var(--gold); transition: transform 0.25s; }
.category-card:hover .link { transform: translateX(4px); }

/* VISA WALL */
.visa-wall { background: white; padding: 100px 0; }
.wall-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wall-item { aspect-ratio: 3/4; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); position: relative; transition: transform 0.4s, box-shadow 0.4s; cursor: pointer; }
.wall-item:hover { transform: translateY(-6px) scale(1.04); box-shadow: var(--shadow-md); z-index: 2; }
.wall-item img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.4s; }
.wall-item:hover img { transform: scale(1.08); }
.wall-item .tag { position: absolute; bottom: 8px; left: 8px; right: 8px; background: rgba(15,28,53,0.85); color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 8px; border-radius: 4px; text-align: center; backdrop-filter: blur(4px); }

/* PROCESS */
.process { background: var(--bg); position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30'><circle cx='1' cy='1' r='1' fill='%231a2b4a' opacity='0.5'/></svg>"); background-size: 30px 30px; opacity: 0.04; }
.timeline { position: relative; max-width: 1080px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--gold) 0%, var(--navy) 100%); transform: translateX(-50%); }
.step { position: relative; display: grid; grid-template-columns: 1fr 64px 1fr; gap: 32px; align-items: center; margin-bottom: 56px; }
.step:last-child { margin-bottom: 0; }
.step-circle { width: 64px; height: 64px; border-radius: 50%; background: white; border: 3px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--gold); position: relative; z-index: 2; transition: all 0.4s; }
.step.visible .step-circle { background: var(--gold); color: white; box-shadow: 0 0 0 6px rgba(201,169,110,0.18); }
.step-card { background: white; border-radius: 16px; padding: 32px 36px; box-shadow: 0 4px 24px rgba(26,43,74,0.10); opacity: 0; transition: all 0.7s cubic-bezier(0.22,1,0.36,1); }
.step:nth-child(odd) .step-card { grid-column: 1; border-right: 4px solid var(--gold); text-align: right; transform: translateX(-40px); }
.step:nth-child(even) .step-card { grid-column: 3; border-left: 4px solid var(--gold); transform: translateX(40px); }
.step:nth-child(odd) .empty { grid-column: 3; }
.step:nth-child(even) .empty { grid-column: 1; }
.step.visible .step-card { opacity: 1; transform: translateX(0); }
.step-card .step-label { font-family: var(--font-body); font-weight: 700; font-size: 11px; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 8px; }
.step-card h4 { font-family: var(--font-body); font-weight: 800; font-size: 20px; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.step-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }
.step-card .highlight { margin-top: 14px; font-weight: 500; font-size: 14px; color: var(--text); padding-top: 14px; border-top: 1px solid var(--divider); font-style: italic; }
.contact-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; justify-content: flex-end; }
.step:nth-child(even) .contact-pills { justify-content: flex-start; }
.contact-pill { background: rgba(26,43,74,0.06); border: 1px solid var(--divider); color: var(--navy); font-weight: 600; font-size: 12px; padding: 6px 12px; border-radius: 30px; }
.support-247 { margin-top: 80px; max-width: 720px; margin-left: auto; margin-right: auto; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); border: 1px solid rgba(201,169,110,0.25); border-radius: 16px; padding: 48px; text-align: center; position: relative; overflow: hidden; }
.support-247 .big-num { font-family: var(--font-display); font-weight: 700; font-size: 80px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.support-247 h3 { font-family: var(--font-display); font-weight: 600; font-size: 32px; color: white; margin-bottom: 16px; }
.support-247 p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* WHY US */
.why-us { background: white; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.why-us-intro h2 { margin-bottom: 20px; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.why-item { padding: 24px; border: 1px solid var(--divider); border-left: 3px solid transparent; border-radius: 12px; transition: all 0.3s; cursor: default; }
.why-item:hover { border-left-color: var(--gold); background: var(--bg); transform: translateX(4px); }
.why-item .diamond { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.why-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials { background: var(--navy); color: white; position: relative; overflow: hidden; }
.testimonials::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(201,169,110,0.08), transparent 50%), radial-gradient(circle at 20% 80%, rgba(44,82,130,0.3), transparent 50%); pointer-events: none; }
.testimonials .section-head h2 { color: white; }
.testimonials .section-head .section-sub { color: rgba(255,255,255,0.7); }
.testimonials-wrap { position: relative; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 720px; margin: 0 auto 64px; }
.video-card { position: relative; aspect-ratio: 9/16; border-radius: 18px; overflow: hidden; background: black; box-shadow: 0 30px 60px rgba(0,0,0,0.4); border: 1px solid rgba(201,169,110,0.25); }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-card .play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(15,28,53,0.4); cursor: pointer; transition: opacity 0.3s; z-index: 2; border: none; }
.video-card.playing .play-btn { opacity: 0; pointer-events: none; }
.video-card .play-btn .circle { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 8px 24px rgba(201,169,110,0.5); transition: transform 0.3s; }
.video-card:hover .play-btn .circle { transform: scale(1.08); }
.video-card .label { position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 1; background: rgba(15,28,53,0.85); backdrop-filter: blur(8px); padding: 10px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; border: 1px solid rgba(201,169,110,0.25); display: flex; align-items: center; gap: 8px; }
.video-card .label .live-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: blink 1.6s infinite; flex-shrink: 0; }

.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.social-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,169,110,0.18); border-radius: 14px; padding: 16px; transition: all 0.3s; }
.social-card:hover { border-color: rgba(201,169,110,0.45); transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.social-card .source { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.social-card .source .pill { background: rgba(201,169,110,0.2); color: var(--gold-light); padding: 4px 10px; border-radius: 20px; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.social-card .shot { border-radius: 8px; overflow: hidden; background: white; aspect-ratio: 9/16; }
.social-card .shot img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* BLOG */
.blog { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: white; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s; cursor: pointer; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card .img { height: 220px; background-size: cover; background-position: center; position: relative; }
.blog-card .img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(15,28,53,0.4) 100%); }
.blog-card .category { position: absolute; top: 16px; left: 16px; background: var(--gold); color: var(--navy-deep); padding: 5px 12px; border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; z-index: 2; }
.blog-card .body { padding: 24px; }
.blog-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 10px; line-height: 1.25; }
.blog-card .excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.blog-card .meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.blog-card .meta .date { color: var(--text-secondary); }
.blog-card .meta .more { color: var(--gold); font-weight: 600; display: inline-flex; gap: 4px; transition: transform 0.25s; }
.blog-card:hover .meta .more { transform: translateX(3px); }

/* FAQ */
.faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 48px; align-items: start; }
.faq-context { position: sticky; top: 100px; background: linear-gradient(145deg, var(--navy), var(--navy-deep)); border-radius: 20px; padding: 40px 36px; border: 1px solid rgba(201,169,110,0.2); box-shadow: var(--shadow-lg); overflow: hidden; }
.faq-context::after { content: '?'; position: absolute; bottom: -40px; right: 20px; font-family: var(--font-display); font-weight: 700; font-size: 200px; color: rgba(201,169,110,0.07); line-height: 1; }
.faq-context .icon-circle { width: 52px; height: 52px; border-radius: 50%; background: rgba(201,169,110,0.2); border: 1px solid rgba(201,169,110,0.4); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.faq-context h3 { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: white; margin-bottom: 14px; line-height: 1.25; }
.faq-context p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.faq-context .btn { width: 100%; padding: 14px 24px; }
.faq-context .btn + .btn { margin-top: 10px; }
.faq-context .online-status { margin-top: 20px; display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 12px; color: rgba(201,169,110,0.85); }
.faq-context .online-status .dot { width: 8px; height: 8px; background: #4ADE80; border-radius: 50%; animation: pulseDot 1.8s infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); } 70% { box-shadow: 0 0 0 8px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }
.faq-context.pulse-once { animation: cardPulse 0.6s ease-out; }
@keyframes cardPulse { 0% { box-shadow: 0 0 0 0 rgba(201,169,110,0.4), var(--shadow-lg); } 50% { box-shadow: 0 0 0 14px rgba(201,169,110,0), var(--shadow-lg); } 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0), var(--shadow-lg); } }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: white; border: 1px solid var(--divider); border-radius: 12px; transition: all 0.3s; overflow: hidden; }
.faq-trigger { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; cursor: pointer; background: transparent; border: none; width: 100%; text-align: left; font-family: var(--font-body); font-weight: 600; font-size: 16px; color: var(--text); transition: color 0.2s; }
.faq-trigger:hover { color: var(--navy); }
.faq-trigger .q-text { display: flex; align-items: center; gap: 14px; }
.q-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.q-dot.gold { background: var(--gold); }
.q-dot.blue { background: var(--blue-accent); }
.q-dot.green { background: #48BB78; }
.q-dot.steel { background: var(--text-secondary); }
.faq-trigger .chevron { color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open { border-color: var(--gold); border-left-width: 3px; box-shadow: 0 6px 24px rgba(26,43,74,0.08); }
.faq-item.open .faq-trigger { color: var(--navy); }
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-body-inner { padding: 0 24px 22px 46px; font-size: 15px; color: var(--text-secondary); line-height: 1.75; }
.faq-note { margin-top: 14px; padding: 14px 18px; border-left: 3px solid var(--gold); background: rgba(201,169,110,0.08); font-size: 14px; color: var(--text); border-radius: 0 8px 8px 0; }
.faq-note.navy { border-left-color: var(--navy); background: rgba(26,43,74,0.05); }

/* FORM */
.form-section { background: linear-gradient(135deg, rgba(15,28,53,0.95), rgba(26,43,74,0.9)), radial-gradient(circle at 20% 30%, var(--blue-accent), var(--navy-deep) 70%); color: white; position: relative; overflow: hidden; }
.form-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(45deg, transparent 48%, rgba(201,169,110,0.04) 50%, transparent 52%); background-size: 40px 40px; pointer-events: none; }
.form-wrap { max-width: 560px; margin: 0 auto; position: relative; text-align: center; }
.form-wrap h2 { color: white; margin-bottom: 16px; }
.form-wrap .section-sub { color: rgba(255,255,255,0.75); margin-bottom: 40px; }
.form-wrap form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.form-field input, .form-field select { width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(201,169,110,0.3); color: white; border-radius: 8px; padding: 14px 18px; font-family: var(--font-body); font-size: 15px; transition: all 0.2s; }
.form-field input::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus, .form-field select:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12); box-shadow: 0 0 0 3px rgba(201,169,110,0.15); }
.form-field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='2'/></svg>"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }
.form-wrap .btn { margin-top: 8px; padding: 16px 36px; }
.form-wrap .divider { position: relative; text-align: center; margin: 8px 0; color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 0.2em; }
.form-wrap .divider::before, .form-wrap .divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: rgba(255,255,255,0.15); }
.form-wrap .divider::before { left: 0; }
.form-wrap .divider::after { right: 0; }
.kvkk { font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; margin-top: 14px; }

/* CONTACT */
.contact { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row .icon-box { width: 44px; height: 44px; border-radius: 10px; background: rgba(201,169,110,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 4px; }
.contact-row .value { font-family: var(--font-body); font-size: 16px; color: var(--text); font-weight: 500; line-height: 1.5; }
.contact-row .value a { transition: color 0.2s; }
.contact-row .value a:hover { color: var(--gold-dark); }
.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--divider); display: flex; align-items: center; justify-content: center; color: var(--gold); transition: all 0.25s; }
.social-row a:hover { background: var(--gold); color: white; border-color: var(--gold); transform: translateY(-2px); }
.map-wrap { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); height: 460px; position: relative; background: var(--bg); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-cta { position: absolute; bottom: 20px; left: 20px; right: 20px; background: white; padding: 14px 18px; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; box-shadow: var(--shadow-md); gap: 16px; flex-wrap: wrap; }
.map-cta strong { font-family: var(--font-body); font-size: 14px; color: var(--navy); }

/* FOOTER */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 80px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer .logo { color: white; }
.footer-col h5 { font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col li a:hover { color: var(--gold); }
.footer p.brand-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 16px; margin-bottom: 24px; max-width: 280px; }
.footer .social-row a { border-color: rgba(201,169,110,0.3); }
.footer-bottom { border-top: 1px solid rgba(201,169,110,0.15); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom .legal-links { display: flex; gap: 16px; }
.disclaimer { margin-top: 32px; padding: 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,169,110,0.15); border-radius: 10px; font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 32px; right: 32px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.25s; }
.wa-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: waPulse 2s infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.wa-float:hover { transform: scale(1.1); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.56s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 460px; max-width: 540px; margin: 0 auto; }
  .hero-trust-inner { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .counter-item:nth-child(3)::after { display: none; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .wall-grid { grid-template-columns: repeat(4, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-context { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .video-grid { gap: 20px; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .header { height: 70px; }
  .header.scrolled { height: 60px; }
  .logo img { height: 44px; }
  .header.scrolled .logo img { height: 38px; }
  .header-inner { padding: 0 16px; gap: 12px; }
  .header-cta { gap: 8px; }
  .btn-whatsapp-mini { padding: 8px 12px; font-size: 11px; }
  .btn-whatsapp-mini svg { width: 14px; height: 14px; }
  .nav-mobile { position: fixed; top: 70px; left: 0; right: 0; background: white; box-shadow: var(--shadow-md); padding: 24px; flex-direction: column; gap: 18px; max-height: calc(100vh - 70px); overflow-y: auto; }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--divider); }
  .hero { padding: 120px 0 240px; min-height: auto; }
  .hero-desc { font-size: 16px; margin-bottom: 28px; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust-inner { grid-template-columns: 1fr 1fr; row-gap: 14px; padding: 16px 20px; }
  .trust-item { font-size: 13px; }
  .hero-visual { height: 360px; max-width: 360px; margin: 0 auto; }
  .passport-card.p1 { width: 170px; height: 230px; left: 10px; top: 20px; }
  .passport-card.p2 { width: 170px; height: 230px; right: 10px; top: 60px; }
  .passport-card.p3 { width: 160px; height: 210px; bottom: 0; left: 50%; transform: translateX(-50%) rotate(-2deg); }
  .passport-badge { font-size: 10px; padding: 8px 12px; }
  .passport-badge.b1 { top: 0; right: 0; }
  .passport-badge.b2 { bottom: 40px; right: -5px; }
  .passport-badge.b3 { bottom: -20px; left: 0; }
  .counters { padding: 60px 0; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item { padding: 16px 12px; }
  .counter-item:nth-child(odd)::after { display: none; }
  .counter-item:nth-child(5) { grid-column: 1 / -1; }
  .counter-item:nth-child(5)::after { display: none; }
  .counter-num { font-size: 40px; }
  .counter-num .unit { font-size: 22px; }
  .counter-label { font-size: 12px; }
  .section-head { margin-bottom: 40px; }
  .section-head .section-label { font-size: 11px; letter-spacing: 0.18em; }
  .section-label::before { width: 28px; }
  .section-head .section-label::after { width: 28px; }
  .filter-tabs { gap: 6px; margin-bottom: 32px; }
  .tab-btn { padding: 10px 14px; font-size: 11px; letter-spacing: 0.04em; }
  .country-grid { grid-template-columns: 1fr; gap: 16px; }
  .country-card { height: 320px; }
  .country-card h3 { font-size: 24px; }
  .category-grid { grid-template-columns: 1fr; gap: 14px; }
  .visa-wall { padding: 70px 0; }
  .wall-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 20px; }
  .wall-item .tag { font-size: 9px; padding: 4px 6px; }
  .timeline::before { left: 24px; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; margin-bottom: 28px; }
  .step .step-circle { width: 48px; height: 48px; font-size: 20px; grid-column: 1; }
  .step:nth-child(odd) .step-card, .step:nth-child(even) .step-card { grid-column: 2; text-align: left; border-right: none; border-left: 4px solid var(--gold); transform: translateY(20px); padding: 20px; }
  .step-card h4 { font-size: 17px; }
  .step-card p { font-size: 14px; }
  .step .empty { display: none; }
  .step:nth-child(odd) .contact-pills, .step:nth-child(even) .contact-pills { justify-content: flex-start; }
  .contact-pill { font-size: 11px; padding: 5px 10px; }
  .support-247 { padding: 32px 20px; margin-top: 56px; }
  .support-247 .big-num { font-size: 56px; }
  .support-247 h3 { font-size: 24px; }
  .support-247 p { font-size: 14px; }
  .why-list { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; max-width: 280px; gap: 20px; }
  .video-card .play-btn .circle { width: 64px; height: 64px; }
  .social-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card .img { height: 180px; }
  .blog-card h4 { font-size: 19px; }
  .faq-context { padding: 28px 24px; }
  .faq-context h3 { font-size: 22px; }
  .faq-trigger { padding: 18px 20px; font-size: 15px; gap: 12px; }
  .faq-trigger .q-text { gap: 12px; }
  .faq-body-inner { padding: 0 20px 18px 40px; font-size: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap form { gap: 12px; }
  .form-field input, .form-field select { font-size: 16px; padding: 12px 16px; }
  .footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-float svg { width: 26px; height: 26px; }
  .contact-grid { gap: 32px; }
  .map-wrap { height: 360px; }
  .map-cta { flex-direction: column; align-items: stretch; text-align: center; }
}
@media (max-width: 420px) {
  h1 { font-size: 34px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 0.18em; }
  .hero-visual { height: 320px; max-width: 320px; }
  .passport-card.p1 { width: 150px; height: 200px; }
  .passport-card.p2 { width: 150px; height: 200px; }
  .passport-card.p3 { width: 140px; height: 190px; }
  .btn { font-size: 13px; padding: 14px 24px; }
  .header-phone { display: none; }
  .btn-whatsapp-mini span { display: none; }
  .btn-whatsapp-mini { padding: 8px 10px; }
  .btn-whatsapp-mini::after { content: 'WA'; }
  .counter-num { font-size: 36px; }
  .country-card { height: 280px; }
  .country-card .content { padding: 20px; }
  .wall-grid { gap: 8px; }
}
