/* =========================================================
   AKBEM - Kurumsal Site Stil Dosyası
   Renk Paleti: Lacivert (güven), Açık Mavi (teknoloji), Beyaz, Altın vurgu
   ========================================================= */

:root {
  /* Temel marka renkleri - yönetim panelinden (Site Ayarları > Görünüm) değiştirilebilir */
  --navy-950: #0a1f38;
  --navy-900: #0f2a4a;
  --blue-500: #2e86c1;
  --gold-500: #c9a227;
  --accent-500: #c0392b;

  /* Türetilmiş tonlar (otomatik hesaplanır) */
  --navy-800: color-mix(in srgb, var(--navy-900) 80%, white);
  --navy-700: color-mix(in srgb, var(--navy-900) 62%, white);
  --blue-100: color-mix(in srgb, var(--blue-500) 14%, white);
  --gold-600: color-mix(in srgb, var(--gold-500) 82%, black);
  --gold-100: color-mix(in srgb, var(--gold-500) 24%, white);
  --accent-600: color-mix(in srgb, var(--accent-500) 78%, black);
  --accent-400: color-mix(in srgb, var(--accent-500) 55%, white);
  --accent-100: color-mix(in srgb, var(--accent-500) 14%, white);
  --ink: #1c2b3a;
  --muted: #5b6b7c;
  --line: #e3e9ef;
  --bg-soft: #f5f8fb;
  --white: #ffffff;
  --success: #1f8a4c;
  --danger: #c0392b;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-btn: 4px;
  --shadow: 0 10px 30px rgba(15, 42, 74, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 42, 74, 0.14);
  --container: 1180px;
  --font: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, 'Times New Roman', 'Noto Serif', 'Liberation Serif', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; font-family: var(--font-serif); font-weight: 700; color: var(--navy-900); line-height: 1.25; }
p { margin: 0 0 1em; color: var(--muted); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.icon { width: 22px; height: 22px; }
.icon-sm { width: 16px; height: 16px; flex-shrink: 0; }
.icon-lg { width: 34px; height: 34px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-btn); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .6px;
  border: 2px solid transparent; cursor: pointer; transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent-500); color: var(--white); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-accent { background: transparent; border-color: var(--accent-500); color: var(--accent-500); }
.btn-outline-accent:hover { background: var(--accent-500); color: var(--white); }
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn[disabled] { opacity: .6; cursor: not-allowed; }

/* ---------- Brand accent stripe ---------- */
.brand-stripe { height: 4px; background: var(--accent-500); }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--navy-950); color: #cfe0f2; font-size: 13px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar-info { display: flex; gap: 22px; }
.topbar-info a, .topbar-links a { display: inline-flex; align-items: center; gap: 6px; color: #cfe0f2; }
.topbar-info a:hover, .topbar-links a:hover { color: var(--gold-500); }
.topbar-links { display: flex; gap: 18px; }
.topbar-admin { opacity: .85; }

/* ---------- Header / Nav ---------- */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 6px 20px rgba(10,31,56,.10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 104px; gap: 24px; }
.brand img { height: 84px; width: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block; padding: 10px 14px; border-radius: 8px; font-weight: 600; font-size: 14.5px;
  color: var(--navy-800); transition: background .2s, color .2s; position: relative;
}
.main-nav a:hover, .main-nav a.active { background: var(--blue-100); color: var(--navy-900); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 3px; border-radius: 2px;
  background: var(--accent-500);
}
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--navy-900); padding: 6px; }

/* ---------- Hero (split: metin solda, görsel sağda) ---------- */
.hero-split { background: linear-gradient(180deg, #faf9f7, #ffffff); padding: 64px 0 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding-bottom: 56px; }
.badge { display: inline-flex; align-items: center; gap: 8px; background: color-mix(in srgb, var(--accent-500) 10%, transparent); border: 1px solid color-mix(in srgb, var(--accent-500) 40%, transparent); color: var(--accent-500); padding: 7px 16px; border-radius: var(--radius-btn); font-size: 12.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 22px; }
.hero-split h1 { color: var(--navy-900); font-size: clamp(32px, 4.6vw, 52px); margin-bottom: 16px; line-height: 1.18; }
.hero-split .lead { color: var(--muted); font-size: 16px; max-width: 480px; margin-bottom: 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media::before {
  content: ""; position: absolute; inset: 6% -8% 10% 10%; background: color-mix(in srgb, var(--accent-500) 8%, transparent);
  border-radius: var(--radius); z-index: 0;
}
.hero-media img, .hero-media .media-box { position: relative; z-index: 1; border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }

/* ---------- Bilgi şeridi (hero altı 3 sütun) ---------- */
.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); }
.info-cell { padding: 30px 36px; border-left: 4px solid var(--accent-500); }
.info-cell:nth-child(1) { background: var(--bg-soft); }
.info-cell:nth-child(2) { background: #ececef; }
.info-cell:nth-child(3) { background: var(--navy-900); border-left-color: var(--gold-500); }
.info-cell h4 { font-size: 15px; margin: 0 0 8px; color: var(--navy-900); }
.info-cell:nth-child(3) h4 { color: var(--white); }
.info-cell p { font-size: 13.5px; margin: 0; }
.info-cell:nth-child(3) p { color: #c7d2e0; }

/* ---------- Çerçeveli görsel (Hakkımızda vb.) ---------- */
.framed-media { position: relative; }
.framed-media::before {
  content: ""; position: absolute; left: -16px; bottom: -16px; width: 62%; height: 55%;
  border: 3px solid var(--accent-500); z-index: 0;
}
.framed-media img, .framed-media .media-box { position: relative; z-index: 1; }

/* ---------- Açık zeminli istatistik şeridi ---------- */
.stats-row-light { background: var(--white); padding: 54px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-row-light .stats-grid { grid-template-columns: repeat(4, 1fr); }
.stats-row-light .stat-item { border-right: 1px solid var(--line); }
.stats-row-light .stat-item:last-child { border-right: none; }
.stats-row-light .stat-value { font-family: var(--font-serif); color: var(--navy-900); }
.stats-row-light .stat-value .suffix { color: var(--accent-500); }
.stats-row-light .stat-label { color: var(--muted); }
.stats-row-light .stat-icon { display: none; }

/* ---------- Tam genişlik bildirim afişi ---------- */
.banner-statement {
  position: relative; background-size: cover; background-position: center; color: var(--white);
  padding: 90px 0; text-align: center; overflow: hidden;
}
.banner-statement::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, color-mix(in srgb, var(--navy-950) 92%, black), color-mix(in srgb, var(--navy-900) 80%, transparent));
}
.banner-statement > .container { position: relative; z-index: 1; }
.banner-statement h2 { color: var(--white); }
.banner-statement p { color: #d7dee7; max-width: 640px; margin: 0 auto 26px; }

/* ---------- Kurdele başlıklı kart (branş / kategori) ---------- */
.ribbon-card { background: var(--white); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; height: 100%; transition: transform .25s ease, box-shadow .25s ease; }
.ribbon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ribbon-card .ribbon-head { background: var(--navy-900); color: var(--white); text-align: center; padding: 14px 14px; font-family: var(--font-serif); font-size: 17px; font-weight: 700; }
.ribbon-card .ribbon-media { height: 150px; background: linear-gradient(135deg, var(--bg-soft), var(--white)); display: flex; align-items: center; justify-content: center; color: var(--accent-500); overflow: hidden; }
.ribbon-card .ribbon-media img { width: 100%; height: 100%; object-fit: cover; }
.ribbon-card .ribbon-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.ribbon-card .ribbon-body p { font-size: 13.5px; flex: 1; }
.ribbon-card .btn { align-self: flex-start; }

/* ---------- Süreç / adım paneli (kariyer mimarisi, belgelendirme süreci) ---------- */
.process-panel { display: grid; grid-template-columns: 270px 1fr; border: 1px solid var(--line); }
.process-intro { background: var(--bg-soft); padding: 36px 30px; }
.process-intro p { margin-bottom: 0; }
.process-steps { display: grid; grid-template-columns: repeat(2, 1fr); }
.process-steps .jstep { padding: 26px 24px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); display: flex; gap: 14px; }
.process-steps .jstep:nth-child(-n+2) { border-top: none; }
.process-steps .jstep:nth-child(odd) { border-left: none; }
.jstep .icon-circle { background: transparent; border: 2px solid var(--accent-500); color: var(--accent-500); width: 44px; height: 44px; }
.jstep-body h4 { font-size: 15px; margin: 0 0 6px; }
.jstep-body p { font-size: 13.5px; margin: 0; }

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy {
  background:
    radial-gradient(circle at 92% 8%, color-mix(in srgb, var(--accent-500) 16%, transparent), transparent 42%),
    radial-gradient(circle at 4% 96%, color-mix(in srgb, var(--gold-500) 12%, transparent), transparent 40%),
    var(--navy-900);
  color: #cddceb;
}
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: #a9bfd4; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.eyebrow { display: inline-block; color: var(--gold-600); font-weight: 800; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 10px; }
.section-navy .eyebrow { color: var(--gold-500); }
.section-head h2 { font-size: clamp(28px, 3.6vw, 38px); }
.section-head.align-left { margin: 0 0 44px; text-align: left; }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px; box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 58px; height: 58px; border-radius: 14px; background: var(--bg-soft); color: var(--accent-500);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.icon-circle {
  width: 46px; height: 46px; border-radius: 50%; background: var(--accent-500); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 14.5px; }

.pillar-card { text-align: left; }
.pillar-card.on-dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.pillar-card.on-dark .card-icon { background: rgba(201,162,39,.15); color: var(--gold-500); }
.pillar-card.on-dark h3 { color: var(--white); }
.pillar-card.on-dark p { color: #a9bfd4; }

/* ---------- Stats ---------- */
.stats-strip {
  background:
    repeating-linear-gradient(120deg, rgba(255,255,255,.025) 0 2px, transparent 2px 34px),
    radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--accent-500) 14%, transparent), transparent 45%),
    var(--navy-950);
  color: var(--white); padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item .stat-icon { color: var(--gold-500); margin: 0 auto 12px; }
.stat-value { font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: var(--white); line-height: 1; }
.stat-value .suffix { color: var(--gold-500); }
.stat-label { color: #a9bfd4; font-size: 14px; margin-top: 8px; }

/* ---------- Partners ---------- */
.partners-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; align-items: stretch; }
.partner-item {
  display: flex; align-items: center; justify-content: center; height: 88px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; font-weight: 700; color: var(--navy-800);
  text-align: center; font-size: 13px; filter: grayscale(1); opacity: .75; transition: all .2s;
}
.partner-item:hover { filter: none; opacity: 1; box-shadow: var(--shadow); }
.partner-item img { max-height: 44px; }

/* ---------- Compare list (Rehberlik değil teşhis, vb.) ---------- */
.compare-list { display: grid; gap: 18px; }
.compare-item { display: flex; gap: 18px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.compare-item .card-icon { flex-shrink: 0; margin-bottom: 0; }
.compare-item h4 { margin-bottom: 6px; font-size: 17px; }
.compare-item p { margin: 0; font-size: 14.5px; }

/* ---------- Two-column content w/ image ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img, .split .media-box { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.media-box { background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); min-height: 320px; display: flex; align-items: center; justify-content: center; color: var(--gold-500); }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ---------- Courses / Programs ---------- */
.category-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.category-tabs a { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); font-weight: 700; font-size: 13.5px; color: var(--navy-800); }
.category-tabs a:hover, .category-tabs a.active { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.category-block { margin-bottom: 56px; scroll-margin-top: 110px; }
.category-block-head { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.category-block-head .card-icon { margin-bottom: 0; }
.category-block-head p { margin: 4px 0 0; }
.course-card { display: flex; flex-direction: column; height: 100%; }
.course-card .course-thumb { height: 150px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--blue-100), var(--white)); display: flex; align-items: center; justify-content: center; color: var(--navy-700); margin-bottom: 18px; overflow: hidden; }
.course-card .course-thumb img { width: 100%; height: 100%; object-fit: cover; }
.course-meta { display: flex; gap: 14px; font-size: 12.5px; color: var(--muted); margin: 10px 0; flex-wrap: wrap; }
.course-meta span { display: inline-flex; align-items: center; gap: 5px; }
.featured-tag { display: inline-block; background: var(--gold-100); color: var(--gold-600); font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; align-self: flex-start; }
.course-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 4px; cursor: pointer; font-weight: 700; color: var(--navy-900); gap: 16px; }
.faq-q .icon { transition: transform .2s; flex-shrink: 0; color: var(--gold-600); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 4px 20px; }

/* ---------- Stories ---------- */
.story-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.story-card .quote { color: var(--gold-500); margin-bottom: 14px; }
.story-person { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.story-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--navy-800); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; overflow: hidden; flex-shrink: 0; }
.story-avatar img { width: 100%; height: 100%; object-fit: cover; }
.story-person strong { display: block; color: var(--navy-900); font-size: 14.5px; }
.story-person span { font-size: 13px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); color: var(--white); border-radius: var(--radius); padding: 60px 44px; text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, color-mix(in srgb, var(--accent-500) 30%, transparent), transparent 55%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; }
.contact-info-card { background: var(--navy-950); color: var(--white); border-radius: var(--radius); padding: 36px; }
.contact-info-card h3 { color: var(--white); }
.contact-info-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon { color: var(--gold-500); flex-shrink: 0; }
.contact-info-item strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 2px; }
.contact-info-item span, .contact-info-item div { color: #b9cbdd; font-size: 14px; }
.map-embed { border-radius: var(--radius-sm); overflow: hidden; margin-top: 22px; border: 1px solid rgba(255,255,255,.15); }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 13.5px; color: var(--navy-900); margin-bottom: 8px; }
.form-group .req { color: var(--danger); }
input[type=text], input[type=email], input[type=tel], input[type=password], input[type=date], input[type=number], select, textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 14.5px;
  font-family: var(--font); color: var(--ink); background: var(--white); transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue-500); }
textarea { resize: vertical; min-height: 120px; }

/* ---------- Flash messages ---------- */
.flash-wrap { padding-top: 22px; }
.flash { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 600; margin-bottom: 12px; }
.flash-success { background: #e9f7ef; color: var(--success); border: 1px solid #bfe8cf; }
.flash-error { background: #fdecea; color: var(--danger); border: 1px solid #f5c6c0; }

/* ---------- Page header (inner pages) ---------- */
.page-hero { background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); color: var(--white); padding: 60px 0; }
.page-hero .eyebrow { color: var(--gold-500); }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 10px; }
.page-hero p { color: #b9cbdd; max-width: 640px; margin: 0; }
.breadcrumb { font-size: 13px; color: #8fa9c2; margin-bottom: 14px; }
.breadcrumb a { color: #cfe0f2; }
.breadcrumb a:hover { color: var(--gold-500); }

/* ---------- Verification tool ---------- */
.verify-box { max-width: 620px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.verify-form { display: flex; gap: 10px; }
.verify-form input { flex: 1; }
.verify-result { margin-top: 26px; padding: 22px; border-radius: var(--radius-sm); }
.verify-result.valid { background: #e9f7ef; border: 1px solid #bfe8cf; }
.verify-result.invalid { background: #fdecea; border: 1px solid #f5c6c0; }
.verify-result dl { display: grid; grid-template-columns: 140px 1fr; gap: 8px 14px; margin: 12px 0 0; font-size: 14px; }
.verify-result dt { font-weight: 700; color: var(--navy-900); }
.verify-result dd { margin: 0; color: var(--ink); }

/* ---------- Exam schedule table ---------- */
.table-clean { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.table-clean th, .table-clean td { padding: 15px 18px; text-align: left; font-size: 14.5px; }
.table-clean th { background: var(--navy-900); color: var(--white); font-weight: 700; }
.table-clean tr:nth-child(even) td { background: var(--bg-soft); }

/* ---------- Footer ---------- */
.site-footer { background: color-mix(in srgb, var(--navy-950) 92%, black); color: #a9bfd4; padding-top: 68px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo { height: 66px; margin-bottom: 16px; }
.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col a { color: #a9bfd4; font-size: 14px; }
.footer-col a:hover { color: var(--gold-500); }
.footer-contact li { display: flex; gap: 12px; align-items: center; color: #cddceb; font-size: 13.5px; }
.footer-contact .icon-circle { width: 32px; height: 32px; background: var(--accent-500); }
.footer-link-icon { display: inline-flex; align-items: center; gap: 10px; margin-top: 10px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .4px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-badge { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--white); }
.social-badge:hover { background: var(--gold-500); color: var(--navy-950); }
.footer-bottom { background: rgba(0,0,0,.25); padding: 20px 0; text-align: center; font-size: 13px; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- WhatsApp yüzen buton ---------- */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 96; transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .icon { width: 30px; height: 30px; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-900); color: var(--gold-500); border: none; display: none; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-md); z-index: 90;
}
.back-to-top.show { display: flex; }
.has-whatsapp .back-to-top { bottom: 96px; }
.rotate-up { transform: rotate(-90deg); }

@media (max-width: 768px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .whatsapp-float .icon { width: 26px; height: 26px; }
  .has-whatsapp .back-to-top { bottom: 80px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .info-strip { grid-template-columns: 1fr; }
  .process-panel { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar-info a span, .topbar { font-size: 12px; }
  .topbar-links a:not(.topbar-admin) { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 104px 0 0 0; background: var(--white); transform: translateX(100%);
    transition: transform .25s ease; overflow-y: auto; padding: 20px; z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { padding: 14px 16px; font-size: 16px; }
  .header-actions .btn-sm { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-row-light .stat-item { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
  section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .verify-form { flex-direction: column; }
  .hero-split { padding-top: 40px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps .jstep { border-left: none !important; border-top: 1px solid var(--line) !important; }
  .process-steps .jstep:first-child { border-top: none !important; }
  .framed-media::before { display: none; }
}
