/* ═══════════════════════════════════════════════════
   İLAY BİLİŞİM — egitim.css
   Yapay Zeka Eğitimi Sayfası
═══════════════════════════════════════════════════ */

/* ── HERO ── */
.eg-hero { padding: 140px 6vw 100px; background: var(--dark); position: relative; overflow: hidden; }
.eg-hero-bg   { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 80% 30%, rgba(166,124,82,.12) 0%, transparent 55%), radial-gradient(ellipse 40% 50% at 10% 80%, rgba(166,124,82,.06) 0%, transparent 50%); }
.eg-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(237,232,223,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(237,232,223,.035) 1px, transparent 1px); background-size: 70px 70px; mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%); }
.eg-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.eg-eyebrow  { font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 24px; opacity: 0; animation: fadeUp .7s .1s forwards; }
.eg-title    { font-family: var(--font-head); font-size: clamp(44px,6vw,80px); font-weight: 300; line-height: 1.0; letter-spacing: -.01em; color: #EDE8DF; margin-bottom: 28px; opacity: 0; animation: fadeUp .8s .25s forwards; }
.eg-title em { font-style: italic; color: var(--gold-lt); }
.eg-subtitle { font-size: 16px; font-weight: 300; color: rgba(237,232,223,.68); line-height: 1.8; margin-bottom: 40px; opacity: 0; animation: fadeUp .8s .4s forwards; }
.eg-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .55s forwards; }

.btn-wa { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: #25D366; padding: 15px 32px; border-radius: var(--radius); text-decoration: none; transition: background .25s, transform .2s; }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }

.eg-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(237,232,223,.08); border: 1px solid rgba(237,232,223,.10); opacity: 0; animation: fadeIn .9s .7s forwards; }
.eg-stat       { padding: 32px 28px; background: rgba(237,232,223,.04); transition: background .3s; }
.eg-stat:hover { background: rgba(237,232,223,.08); }
.eg-stat-num   { font-family: var(--font-head); font-size: 40px; font-weight: 300; color: var(--gold-lt); line-height: 1; margin-bottom: 8px; }
.eg-stat-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(237,232,223,.55); }

/* ── SECTION BASE ── */
.eg-section       { padding: 100px 6vw; }
.eg-section-label { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.eg-section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }
.eg-section-heading { font-family: var(--font-head); font-size: clamp(32px,4vw,54px); font-weight: 300; line-height: 1.1; letter-spacing: -.01em; margin-bottom: 48px; }
.eg-section-heading em { font-style: italic; color: var(--gold); }

/* ── CONTENT GRID ── */
.eg-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.eg-content-card  { background: var(--surface); padding: 40px 36px; position: relative; overflow: hidden; transition: background .3s; }
.eg-content-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.eg-content-card:hover { background: #FAFAF8; }
.eg-content-card:hover::after { transform: scaleX(1); }
.eg-content-icon  { font-size: 28px; margin-bottom: 16px; }
.eg-content-title { font-family: var(--font-head); font-size: 20px; font-weight: 400; margin-bottom: 12px; }
.eg-content-text  { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.75; }

.eg-tools-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.eg-tool { font-size: 13px; font-weight: 400; color: var(--gold); border: 1px solid rgba(166,124,82,.28); padding: 8px 18px; border-radius: 2px; transition: background .25s, border-color .25s; }
.eg-tool:hover { background: rgba(166,124,82,.08); border-color: var(--gold); }

/* ── INCLUDED ── */
.eg-included { background: var(--surface2); }
.eg-included-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.eg-inc-card { background: var(--surface); border: 1px solid var(--border); padding: 32px 24px; text-align: center; border-radius: var(--radius); transition: border-color .25s, transform .2s; }
.eg-inc-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.eg-inc-icon  { font-size: 32px; margin-bottom: 14px; }
.eg-inc-title { font-family: var(--font-head); font-size: 17px; font-weight: 400; margin-bottom: 6px; }
.eg-inc-sub   { font-size: 13px; font-weight: 300; color: var(--muted); }

/* ── PRICING ── */
.eg-pricing        { background: var(--dark); position: relative; overflow: hidden; }
.eg-pricing::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 60% at 70% 50%, rgba(166,124,82,.10) 0%, transparent 55%); pointer-events: none; }
.eg-pricing-inner  { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.eg-pricing-label  { font-size: 11px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 16px; display: flex; align-items: center; gap: 14px; }
.eg-pricing-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.eg-pricing-title  { font-family: var(--font-head); font-size: clamp(32px,4vw,52px); font-weight: 300; color: #EDE8DF; line-height: 1.1; margin-bottom: 24px; }
.eg-pricing-title em { font-style: italic; color: var(--gold-lt); }
.eg-price-big      { font-family: var(--font-head); font-size: clamp(48px,6vw,80px); font-weight: 300; color: var(--gold-lt); line-height: 1; margin-bottom: 8px; }
.eg-price-note     { font-size: 14px; font-weight: 300; color: rgba(237,232,223,.55); margin-bottom: 32px; }
.eg-price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
.eg-price-features li { font-size: 14px; font-weight: 300; color: rgba(237,232,223,.72); display: flex; align-items: flex-start; gap: 12px; }
.eg-price-features li::before { content: '✓'; color: var(--gold); font-size: 14px; font-weight: 500; flex-shrink: 0; margin-top: 1px; }
.eg-group-note       { background: rgba(166,124,82,.12); border: 1px solid rgba(166,124,82,.25); padding: 20px 24px; border-radius: var(--radius); margin-bottom: 16px; }
.eg-group-note-title { font-size: 13px; font-weight: 500; color: var(--gold-lt); margin-bottom: 6px; }
.eg-group-note-text  { font-size: 13px; font-weight: 300; color: rgba(237,232,223,.60); line-height: 1.65; }

/* ── FORM ── */
.eg-form-section { background: var(--bg); }
.eg-form-wrap    { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.eg-form-info .eg-section-heading { margin-bottom: 24px; }
.eg-form-text  { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 36px; }
.eg-contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.eg-ci       { display: flex; gap: 16px; align-items: flex-start; }
.eg-ci-icon  { width: 36px; height: 36px; flex-shrink: 0; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.eg-ci-icon svg  { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.eg-ci-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.eg-ci-value { font-size: 14px; font-weight: 300; color: var(--dark); }
.wa-cta { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: #25D366; padding: 14px 28px; border-radius: var(--radius); text-decoration: none; transition: background .25s, transform .2s; }
.wa-cta:hover { background: #1ebe5a; transform: translateY(-2px); }
.wa-cta svg  { width: 18px; height: 18px; fill: #fff; }

.eg-form-box    { background: var(--surface); border: 1px solid var(--border); padding: 48px 44px; border-radius: var(--radius); }
.eg-form-title  { font-family: var(--font-head); font-size: 26px; font-weight: 400; margin-bottom: 8px; }
.eg-form-sub    { font-size: 14px; font-weight: 300; color: var(--muted); margin-bottom: 32px; }

/* Form controls */
.form-group     { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.form-group label .req { color: var(--gold); }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-ctrl {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--dark); font-family: var(--font-body); font-size: 14px; font-weight: 300;
  padding: 13px 16px; outline: none; border-radius: var(--radius);
  transition: border-color .25s, background .2s; width: 100%;
}
.form-ctrl:focus { border-color: rgba(166,124,82,.55); background: #fff; }
.form-ctrl::placeholder { color: rgba(26,24,20,.28); }
.form-ctrl.error { border-color: #c0392b; }
textarea.form-ctrl { resize: vertical; min-height: 100px; }

.check-group       { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: rgba(166,124,82,.05); border: 1px solid rgba(166,124,82,.20); border-radius: var(--radius); cursor: pointer; transition: background .25s; }
.check-group:hover { background: rgba(166,124,82,.09); }
.check-group input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.check-group-text  { font-size: 13px; font-weight: 300; color: var(--dark); line-height: 1.55; }
.check-group-text strong { font-weight: 500; }

.captcha-box   { background: var(--surface2); border: 1px solid var(--border); padding: 16px 20px; border-radius: var(--radius); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.captcha-q     { font-size: 14px; font-weight: 500; color: var(--dark); white-space: nowrap; }
.captcha-input { width: 72px; padding: 10px 14px; text-align: center; font-size: 16px; font-weight: 500; }
.captcha-hint  { font-size: 12px; color: var(--muted); font-weight: 300; }
.hp-field      { display: none !important; position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form-submit-row { display: flex; align-items: center; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.form-submit-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: #fff; background: var(--gold);
  border: none; cursor: pointer; padding: 15px 32px; border-radius: var(--radius);
  transition: background .25s, transform .2s;
}
.form-submit-btn:hover    { background: var(--gold-lt); transform: translateY(-2px); }
.form-submit-btn:disabled { background: rgba(166,124,82,.5); cursor: not-allowed; transform: none; }
.form-privacy { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.5; max-width: 200px; }

.form-alert         { padding: 14px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 300; margin-bottom: 20px; display: none; }
.form-alert.show    { display: block; }
.form-alert.success { background: #eaf5ec; border: 1px solid #b8ddc0; color: #2a6a3a; }
.form-alert.danger  { background: #fdf0ef; border: 1px solid #f5c0bb; color: #a33020; }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.form-submit-btn.loading .spinner   { display: block; }
.form-submit-btn.loading .btn-text  { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .eg-hero-inner  { grid-template-columns: 1fr; gap: 48px; }
  .eg-hero        { padding: 120px 6vw 80px; }
  .eg-section     { padding: 80px 6vw; }
  .eg-content-grid { grid-template-columns: 1fr; }
  .eg-included-grid { grid-template-columns: repeat(2, 1fr); }
  .eg-pricing-inner { grid-template-columns: 1fr; gap: 48px; }
  .eg-form-wrap   { grid-template-columns: 1fr; gap: 60px; }
  .eg-form-box    { padding: 32px 24px; }
}
@media (max-width: 600px) {
  .eg-included-grid { grid-template-columns: 1fr 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .eg-hero-ctas   { flex-direction: column; }
}
