/* ============ Temel ============ */
:root {
  --primary: #1a6ef5;
  --primary-dark: #0f56c9;
  --accent: #ff7a2f;
  --dark: #10203a;
  --text: #33415c;
  --muted: #7b8aa5;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --border: #e3eaf3;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(16, 32, 58, 0.08);
  --shadow-lg: 0 20px 60px rgba(16, 32, 58, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { color: var(--dark); line-height: 1.2; }

section { padding: 80px 0; }

/* ============ Butonlar ============ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 122, 47, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255, 122, 47, 0.45); }

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

.btn-block { width: 100%; }

/* ============ Topbar ============ */
.topbar {
  background: var(--dark);
  color: #c6d3e8;
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar-left { display: flex; align-items: center; gap: 8px; }
.topbar strong { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-right a { color: #c6d3e8; text-decoration: none; }
.topbar-btn {
  border: 1px solid #3a4d6e;
  padding: 4px 14px;
  border-radius: 8px;
}
.topbar-btn:hover { background: #223152; border-color: #55688c; }

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px;
}
.logo-text { font-weight: 800; font-size: 20px; color: var(--dark); }
.logo-text span { color: var(--primary); }
.logo.light .logo-text { color: #fff; }

.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
.nav a:hover { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 24px; height: 3px; background: var(--dark); border-radius: 2px; }

/* ============ Hero ============ */
.hero {
  background: linear-gradient(160deg, #f2f6fc 0%, #e8f0fb 60%, #fdf3ec 100%);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-selectors {
  display: flex;
  gap: 12px;
  background: #fff;
  padding: 14px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.selector { flex: 1; min-width: 160px; }
.selector label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.selector select {
  width: 100%;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  background: transparent;
  cursor: pointer;
  outline: none;
}
.selector-btn { align-self: center; white-space: nowrap; }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.stat strong { display: block; font-size: 26px; font-weight: 800; color: var(--dark); }
.stat span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* Hero görsel */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card-main {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  width: 300px;
  position: relative;
  z-index: 2;
}
.passport-icon { font-size: 44px; margin-bottom: 8px; }
.hero-card-title { font-weight: 800; font-size: 18px; color: var(--dark); margin-bottom: 18px; }
.pstep {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  background: var(--bg-soft);
}
.pstep span { font-size: 14px; }
.pstep.done { color: #1d9e5f; }
.pstep.active {
  background: linear-gradient(135deg, #e9f9f0, #d8f3e4);
  color: #12854c;
  border: 1px solid #b8e6cd;
}

.hero-notify {
  position: absolute;
  top: -18px;
  right: 0;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 3;
  max-width: 240px;
  animation: floatY 4s ease-in-out infinite;
}
.hero-notify strong { font-size: 13px; color: var(--dark); }
.hero-notify p { font-size: 12px; color: var(--muted); }
.notify-bell {
  background: #fff3e8;
  border-radius: 10px;
  padding: 8px;
  font-size: 16px;
}

.hero-float-flag {
  position: absolute;
  font-size: 30px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  box-shadow: var(--shadow);
  animation: floatY 5s ease-in-out infinite;
  z-index: 1;
}
.f1 { top: 8%; left: 0; animation-delay: 0s; }
.f2 { bottom: 12%; left: 4%; animation-delay: 1.2s; }
.f3 { top: 30%; right: -8px; animation-delay: 2s; }
.f4 { bottom: -10px; right: 12%; animation-delay: 0.6s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ Özellikler ============ */
.features { padding: 60px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: #fff; }
.feature-icon { font-size: 32px; margin-bottom: 12px; }
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { font-size: 14px; color: var(--muted); }

/* ============ Bölüm başlıkları ============ */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: #e8f0fd;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-tag.light { background: rgba(255,255,255,0.15); color: #fff; }
.section-head h2, .about-content h2, .faq-left h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); }

/* ============ Ülkeler ============ */
.countries { background: var(--bg-soft); }
.country-search { max-width: 440px; margin: 0 auto 36px; }
.country-search input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}
.country-search input:focus { border-color: var(--primary); }

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.country-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
}
.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.country-flag { font-size: 34px; line-height: 1; }
.country-card strong { display: block; color: var(--dark); font-size: 15px; }
.country-card small { color: var(--muted); font-size: 12.5px; font-weight: 600; }
.country-card .arrow {
  margin-left: auto;
  color: var(--primary);
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.2s;
}
.country-card:hover .arrow { opacity: 1; }
.countries-more { text-align: center; margin-top: 32px; }

/* ============ Hakkımızda ============ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; }
.about-card {
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.about-big { font-size: 72px; font-weight: 800; line-height: 1; margin-bottom: 12px; }
.about-card p { opacity: 0.9; font-size: 16px; }
.about-emoji {
  position: absolute;
  bottom: -24px;
  right: -12px;
  font-size: 56px;
  background: #fff;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  animation: floatY 5s ease-in-out infinite;
}
.about-content p { color: var(--muted); margin-bottom: 14px; }
.about-list { list-style: none; margin: 20px 0 28px; }
.about-list li { padding: 6px 0; font-weight: 600; color: var(--text); }

/* ============ Referanslar ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); background: #fff; }
.t-stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 12px; }
.testimonial > p { font-size: 14.5px; color: var(--text); flex: 1; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.t-author strong { display: block; font-size: 14px; color: var(--dark); }
.t-author span { font-size: 12.5px; color: var(--muted); font-weight: 600; }

/* ============ SSS ============ */
.faq { background: var(--bg-soft); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.faq-left { position: sticky; top: 110px; }
.faq-left p { color: var(--muted); margin-bottom: 24px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--primary);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 22px 18px; color: var(--muted); font-size: 14.5px; }

/* ============ İletişim ============ */
.contact {
  background: linear-gradient(150deg, var(--dark) 0%, #1b3459 100%);
  color: #dbe5f3;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 14px; }
.contact-info > p { opacity: 0.8; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.c-item { display: flex; gap: 14px; align-items: flex-start; }
.c-item > span {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 18px;
}
.c-item strong { color: #fff; display: block; font-size: 14px; }
.c-item p { font-size: 14px; opacity: 0.8; }

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { font-size: 22px; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  background: var(--bg-soft);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: #fff; }
.form-note { margin-top: 12px; font-size: 14px; font-weight: 700; color: #1d9e5f; text-align: center; }

/* ============ Footer ============ */
.footer { background: var(--dark); color: #9fb1cc; padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 14px; margin: 16px 0 20px; max-width: 280px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
.socials a:hover { background: var(--primary); }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-col a {
  display: block;
  color: #9fb1cc;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 14px; padding: 4px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 13px;
}

/* ============ WhatsApp ============ */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 200;
  transition: transform 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.05); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .faq-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .topbar-left span:last-child { display: none; }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .hero-selectors { flex-direction: column; }
  .selector-btn { width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 14px; }
}

/* Logo görseli (panelden yüklenen) */
.logo-img { height: 46px; max-width: 220px; object-fit: contain; display: block; }
.footer .logo-img { filter: brightness(0) invert(1); }
