/* ═══════════════════════════════════════════════
   VADİ SÜRÜCÜ KURSU — main.css
   Palette: Teal #0BBCD4 · Navy #1A2B4A · White #FFFFFF
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --teal:        #0BBCD4;
  --teal-dark:   #0899AE;
  --teal-light:  #4DD4E8;
  --teal-dim:    rgba(11,188,212,0.10);
  --teal-glow:   rgba(11,188,212,0.20);
  --navy:        #1A2B4A;
  --navy-deep:   #111E35;
  --navy-mid:    #223160;
  --navy-light:  #2A3F6F;
  --white:       #FFFFFF;
  --off-white:   #F4F7FA;
  --text-body:   #2C3E5A;
  --text-muted:  #6B7B99;
  --text-faint:  #A0AEBF;
  --border:      rgba(26,43,74,0.12);
  --border-dark: rgba(255,255,255,0.10);
  --shadow-sm:   0 2px 8px rgba(26,43,74,0.08);
  --shadow-md:   0 4px 20px rgba(26,43,74,0.12);
  --shadow-lg:   0 12px 40px rgba(26,43,74,0.16);
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --trans:       0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; }

/* ── UTILITIES ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--navy-deep { background: var(--navy-deep); color: var(--white); }
.section--teal { background: var(--teal); color: var(--white); }
.section--off { background: var(--off-white); }

.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-tag::before {
  content: ''; width: 18px; height: 2px; background: var(--teal); border-radius: 1px;
}
.section--dark .section-tag,
.section--navy-deep .section-tag { color: var(--teal-light); }
.section--dark .section-tag::before,
.section--navy-deep .section-tag::before { background: var(--teal-light); }

.section-header { margin-bottom: 56px; }
.section-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.section--dark .section-title,
.section--navy-deep .section-title { color: var(--white); }
.section-desc {
  font-size: 16px; font-weight: 300; color: var(--text-muted);
  line-height: 1.75; max-width: 540px;
}
.section--dark .section-desc,
.section--navy-deep .section-desc { color: rgba(255,255,255,0.6); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  padding: 13px 26px; border-radius: var(--radius);
  border: none; cursor: pointer; transition: all var(--trans);
}
.btn-primary {
  background: var(--teal); color: var(--white);
  box-shadow: 0 4px 16px var(--teal-glow);
}
.btn-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 24px rgba(11,188,212,0.35);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--teal); padding: 12px 24px;
}
.btn-outline:hover { background: var(--teal-dim); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4); padding: 12px 24px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1db954; transform: translateY(-1px); }
.btn-lg { font-size: 15px; padding: 15px 32px; }

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-logo { height: 44px; width: auto; filter: brightness(0) invert(1); }
.gauge-wrap { position: relative; width: 220px; height: 120px; }
.gauge-svg { width: 100%; height: 100%; }
.gauge-bg { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 12; stroke-linecap: round; }
.gauge-fill {
  fill: none; stroke: var(--teal); stroke-width: 12; stroke-linecap: round;
  stroke-dasharray: 314; stroke-dashoffset: 314;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.4,0,0.2,1);
  filter: drop-shadow(0 0 10px rgba(11,188,212,0.7));
}
.gauge-needle {
  position: absolute; bottom: 10px; left: 50%;
  width: 2px; height: 80px;
  background: linear-gradient(to top, var(--teal), transparent);
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-90deg);
  transition: transform 2.2s cubic-bezier(0.4,0,0.2,1);
  border-radius: 1px;
}
.gauge-speed-wrap { display: flex; align-items: baseline; gap: 6px; }
.gauge-speed {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 700; color: var(--teal); line-height: 1;
}
.gauge-unit { font-size: 14px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(17,30,53,0.97);
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.75);
  padding: 7px 14px; border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--teal-light); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta { font-size: 14px; padding: 9px 20px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--trans);
}
.mobile-menu {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 24px 24px; flex-direction: column; gap: 2px; z-index: 499;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px; color: rgba(255,255,255,0.75);
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--trans);
}
.mobile-menu a:hover { color: var(--white); }
.mob-cta {
  margin-top: 12px; text-align: center;
  background: var(--teal); color: var(--white) !important;
  border-radius: var(--radius); padding: 14px !important;
  font-weight: 600; border: none !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--navy-deep);
  padding-top: 68px;
}

/* Real photo background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.28;
}
/* Gradient overlay — navy at bottom, slight teal at top-left */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(11,188,212,0.06) 0%, transparent 50%),
    linear-gradient(to top, var(--navy-deep) 0%, rgba(17,30,53,0.65) 50%, rgba(17,30,53,0.3) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1120px; margin: 0 auto; padding: 80px 24px 80px;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
}
.hero-left {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 20px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.hero-title {
  font-size: clamp(48px, 6.5vw, 82px); font-weight: 700;
  color: var(--white); margin-bottom: 22px;
  line-height: 0.95;
}
.hero-title em {
  font-style: normal; color: var(--teal);
  display: block;
}
.hero-sub {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 460px; margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }
.hero-stats {
  display: flex; gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hstat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 700; color: var(--teal); line-height: 1;
}
.hstat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* Hero Card (right column) */
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(12px);
}
.hero-card-title {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
.quick-form { display: flex; flex-direction: column; gap: 12px; }
.quick-form input,
.quick-form select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 14px; color: var(--white);
  font-family: 'Inter', sans-serif; outline: none;
  transition: border-color var(--trans);
  width: 100%;
}
.quick-form input::placeholder { color: rgba(255,255,255,0.35); }
.quick-form input:focus,
.quick-form select:focus { border-color: var(--teal); }
.quick-form select option { background: var(--navy); }
.quick-form .btn { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
.hero-card-note {
  font-size: 11px; color: rgba(255,255,255,0.35);
  text-align: center; margin-top: 12px; line-height: 1.6;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.55);
}
.trust-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--teal-dim);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 2; }
.trust-item strong { color: var(--white); font-weight: 600; }

/* ── WHY SECTION ── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.why-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background var(--trans);
}
.why-card:hover { background: var(--off-white); }
.why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--teal); fill: none; stroke-width: 2; }
.why-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── COURSES ── */
.license-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(145px, 1fr)); gap: 12px;
  margin-bottom: 40px;
}
.license-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px; text-align: center;
  cursor: pointer; transition: all var(--trans);
  position: relative; overflow: hidden;
}
.license-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
}
.license-card:hover::after, .license-card.active::after { transform: scaleX(1); }
.license-card:hover, .license-card.active {
  border-color: var(--teal);
  box-shadow: 0 4px 20px var(--teal-glow);
  transform: translateY(-3px);
}
.lic-letter {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px; font-weight: 700; color: var(--teal); line-height: 1;
  margin-bottom: 6px;
}
.lic-name { font-size: 11px; color: var(--text-muted); font-weight: 400; line-height: 1.4; }
.lic-badge {
  display: inline-block; font-size: 9px; font-weight: 700;
  background: var(--teal); color: var(--white);
  border-radius: 4px; padding: 2px 7px; margin-top: 7px;
  letter-spacing: 0.05em;
}

/* Course detail panel */
.course-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.cd-image { position: relative; min-height: 320px; }
.cd-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.cd-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(244,247,250,0.95) 100%);
}
.cd-info { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.cd-info h3 { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cd-info .price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px; font-weight: 700; color: var(--teal); line-height: 1;
  margin: 12px 0 20px;
}
.cd-info .price span { font-size: 18px; color: var(--text-muted); }
.cd-checklist { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.cd-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-body);
}
.cd-check::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── GALLERY / REAL PHOTOS ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
  border-radius: var(--radius-lg); overflow: hidden;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,30,53,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--trans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 12px; font-weight: 600; color: var(--white);
  letter-spacing: 0.05em;
}

/* ── AI SECTION ── */
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ai-visual {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 24px;
  position: relative;
}
.ai-badge-top {
  position: absolute; top: -14px; left: 24px;
  background: var(--teal); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 20px;
}
.chat-msg {
  border-radius: 10px; padding: 11px 14px;
  font-size: 13px; line-height: 1.6; margin-bottom: 8px; max-width: 88%;
}
.chat-msg.bot {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.8);
  border-bottom-left-radius: 3px;
}
.chat-msg.user {
  background: var(--teal-dim);
  border: 1px solid rgba(11,188,212,0.25);
  color: var(--white);
  border-bottom-right-radius: 3px;
  margin-left: auto;
}
.chat-typing {
  display: flex; gap: 4px; align-items: center;
  padding: 10px 14px; background: rgba(255,255,255,0.07);
  border-radius: 10px; width: fit-content;
}
.chat-typing span {
  width: 6px; height: 6px; background: rgba(255,255,255,0.4); border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,100%{transform:translateY(0);opacity:0.4} 50%{transform:translateY(-4px);opacity:1} }

.ai-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.ai-feat {
  display: flex; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5;
}
.ai-feat-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--teal-dim); border: 1px solid rgba(11,188,212,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ai-feat-icon svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2; }

/* ── INSTRUCTORS ── */
.instructors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.instructor-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--trans), transform var(--trans);
}
.instructor-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.instructor-photo {
  height: 200px; overflow: hidden; position: relative;
  background: var(--off-white);
}
.instructor-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform 0.4s ease;
}
.instructor-card:hover .instructor-photo img { transform: scale(1.04); }
.instructor-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px; font-weight: 700; color: var(--teal);
}
.instructor-info { padding: 20px; }
.instructor-info h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.instructor-title { font-size: 12px; color: var(--teal); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 10px; }
.instructor-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.instructor-stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px;
}
.istat { text-align: center; flex: 1; }
.istat:not(:last-child) { border-right: 1px solid var(--border); }
.istat-n { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); }
.istat-l { font-size: 10px; color: var(--text-faint); }

/* ── REGISTRATION ── */
.reg-wrapper {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.reg-steps {
  display: flex; background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.reg-step {
  flex: 1; padding: 18px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  border-right: 1px solid var(--border);
  cursor: pointer; transition: background var(--trans);
}
.reg-step:last-child { border-right: none; }
.reg-step.active { background: var(--white); }
.reg-step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--border); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; transition: all var(--trans);
}
.reg-step.active .reg-step-num { background: var(--teal); color: var(--white); }
.reg-step.done .reg-step-num { background: #22c55e; color: var(--white); }
.reg-step-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.reg-step.active .reg-step-label { color: var(--navy); font-weight: 600; }
.reg-body { padding: 40px; }
.reg-panel { display: none; }
.reg-panel.active { display: block; }
.reg-panel h3 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.reg-panel > p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: 13px; font-weight: 500; color: var(--text-body); }
.form-input {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
  font-size: 14px; color: var(--text-body); font-family: 'Inter', sans-serif;
  outline: none; transition: border-color var(--trans), box-shadow var(--trans); width: 100%;
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-dim); }

.license-opts { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 10px; }
.license-opt {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 16px 10px; text-align: center; cursor: pointer; transition: all var(--trans);
}
.license-opt:hover { border-color: var(--teal); }
.license-opt.selected { border-color: var(--teal); background: var(--teal-dim); }
.lo-letter { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 700; color: var(--teal); }
.lo-name { font-size: 10px; color: var(--text-muted); margin-top: 3px; line-height: 1.4; }

.upload-zone {
  border: 2px dashed var(--teal); border-radius: var(--radius-lg);
  padding: 40px 24px; text-align: center; cursor: pointer;
  transition: background var(--trans); grid-column: 1/-1;
}
.upload-zone:hover { background: var(--teal-dim); }
.upload-zone p { font-size: 14px; color: var(--text-muted); margin-top: 10px; }
.upload-zone small { font-size: 12px; color: var(--text-faint); }
.upload-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; grid-column: 1/-1; }
.upload-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 13px; color: var(--text-muted);
}
.upload-check {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
}
.upload-item.done .upload-check { background: #22c55e; border-color: #22c55e; color: var(--white); }

.confirm-box {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; margin-bottom: 20px;
}
.confirm-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row span:first-child { color: var(--text-muted); }
.confirm-row strong { color: var(--navy); font-weight: 600; }

.kvkk-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 16px;
}
.kvkk-row input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--teal); cursor: pointer; }
.kvkk-row label { font-size: 13px; color: var(--text-muted); line-height: 1.6; cursor: pointer; }
.kvkk-row a { color: var(--teal); }

.reg-actions { display: flex; justify-content: flex-end; gap: 12px; margin-top: 32px; }
.btn-back {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); padding: 12px 22px;
  border-radius: var(--radius); font-size: 14px; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all var(--trans);
}
.btn-back:hover { color: var(--navy); border-color: var(--navy); }
.btn-next { border: none; font-family: 'Inter', sans-serif; }

.success-panel { text-align: center; padding: 32px 0; }
.success-icon { font-size: 64px; margin-bottom: 20px; }
.success-panel h3 { font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.success-panel p { font-size: 15px; color: var(--text-muted); max-width: 400px; margin: 0 auto 28px; }

/* ── TESTIMONIALS ── */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.test-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.test-stars { color: var(--teal); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.test-quote { font-size: 14px; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal-dim); border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 15px;
  font-weight: 700; color: var(--teal);
  overflow: hidden;
}
.test-avatar img { width: 100%; height: 100%; object-fit: cover; }
.test-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.test-meta { font-size: 11px; color: var(--teal); font-weight: 500; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; transition: background var(--trans);
  gap: 12px;
}
.faq-q:hover { background: var(--off-white); }
.faq-q span { font-size: 15px; font-weight: 500; color: var(--navy); }
.faq-toggle {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal-dim); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; transition: transform var(--trans), background var(--trans);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--teal); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding var(--trans); padding: 0 22px; }
.faq-item.open .faq-a { max-height: 240px; padding: 0 22px 18px; }
.faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ── CTA BANNER ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 60%, rgba(11,188,212,0.15) 100%);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(11,188,212,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.cta-section h2 { font-size: clamp(32px,4vw,52px); font-weight: 700; color: var(--white); margin-bottom: 14px; position: relative; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; position: relative; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; }

/* ── MAP SECTION ── */
.map-section { background: var(--off-white); }
.locations-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; margin-bottom: 32px; }
.loc-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px 14px;
  cursor: pointer; transition: all var(--trans); text-align: center;
}
.loc-card:hover, .loc-card.active { border-color: var(--teal); box-shadow: 0 4px 16px var(--teal-glow); }
.loc-pin { font-size: 22px; margin-bottom: 7px; }
.loc-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.loc-sub { font-size: 11px; color: var(--text-muted); }
.map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  height: 380px; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px; flex-direction: column; gap: 10px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ── */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge-meb, .badge-val {
  font-size: 10px; font-weight: 600; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(11,188,212,0.12);
  border: 1px solid rgba(11,188,212,0.25);
  color: var(--teal-light);
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--trans); }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.footer-contact svg { flex-shrink: 0; margin-top: 2px; stroke: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color var(--trans); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform var(--trans), box-shadow var(--trans);
}
.wa-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.1); }
}
.wa-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: var(--white);
  font-size: 12px; font-weight: 500; white-space: nowrap;
  padding: 6px 12px; border-radius: var(--radius);
  opacity: 0; pointer-events: none; transition: opacity var(--trans);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── SCROLL ANIMATIONS ── */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; max-width: 640px; }
  .hero-card { display: none; }
  .ai-grid { grid-template-columns: 1fr; }
  .instructors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .course-detail { grid-template-columns: 1fr; }
  .cd-image { min-height: 220px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .upload-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px; }
  .gallery-item:first-child { grid-row: auto; }
  .instructors-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
  .reg-body { padding: 24px; }
}
@media (max-width: 480px) {
  .instructors-grid { grid-template-columns: 1fr; }
  .gallery-grid { display: flex; flex-direction: column; }
  .gallery-item { height: 200px; }
  .gallery-item:first-child { height: 220px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
