/* ============================================================
   ANKARA SRC BELGESİ – Merkezi CSS
   ankarasrcbelgesi.com.tr
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --red:        #C0392B;
  --red-dark:   #922B21;
  --red-light:  #FADBD8;
  --navy:       #0D1B2A;
  --navy-light: #1A2E45;
  --gold:       #967806;
  --gold-light: #FEF9E7;
  --white:      #FFFFFF;
  --gray-bg:    #F4F6F7;
  --gray-text:  #333333;
  --border:     #D5D8DC;
  --success:    #1E8449;

  --font-head: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; }

/* ── PHONE BAR ── */
.phone-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .3px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.phone-bar a { color: #fff; font-weight: 700; }
.phone-bar span { opacity: .88; }

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: sticky;
  top: 37px;
  z-index: 999;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 19px;
  color: #fff;
  letter-spacing: -.3px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a { padding: 15px; 
  color: rgba(255,255,255,.78);
  font-size: 16px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-size: 16px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-back { color: rgba(255,255,255,.65); font-size: 16px; }
.nav-back:hover { color: #fff; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  transition: opacity .2s;
}
.btn-whatsapp:hover { opacity: .88; }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  transition: opacity .2s;
}
.btn-white:hover { opacity: .9; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  padding: 15px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  transition: border-color .2s;
}
.btn-outline-white:hover { border-color: #fff; }

/* ── HERO (Ana Sayfa) ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3a5c 100%);
  color: #fff;
  padding: 80px 5% 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(192,57,43,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,172,13,.15);
  color: var(--gold);
  border: 1px solid rgba(212,172,13,.3);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 15px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 16.5px;
  color: rgba(255,255,255,.75);
  margin-bottom: 34px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}
.stat-label { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 2px; }

/* ── HERO LEAD CARD ── */
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 5px;
}
.hero-card > p {
  font-size: 15px;
  color: var(--gray-text);
  margin-bottom: 20px;
}
.urgency-bar {
  background: var(--gold-light);
  border: 1px solid rgba(212,172,13,.25);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 15px;
  color: #7D6608;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.35); }
}

/* ── FORM ── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--navy);
  background: #fff;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--red); }
.btn-form {
  width: 100%;
  background: var(--red);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .2s;
  margin-top: 4px;
}
.btn-form:hover { background: var(--red-dark); }
.form-note { text-align:center; font-size:14px; color:#aaa; margin-top:9px; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--navy);
  padding: 28px 5%;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: 15px; font-size: 16px; color: #fff; }
.trust-icon {
  width: 38px; height: 38px;
  background: rgba(212,172,13,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.trust-item strong { font-weight: 600; display: block; }
.trust-item span { opacity: .55; font-size: 14.5px; }

/* ── SECTIONS ── */
section { padding: 68px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 9px;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 15.5px;
  color: var(--gray-text);
  max-width: 540px;
  line-height: 1.7;
}
.section-header { margin-bottom: 46px; }

/* ── BELGE CARDS ── */
/* .belgeler-grid handled below */
.belge-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: pointer;
  position: relative;
  background: #fff;
}
.belge-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(192,57,43,.11);
  transform: translateY(-3px);
}
.belge-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: var(--red);
  opacity: .1;
  position: absolute;
  top: 14px; right: 18px;
  line-height: 1;
}
.belge-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
  margin-bottom: 14px;
}
.belge-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 7px; }
.belge-card p { font-size: 16px; color: var(--gray-text); line-height: 1.6; margin-bottom: 14px; }
.belge-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.belge-tag {
  background: var(--gray-bg);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
}
.belge-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
  margin-top: 16px;
}

/* ── CEZA KUTUSU ── */
.ceza-box {
  background: #FDF2F2;
  border: 1.5px solid #F5B7B1;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-top: 14px;
  font-size: 15px;
  color: #7B241C;
  line-height: 1.6;
}
.ceza-box strong { display: block; font-size: 16px; margin-bottom: 4px; color: var(--red-dark); }

/* ── PSİKOTEKNİK HIGHLIGHT ── */
.psiko-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 42px 46px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.psiko-card h3 { font-size: 26px; font-weight: 900; margin-bottom: 14px; }
.psiko-card h3 span { color: var(--gold); }
.psiko-card p { color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 22px; font-size: 14.5px; }
.psiko-points { list-style: none; }
.psiko-points li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 16px;
  color: rgba(255,255,255,.82);
  display: flex;
  align-items: center;
  gap: 10px;
}
.psiko-points li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── HOW IT WORKS ── */
.how-bg { background: var(--gray-bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
}
.step-card { text-align: center; padding: 30px 18px; }
.step-num {
  width: 52px; height: 52px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.step-card p { font-size: 16px; color: var(--gray-text); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-arrow {
  width: 22px; height: 22px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: transform .3s, background .2s, border-color .2s;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding-bottom: 18px;
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.78;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  color: #fff;
  padding: 58px 5%;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 900; margin-bottom: 15px; }
.cta-banner p { font-size: 16px; opacity: .85; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CATEGORY INDEX PAGE ── */
.cat-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 56px 5%;
}
.cat-hero-inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb { font-size: 15px; color: rgba(255,255,255,.48); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,.48); }
.breadcrumb a:hover { color: #fff; }
.cat-hero h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 900; margin-bottom: 15px; }
.cat-hero h1 em { font-style: normal; color: var(--gold); }
.cat-hero p { font-size: 15.5px; color: rgba(255,255,255,.72); max-width: 560px; line-height: 1.72; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.cat-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.cat-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.cat-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.cat-card p { font-size: 16px; color: var(--gray-text); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.cat-card-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.cat-card-tag {
  background: var(--gray-bg);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
}
.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
}
.new-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}

/* .cat-grid handled below */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 5%;
}

.section-center {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ── DETAIL PAGE ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: #fff;
  padding: 58px 5%;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(26px, 4vw, 44px); font-weight: 900; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { font-size: 15.5px; color: rgba(255,255,255,.73); max-width: 580px; line-height: 1.72; }
.hero-tags { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 22px; }
.hero-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 15px;
  color: rgba(255,255,255,.83);
}

.content-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 58px 5%;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 56px;
  align-items: start;
}
.content-body h2 { font-size: 22px; font-weight: 800; margin: 38px 0 16px; }
.content-body h2:first-child { margin-top: 0; }
.content-body p { font-size: 14.5px; color: #333; line-height: 1.82; margin-bottom: 16px; }
.content-body ul { list-style: none; padding: 0; }
.content-body ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.content-body ul li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.content-body ul li:last-child { border-bottom: none; }

.compare-table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 16px; }
.compare-table th {
  background: var(--navy);
  color: #fff;
  padding: 14px 15px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
}
.compare-table td { padding: 14px 15px; border-bottom: 1px solid var(--border); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--gray-bg); }

.info-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 18px;
  margin: 22px 0;
  font-size: 16px;
  color: #5D4037;
  line-height: 1.72;
}
.info-box strong { display: block; margin-bottom: 4px; color: #3E2723; }

.warn-box {
  background: #FDF2F2;
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 18px;
  margin: 22px 0;
  font-size: 16px;
  color: #6B1414;
  line-height: 1.72;
}
.warn-box strong { display: block; margin-bottom: 6px; font-size: 14px; }

/* ── SIDEBAR ── */
.sidebar { position: sticky; top: 118px; }
.cta-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 18px;
}
.cta-card h3 { font-size: 19px; font-weight: 900; margin-bottom: 9px; }
.cta-card h3 span { color: var(--gold); }
.cta-card p { font-size: 16px; color: rgba(255,255,255,.68); margin-bottom: 20px; line-height: 1.6; }
.btn-cta {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 9px;
  transition: background .2s;
}
.btn-cta:hover { background: var(--red-dark); }
.btn-wa {
  display: block;
  text-align: center;
  background: #25D366;
  color: #fff;
  padding: 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14.5px;
  transition: opacity .2s;
}
.btn-wa:hover { opacity: .88; }

.quick-info-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}
.quick-info-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.qi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}
.qi-row:last-child { border-bottom: none; }
.qi-label { color: var(--gray-text); }
.qi-val { font-weight: 600; }

.other-pages {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.other-pages h4 {
  font-size: 14.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: #888;
}
.other-pages a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--navy);
  transition: color .2s;
}
.other-pages a:hover { color: var(--red); }
.other-pages a:last-child { border-bottom: none; }

/* ── BLOG CARD ── */
/* ── BLOG & COURSE LIST CARDS ── */
.blog-card, .course-card, .belge-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.blog-card:hover, .course-card:hover, .belge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.blog-card img, .course-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content, .course-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card h3, .course-card h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 12px;
}

.blog-card p, .course-card p {
  color: var(--gray-text);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.blog-grid, .course-grid, .belgeler-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .blog-grid, .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .blog-grid, .course-grid, .belgeler-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-tag {
  display: inline-block;
  background: var(--red-light);
  color: var(--red-dark);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}
.blog-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 9px; line-height: 1.35; }
.blog-card p { font-size: 16px; color: var(--gray-text); line-height: 1.65; margin-bottom: 16px; }
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #aaa;
}
.blog-read-more { color: var(--red); font-weight: 700; font-size: 16px; }

/* ── FOOTER ── */
footer {
  background: #070E17;
  color: rgba(255,255,255,.52);
  padding: 48px 5% 26px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.footer-brand h4 span { color: var(--gold); }
.footer-brand p { font-size: 15px; line-height: 1.72; max-width: 260px; }
.footer-col h5 {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a { padding: 8px 0; display: block; 
  display: block;
  font-size: 15px;
  color: rgba(255,255,255,.45);
  margin-bottom: 8px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 18px;
  text-align: center;
  font-size: 14.5px;
}

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 26px; right: 22px;
  background: #25D366;
  color: #fff;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 25px;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  z-index: 900;
  transition: transform .2s;
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); }

/* ── BADGES ── */
.badge-green { background:#E9F7EF; color:var(--success); border-radius:4px; padding:2px 8px; font-size:15px; font-weight:700; }
.badge-red   { background:#FDEDEC; color:var(--red);     border-radius:4px; padding:2px 8px; font-size:15px; font-weight:700; }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.gap-actions { display: flex; gap: 15px; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { order: -1; }
  .hero-stats { gap: 14px; justify-content: center; }
  nav { top: 35px; }
  .nav-links { display: none; }
  .psiko-card { grid-template-columns: 1fr; padding: 28px 22px; }
  .content-wrap { grid-template-columns: 1fr; gap: 28px; padding: 40px 4%; }
  .sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .trust-inner { gap: 18px; }
  .hero { padding: 40px 4% 48px; }
  section { padding: 48px 4%; }
  .compare-table { font-size: 15px; }
  .compare-table th, .compare-table td { padding: 9px 14px; }
}

