/* ═══════════════════════════════════════════
   Tu&Ci Akademi – Mor + Sarı + Beyaz Tema
═══════════════════════════════════════════ */
:root {
  --purple:    #6c2eb9;
  --purple-dk: #4e1f8a;
  --purple-lt: #9b59d4;
  --yellow:    #f5c518;
  --yellow-lt: #ffe066;
  --yellow-dk: #c9a000;
  --white:     #ffffff;
  --bg:        #faf8ff;
  --surface:   #ffffff;
  --surface2:  #f3eeff;
  --border:    #e5d9f7;
  --text:      #1a0a3d;
  --muted:     #6b5b8a;
  --radius:    14px;
  --nav-h:     72px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* Ana Logo Bağlantısı */
.nav-logo-text {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  text-decoration: none;
  /* Logo kısmına o karakteristik, fonetik havayı veren özel tırnaklı font */
  font-family: var(--font-display); 
  font-style: italic; /* İtalik duruş sıradanlıktan tamamen çıkarır */
  font-weight: 900; /* Harfler dolgun ve belirgin olsun */
  font-size: 34px;
  letter-spacing: -1px;
  transition: all 0.3s ease;
}

/* "Tu" - Koyu Asil Mor */
.logo-tu {
  color: var(--purple-dk);
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
}

/* "Ci" - Yumuşak ve Çiğ Durmayan Altın Sarısı */
.logo-ci {
  /* Arka plan kırpma efektlerinde tarayıcı harfi kesmesin diye padding ve flex ekledik */
  display: inline-flex;
  align-items: center;
  padding-right: 6px; /* İtalik eğimden dolayı sağdan kırpılmayı önler */
  padding-left: 2px;
  box-sizing: content-box;
  
  /* Renk Geçişi */
  background: linear-gradient(180deg, var(--yellow) 10%, var(--yellow-dk) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Ortadaki "&" İşareti - "Akademi" ile Aynı Koyu Ton */
.logo-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body); /* Düz fonta geçerek dengeyi sağlıyoruz */
  font-style: normal; /* İtalik olmasın, dik dursun */
  font-size: 13px;
  font-weight: 700;
  
  color: var(--text);
  background-color: var(--surface);
  border: 1.5px solid var(--text); /* İnce ve zarif bir çember */
  
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 6px;
  align-self: center;
  transform: translateY(-1px); /* Görsel olarak harflerin ortasına hizalama */
}

/* "Akademi" Alt Yazısı - Ağır, Ciddiyet Veren Düz Ton */
.logo-sub {
  font-family: var(--font-body); /* Modern, düz gövde fontu */
  font-style: normal; /* Dik ve kurumsal */
  font-size: 12px;
  font-weight: 700;
  color: var(--text); /* İstediğin o cırtlak olmayan ağır siyah/koyu ton */
  letter-spacing: 2px; /* Harflerin arası açık, kurumsal marka havası */
  margin-left: 8px;
  align-self: flex-end;
  padding-bottom: 6px;
  text-transform: uppercase; /* Tamamı büyük harf */
  opacity: 0.9;
}

/* Hover Efekti - Üzerine gelince renkler hafifçe parlasın */
.nav-logo-text:hover {
  transform: translateY(-1px);
}
.nav-logo-text:hover .logo-tu {
  color: var(--purple);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
.logo-text { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; color: var(--text); }
.logo-text span { color: var(--purple); }
.section-tag { display: inline-block; background: var(--yellow); color: var(--text); font-size: .75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; color: var(--text); }
.section-title em { font-style: italic; color: var(--purple); }
.section-header.center { text-align: center; margin-bottom: 52px; }
.section-header.center p { color: var(--muted); margin-top: 12px; font-size: 1rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-size: .95rem; font-weight: 700; cursor: pointer; border: none; transition: all .22s; white-space: nowrap; font-family: var(--font-body); }
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,46,185,.35); }
.btn-yellow { background: var(--yellow); color: var(--text); }
.btn-yellow:hover { background: var(--yellow-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,.45); }
.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: var(--purple); color: #fff; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1ebe58; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-ghost { background: transparent; color: var(--muted); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── ALERTS ── */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: .9rem; }
.alert-success { background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; }
.alert-error { background: #fff5f5; border: 1px solid #fc8181; color: #9b2c2c; }

/* ══ NAVBAR ══ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); transition: background .3s, box-shadow .3s; }
.navbar.scrolled { background: rgba(255,255,255,.97); backdrop-filter: blur(16px); box-shadow: 0 2px 0 var(--border); }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 46px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: .9rem; font-weight: 600; color: var(--muted); transition: all .2s; }
.nav-links a:hover { color: var(--purple); background: var(--surface2); }
.nav-links .nav-cta { background: var(--purple); color: #fff; padding: 9px 22px; border-radius: 50px; }
.nav-links .nav-cta:hover { background: var(--purple-dk); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all .3s; }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(255,255,255,.98); border-bottom: 2px solid var(--border); z-index: 999; padding: 16px 24px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 1.05rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); }

/* ══ HERO ══ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #f8f4ff 0%, #ece3ff 40%, #fffbe0 100%); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(248,244,255,.96) 40%, rgba(255,251,224,.55)); }
.hero-shape1 { position: absolute; top: -100px; right: -100px; width: 550px; height: 550px; border-radius: 50%; background: radial-gradient(circle, rgba(108,46,185,.14) 0%, transparent 70%); pointer-events: none; }
.hero-shape2 { position: absolute; bottom: -150px; left: -100px; width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle, rgba(245,197,24,.2) 0%, transparent 70%); pointer-events: none; }
.hero-dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(108,46,185,.1) 1.5px, transparent 1.5px); background-size: 32px 32px; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 24px; padding-top: var(--nav-h); display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; min-height: 100vh; }
.hero-left { animation: fadeUp .9s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow); color: var(--text); padding: 7px 18px; border-radius: 50px; font-size: .82rem; font-weight: 800; letter-spacing: .5px; margin-bottom: 24px; box-shadow: 0 4px 14px rgba(245,197,24,.4); }
.hero-title { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; line-height: 1.06; margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--purple); }
.hero-title .yl { color: var(--yellow-dk); }
.hero-sub { font-size: 1.05rem; color: var(--muted); margin-bottom: 36px; line-height: 1.75; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; padding-top: 28px; border-top: 2px solid var(--border); }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--purple); line-height: 1; }
.stat-label { font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Hero sağ kart */
.hero-right { position: relative; animation: fadeUp 1.1s ease both; }
.hero-card { background: #fff; border-radius: 24px; padding: 32px; box-shadow: 0 24px 64px rgba(108,46,185,.18); border: 2px solid var(--border); position: relative; overflow: hidden; }
.hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--purple), var(--yellow)); }
.hero-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; margin-bottom: 20px; color: var(--text); }
.hero-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hero-features li { display: flex; align-items: center; gap: 12px; font-size: .94rem; font-weight: 500; color: var(--text); }
.feat-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; box-shadow: 0 2px 8px rgba(245,197,24,.5); }
.hero-card-footer { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; gap: 12px; }

/* ══ HAKKIMIZDA ══ */
.about-section { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; height: 400px; background: var(--surface2); border: 2px solid var(--border); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-main.placeholder { display: flex; align-items: center; justify-content: center; }
.about-img-main.placeholder::after { content: '📷 Resim ekleyin'; color: var(--muted); font-size: .9rem; }
.about-blob { position: absolute; top: -20px; left: -20px; width: 120px; height: 120px; border-radius: 20px; background: linear-gradient(135deg, var(--purple), var(--purple-lt)); display: flex; align-items: center; justify-content: center; flex-direction: column; box-shadow: 0 8px 32px rgba(108,46,185,.3); }
.about-blob span:first-child { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: #fff; line-height: 1; }
.about-blob span:last-child { font-size: .68rem; color: rgba(255,255,255,.8); text-transform: uppercase; font-weight: 700; text-align: center; }
.about-accent { position: absolute; bottom: -16px; right: -16px; background: var(--yellow); border-radius: 14px; padding: 12px 18px; font-weight: 800; font-size: .85rem; color: var(--text); box-shadow: 0 6px 20px rgba(245,197,24,.4); }
.about-text p { color: var(--muted); margin-bottom: 14px; line-height: 1.75; }
.about-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 32px; }
.pill { background: var(--surface2); border: 1.5px solid var(--border); color: var(--purple); padding: 6px 16px; border-radius: 50px; font-size: .83rem; font-weight: 700; }

/* ══ EĞİTMENLER (ana sayfa özet) ══ */
.trainers-home-section { background: var(--bg); }
.trainers-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.trainer-home-card { background: #fff; border-radius: 24px; overflow: hidden; border: 2px solid var(--border); box-shadow: 0 8px 32px rgba(108,46,185,.08); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.trainer-home-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(108,46,185,.16); }
.trainer-home-photo { height: 240px; overflow: hidden; background: var(--surface2); position: relative; }
.trainer-home-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.trainer-home-card:hover .trainer-home-photo img { transform: scale(1.04); }
.trainer-home-photo.placeholder { display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.trainer-home-badge { position: absolute; top: 14px; left: 14px; padding: 5px 14px; border-radius: 50px; font-size: .72rem; font-weight: 800; letter-spacing: .5px; }
.trainer-home-badge.edu { background: var(--yellow); color: var(--text); }
.trainer-home-badge.psy { background: var(--purple); color: #fff; }
.trainer-home-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.trainer-home-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.trainer-home-title { color: var(--purple); font-size: .9rem; font-weight: 600; margin-bottom: 14px; }
.trainer-home-desc { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; flex: 1; }
.trainer-home-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.trainer-tag { background: var(--surface2); border: 1.5px solid var(--border); color: var(--purple); padding: 4px 12px; border-radius: 8px; font-size: .78rem; font-weight: 700; }

/* ══ KURSLAR ══ */
.courses-section { background: linear-gradient(135deg, var(--purple-dk) 0%, var(--purple) 100%); position: relative; overflow: hidden; }
.courses-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.courses-section .section-tag { background: var(--yellow); color: var(--text); }
.courses-section .section-title { color: #fff; }
.courses-section .section-title em { color: var(--yellow-lt); }
.courses-section .section-header p { color: rgba(255,255,255,.72); }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.course-card { background: rgba(255,255,255,.1); backdrop-filter: blur(12px); border: 1.5px solid rgba(255,255,255,.2); border-radius: 20px; padding: 28px; transition: all .25s; }
.course-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); border-color: var(--yellow); }
.course-icon { font-size: 2.2rem; margin-bottom: 14px; }
.course-card h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.course-card p { color: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.6; margin-bottom: 18px; }
.course-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.course-tags span { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); padding: 3px 10px; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.course-link { color: var(--yellow-lt); font-size: .88rem; font-weight: 700; }
.course-link:hover { color: var(--yellow); }

/* ══ COLLAGE / BAŞARILAR ══ */
.collage-section { background: var(--surface); }
.collage-intro { text-align: center; margin-bottom: 44px; }
.collage-intro p { color: var(--muted); max-width: 540px; margin: 10px auto 0; }
.collage-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.collage-item { border-radius: 16px; overflow: hidden; background: var(--surface2); border: 2px solid var(--border); position: relative; cursor: pointer; }
.collage-item.wide { grid-column: span 2; }
.collage-item.tall { grid-row: span 2; }
.collage-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.collage-item:hover img { transform: scale(1.05); }
.collage-item.placeholder { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; }
.collage-placeholder-icon { font-size: 2rem; }
.collage-placeholder-text { color: var(--muted); font-size: .8rem; font-weight: 600; text-align: center; padding: 0 12px; }
.collage-label { position: absolute; bottom: 10px; left: 10px; background: rgba(78,31,138,.85); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: .72rem; font-weight: 700; backdrop-filter: blur(4px); }

/* ══ BAŞARI SAYILARI ══ */
.success-section { background: var(--bg); }
.success-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 64px; }
.success-card { background: #fff; border: 2px solid var(--border); border-radius: 20px; padding: 36px 20px; text-align: center; transition: all .22s; position: relative; overflow: hidden; }
.success-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--purple), var(--yellow)); }
.success-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(108,46,185,.12); }
.success-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; color: var(--purple); display: block; margin-bottom: 6px; }
.success-label { color: var(--muted); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }

/* ══ CTA ══ */
.cta-section { background: linear-gradient(135deg, var(--yellow) 0%, #ffb347 100%); padding: 80px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text); font-weight: 900; margin-bottom: 12px; }
.cta-inner p { color: rgba(30,10,60,.65); margin-bottom: 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══ FOOTER ══ */
.footer { background: var(--purple-dk); padding: 64px 0 0; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer .logo-text { color: #fff; font-size: 1.3rem; }
.footer .logo-text span { color: var(--yellow); }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .9rem; margin-top: 12px; line-height: 1.65; }
.footer h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: 2px; color: var(--yellow); margin-bottom: 16px; font-weight: 800; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact p { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-contact a:hover { color: var(--yellow); }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.65); transition: all .2s; }
.social-icons a:hover { background: var(--yellow); color: var(--text); border-color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 24px; max-width: 1180px; margin: 0 auto; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }

/* ══ İLETİŞİM SAYFASI ══ */
.contact-hero { padding: 140px 0 56px; background: linear-gradient(135deg, #f8f4ff, #ece3ff); text-align: center; }
.contact-hero h1 { margin: 8px 0 14px; }
.contact-hero p { color: var(--muted); }
.contact-section { padding: 72px 0 100px; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 20px; display: flex; align-items: flex-start; gap: 14px; transition: box-shadow .2s; }
.info-card:hover { box-shadow: 0 6px 20px rgba(108,46,185,.1); }
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-card h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--purple); font-weight: 800; margin-bottom: 4px; }
.info-card p { color: var(--muted); font-size: .9rem; line-height: 1.5; }
.info-card a { color: var(--text); }
.info-card a:hover { color: var(--purple); }
.wa-big { width: 100%; justify-content: center; font-size: 1rem; border-radius: var(--radius); margin-top: 4px; }
.contact-form-wrap { background: #fff; border: 1.5px solid var(--border); border-radius: 24px; padding: 40px; box-shadow: 0 8px 32px rgba(108,46,185,.08); }
.form-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.form-subtitle { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
.channel-tabs { display: flex; gap: 12px; margin-bottom: 24px; }
.channel-tab { flex: 1; cursor: pointer; }
.channel-tab input { display: none; }
.channel-tab span { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 16px; border-radius: 10px; border: 2px solid var(--border); color: var(--muted); font-size: .88rem; font-weight: 700; transition: all .2s; background: var(--bg); }
.channel-tab input:checked + span { border-color: var(--purple); color: var(--purple); background: var(--surface2); }
.channel-tab:hover span { border-color: var(--purple); color: var(--purple); }
.form-section-label { font-size: .74rem; text-transform: uppercase; letter-spacing: 2px; color: var(--purple); font-weight: 800; margin: 22px 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--surface2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .4px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px; color: var(--text); font-family: var(--font-body); font-size: .93rem; transition: border-color .2s, box-shadow .2s; appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #b0a0cc; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(108,46,185,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
/* ══ AÇILIR TİKLENEBİLİR SEÇİM KUTUSU (DROPDOWN CHECKBOX) ══ */
.dropdown-checkbox-select {
    position: relative;
    width: 100%;
}

/* Kutu kapalıyken görünen ana bar */
.dropdown-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: .93rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Varsayılan detay okunu gizler */
    user-select: none;
    transition: border-color .2s, box-shadow .2s;
}

/* Tarayıcının kendi detay okunu Safari için de gizleyelim */
.dropdown-summary::-webkit-details-marker {
    display: none;
}

/* Menü açıkken veya odaklanmışken ana barın rengi */
.dropdown-checkbox-select[open] .dropdown-summary {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(108,46,185,.1);
}

/* Sağdaki küçük ok işareti animasyonu */
.dropdown-arrow {
    font-size: 0.7rem;
    color: var(--muted);
    transition: transform 0.2s ease;
}
.dropdown-checkbox-select[open] .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--purple);
}

/* Tıklayınca aşağı açılan liste paneli */
.dropdown-options-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(108,46,185,.12);
    z-index: 100;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Her bir satır (seçenek) */
.dropdown-option-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
}

/* Üzerine gelince satırın parlaması */
.dropdown-option-item:hover {
    background: rgba(124, 58, 237, 0.05);
    color: #7c3aed;
}

/* Orjinal checkbox kutusunu gizle */
.dropdown-option-item input[type="checkbox"] {
    display: none;
}

/* Özel şık kare tik kutusu */
.custom-tick {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 5px;
    margin-right: 12px;
    position: relative;
    display: inline-block;
    background: #fff;
    transition: all 0.15s ease;
}

/* Satır tiklendiğinde (Checked) oluşacak renkler */
.dropdown-option-item input[type="checkbox"]:checked + .custom-tick {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    border-color: #7c3aed;
}

/* Tik kutusunun içindeki beyaz 'V' işareti */
.dropdown-option-item input[type="checkbox"]:checked + .custom-tick::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Tiklenen satırın yazısını da mor yapalım */
.dropdown-option-item:has(input[type="checkbox"]:checked) {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.02);
}

/* ══ EĞİTMENLER DETAY SAYFASI ══ */
.trainers-hero { padding: 140px 0 56px; background: linear-gradient(135deg, #f8f4ff, #ece3ff); text-align: center; }
.trainers-page-section { background: var(--bg); padding: 72px 0 100px; }
.trainer-full-card { background: #fff; border-radius: 28px; border: 2px solid var(--border); overflow: hidden; margin-bottom: 48px; box-shadow: 0 12px 48px rgba(108,46,185,.1); }
.trainer-full-top { display: grid; grid-template-columns: 300px 1fr; }
.trainer-full-photo { background: var(--surface2); min-height: 360px; position: relative; overflow: hidden; }
.trainer-full-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.trainer-full-photo.placeholder { display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.trainer-full-info { padding: 40px; }
.trainer-full-badge { display: inline-block; padding: 5px 16px; border-radius: 50px; font-size: .76rem; font-weight: 800; letter-spacing: 1px; margin-bottom: 16px; }
.trainer-full-badge.edu { background: var(--yellow); color: var(--text); }
.trainer-full-badge.psy { background: linear-gradient(90deg, var(--purple), var(--purple-lt)); color: #fff; }
.trainer-full-name { font-family: var(--font-display); font-size: 2rem; font-weight: 900; margin-bottom: 6px; line-height: 1.1; }
.trainer-full-title { color: var(--purple); font-weight: 700; font-size: 1rem; margin-bottom: 20px; }
.trainer-full-desc { color: var(--muted); line-height: 1.78; margin-bottom: 24px; font-size: .95rem; }
.trainer-full-bottom { padding: 32px 40px; background: var(--surface2); border-top: 2px solid var(--border); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.tbl-label { font-size: .74rem; text-transform: uppercase; letter-spacing: 2px; color: var(--purple); font-weight: 800; margin-bottom: 14px; }
.tbl-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.tbl-list li { font-size: .87rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; line-height: 1.5; }
.tbl-list li.edu-item::before { content: '🎓'; flex-shrink: 0; }
.tbl-list li.cert-item::before { content: '✦'; color: var(--yellow-dk); font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.spec-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.spec-tag { background: #fff; border: 1.5px solid var(--border); color: var(--purple); padding: 5px 13px; border-radius: 8px; font-size: .82rem; font-weight: 700; }
.trainer-cta-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ══ ANİMASYONLAR ══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--nav-h) + 48px); padding-bottom: 60px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .trainers-home-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: repeat(2,1fr); }
  .collage-grid { grid-template-columns: repeat(2,1fr); }
  .success-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trainer-full-top { grid-template-columns: 1fr; }
  .trainer-full-photo { min-height: 260px; }
  .trainer-full-bottom { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .courses-grid { grid-template-columns: 1fr; }
  .collage-grid { grid-template-columns: repeat(2,1fr); }
  .collage-item.wide { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .channel-tabs { flex-direction: column; }
}
@media (max-width: 480px) {
  .success-grid { grid-template-columns: 1fr 1fr; }
  .collage-grid { grid-template-columns: 1fr; }
  .collage-item.tall { grid-row: span 1; }
}


.nav-logo-text {
  font-family: 'Poppins', 'Montserrat', sans-serif; /* Modern ve kurumsal bir font ailesi */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #333333; /* Logonun ana rengi (sitenize göre değiştirebilirsiniz) */
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

/* "&" işaretini öne çıkarmak için hafif bir renk/stil dokunuşu */
.nav-logo-text .logo-accent {
  color: #ff4757; /* Sitenizin vurgu rengini buraya yazabilirsiniz */
  font-style: italic;
  margin: 0 2px;
}

/* "Akademi" kısmını biraz daha ince yaparak kontrast oluşturuyoruz */
.nav-logo-text .logo-sub {
  font-weight: 400;
  color: #555555;
}

/* Hover (Üzerine gelince) efekti */
.nav-logo-text:hover {
  opacity: 0.9;
}

/* ==========================================================================
   Tu&Ci Akademi – Tonguç Stili Modern Veli Yorum Kartları (Temaya Uyumlu)
   ========================================================================== */
.tonguc-style-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.review-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(108, 46, 185, 0.02);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

/* Kartların Üzerine Gelince Canlanma Efekti (Sitedeki Buton Efektleriyle Uyumlu) */
.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(108, 46, 185, 0.12);
}

/* Üst Kısım Düzeni */
.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

/* Emoji Avatarların Yuvarlak Kutusu */
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
}

.review-user-info {
    flex: 1;
}

.review-user-info h4 {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 2px 0;
}

.review-user-info span {
    font-size: 0.78rem;
    color: var(--muted);
    display: block;
}

/* Sağ Üst Köşedeki Küçük Durum Rozeti */
.review-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Yorumun Metin Alanı */
.review-body p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text);
    font-style: italic;
    margin: 0 0 20px 0;
}

/* Alt Çizgi Alanı */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--surface2);
    padding-top: 14px;
    margin-top: auto;
}

.review-stars {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.review-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple);
    background: var(--surface2);
    padding: 4px 10px;
    border-radius: 8px;
}



/* 🎨 SİTENİN ÖZEL RENK TEMASIYLA UYUMLU VARYASYONLAR */
/* Mor Kart */
.review-card.accent-purple { border-top: 4px solid var(--purple); }
.review-card.accent-purple .review-avatar { background: var(--surface2); }
.review-card.accent-purple .review-badge { background: var(--surface2); color: var(--purple); }
.review-card.accent-purple:hover { border-color: var(--purple); }

/* Sarı/Altın Kart */
.review-card.accent-blue { border-top: 4px solid var(--yellow); }
.review-card.accent-blue .review-avatar { background: rgba(245, 197, 24, 0.1); }
.review-card.accent-blue .review-badge { background: rgba(245, 197, 24, 0.1); color: var(--yellow-dk); }
.review-card.accent-blue:hover { border-color: var(--yellow); }

/* Açık Mor Kart */
.review-card.accent-indigo { border-top: 4px solid var(--purple-lt); }
.review-card.accent-indigo .review-avatar { background: var(--surface2); }
.review-card.accent-indigo .review-badge { background: var(--surface2); color: var(--purple-lt); }
.review-card.accent-indigo:hover { border-color: var(--purple-lt); }

/* Ana Kapsayıcı (Görsellerin ve balonun taşmaması için) */
.about-img-wrap-diagonal {
    position: relative;
    width: 100%;
    max-width: 550px; /* Tasarımınıza göre artırıp azaltabilirsiniz */
    height: 500px;    /* Katmanların rahat sığması için yüksekliği biraz artırdık */
    margin: 0 auto;
}

/* Her bir görsel kutusunun ortak özellikleri */
.about-diagonal-box {
    position: absolute;
    width: 55%; /* Görsellerin genişliği (birbirinin üstüne binmesi için ideal) */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Akıcı bir hover efekti */
}

/* İçindeki resimlerin tarzı */
.about-diagonal-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px; /* Modern, yumuşak köşeler */
    border: 5px solid #ffffff; /* Görselleri ayıran beyaz şerit */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); /* Derinlik hissi veren gölge */
}

/* --- GÖRSELLERİN ÇAPRAZ KATMAN DÜZENİ --- */

/* 1. Görsel: Sol Üst (En arkada) */
.img-step-1 {
    top: 0;
    left: 0;
    z-index: 1;
}

/* 2. Görsel: Orta (En önde) */
.img-step-2 {
    top: 22%;
    left: 22%;
    z-index: 3; /* Psikolojik danışmanlık tam ortada ve en üstte */
}

/* 3. Görsel: Sağ Alt (Orta katman) */
.img-step-3 {
    top: 44%;
    left: 44%;
    z-index: 2;
}

/* --- DENEYİM BALONU (ABOUT BLOB) --- */
.about-blob {
    position: absolute;
    /* Konumlandırma: Sağ üst köşedeki boşluğa yerleştiriyoruz */
    top: 5px;
    right: 0;
    z-index: 4; /* Tüm görsellerin üstünde parlaması için en yüksek z-index */
    
    /* Balon Tasarımı */
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b); /* Burayı sitenin ana rengine göre değiştirebilirsin */
    color: #ffffff;
    border-radius: 50%; /* Tam yuvarlak */
    
    /* İçerik Hizalama */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(254, 132, 123, 0.4);
    animation: floatAnimation 3s ease-in-out infinite; /* Hafif havada süzülme efekti */
}

/* Balonun içindeki "3+" yazısı */
.about-blob span:first-child {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

/* Balonun içindeki "Yıl Deneyim" yazısı */
.about-blob span:last-child {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* --- HOVER & ANİMASYONLAR --- */

/* Görsellerin üzerine gelindiğinde öne çıkması */
.about-diagonal-box:hover {
    z-index: 5;
    transform: scale(1.04) translateY(-5px);
}

/* Balon için hafif yukarı-aşağı süzülme animasyonu (Harika bir canlılık katar) */
@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 768px) {
    .about-img-wrap-diagonal {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding-top: 60px; /* Mobilde balonun üste binmemesi için pay */
    }
    .about-diagonal-box {
        position: relative;
        width: 100%;
        top: 0 !important;
        left: 0 !important;
    }
    .about-blob {
        top: -10px;
        right: 10px;
        width: 90px;
        height: 90px;
    }
    .about-blob span:first-child { font-size: 24px; }
    .about-blob span:last-child { font-size: 10px; }
}

/* Mobil Ekranlar İçin Uyum (Sitenin responsive yapısıyla entegre) */
@media (max-width: 1024px) {
    .tonguc-style-review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tonguc-style-review-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

