/* Hankids Akademi – Ortak stiller */
:root {
  --primary: #027A28;
  --primary-dark: #015a1e;
  --secondary: #87D205;
  --tertiary: #05DD95;
  --heading: #132F3F;
  --text: #374151;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f0fdf4;
  --bg-card: #ffffff;
  --dark: #0f172a;
  --dark-card: rgba(255,255,255,0.06);
  --gradient-hero: linear-gradient(135deg, #027A28 0%, #05a84a 50%, #05DD95 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(2,122,40,0.85) 0%, rgba(15,23,42,0.9) 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--header-height, 72px); }
img { max-width: 100%; height: auto; vertical-align: middle; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--heading); font-weight: 600; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 480px) { .container { padding: 0 1rem; } }

/* ========== HEADER / NAV – site renkleriyle uyumlu ========== */
:root {
  --header-height: 72px;
  --container-max: 1200px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --duration-fast: 0.25s;
  --duration-normal: 0.45s;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  transition: background var(--duration-normal), box-shadow var(--duration-normal);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media (min-width: 901px) {
  .header {
    background: transparent;
    box-shadow: none;
  }
  .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
  }
}
@media (max-width: 900px) {
  .header {
    background: var(--bg);
    box-shadow: var(--shadow-sm);
  }
  .header.scrolled {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading);
  transition: color var(--duration-normal);
}
.logo:hover { color: var(--primary); }
.logo-icon { font-size: 1.5rem; display: inline-block; }
.logo strong { color: var(--primary); transition: color var(--duration-normal); }
@media (min-width: 901px) {
  .header:not(.scrolled) .logo,
  .header:not(.scrolled) .logo strong { color: #fff; }
  .header:not(.scrolled) .logo:hover { color: rgba(255,255,255,0.9); }
}

.nav { display: flex; align-items: center; gap: var(--space-xl); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: transform var(--duration-normal), opacity var(--duration-normal), background var(--duration-normal);
}
@media (min-width: 901px) {
  .header:not(.scrolled) .nav-toggle span { background: #fff; }
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.nav-menu li { list-style: none; }
.nav-menu a, .nav-menu button {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--heading);
  background: var(--bg-alt);
  border: none;
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: color var(--duration-normal), background var(--duration-normal);
}
.nav-menu a:hover, .nav-menu button:hover { color: var(--primary) !important; background: rgba(2, 122, 40, 0.15); }
@media (min-width: 901px) {
  .header:not(.scrolled) .nav-menu a,
  .header:not(.scrolled) .nav-menu button {
    color: var(--primary);
    background: #fff;
  }
  .header:not(.scrolled) .nav-menu a:hover,
  .header:not(.scrolled) .nav-menu button:hover {
    color: var(--primary-dark) !important;
    background: rgba(255, 255, 255, 0.9);
  }
  .header.scrolled .nav-menu > li > a,
  .header.scrolled .nav-menu > li > button {
    color: #fff;
    background: var(--primary);
  }
  .header.scrolled .nav-menu > li > a:hover,
  .header.scrolled .nav-menu > li > button:hover {
    color: #fff !important;
    background: var(--primary-dark);
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: nowrap;
    gap: 0.5rem;
    min-height: var(--header-height);
    overflow: hidden;
  }
  .header-inner .logo { order: 1; flex-shrink: 0; min-width: 0; margin-right: auto; }
  .header-inner .logo .logo-text { white-space: nowrap; overflow: visible; max-width: none; }
  .header-inner .nav { order: 2; flex-shrink: 0; }
  .nav-menu { margin-top: 0; }
}
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: var(--space-sm);
  margin-top: var(--space-xs);
  background: var(--bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--duration-normal), transform var(--duration-normal), visibility var(--duration-normal);
  list-style: none;
  padding-left: 0;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--text);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.dropdown a:hover { background: var(--bg-alt); color: var(--primary); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 env(safe-area-inset-bottom, 0);
    gap: 0;
    transition: max-height var(--duration-normal);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .nav-menu.is-open { max-height: calc(100vh - var(--header-height)); }
  .nav-menu > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
    width: 100%;
  }
  .nav-menu > li:last-child {
    border-bottom: 4px solid var(--primary);
  }
  .nav-menu > li > a,
  .nav-menu > li > button {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading);
    background: transparent;
    border: none;
    border-left: 4px solid transparent;
    border-radius: 0;
    transition: background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast);
  }
  .nav-menu > li > a:hover,
  .nav-menu > li > button:hover {
    background: rgba(2, 122, 40, 0.08);
    color: var(--primary);
    border-left-color: var(--primary);
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-normal);
    background: rgba(2, 122, 40, 0.04);
  }
  .has-dropdown .dropdown { max-height: 0; }
  .has-dropdown.is-open .dropdown { max-height: 520px; overflow: visible; }
  .dropdown li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .dropdown li:last-child {
    border-bottom: none;
  }
  .dropdown a {
    display: block;
    width: 100%;
    padding: 0.875rem 1.25rem 0.875rem 2rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border-left: 4px solid transparent;
    border-radius: 0;
    transition: background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast);
  }
  .dropdown a:hover {
    background: rgba(2, 122, 40, 0.1);
    color: var(--primary);
    border-left-color: var(--tertiary);
  }
}

/* ========== HERO ========== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(72px + 4rem) 1.5rem 4rem;
  padding-top: calc(var(--header-height) + 4rem);
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  color: var(--bg);
}
.hero-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--bg);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.75;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-stat {
  font-size: 1rem;
  opacity: 0.95;
}
.hero-stat strong {
  color: var(--tertiary);
  font-size: 1.25rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.9rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}
.btn:hover { transform: translateY(-1px); opacity: 0.95; }
.btn:active { transform: translateY(0); }
.btn-alt {
  background: var(--bg);
  color: var(--heading);
  box-shadow: var(--shadow);
}
.btn-alt:hover { box-shadow: var(--shadow-lg); }
.btn-primary {
  background: var(--secondary);
  color: var(--dark);
  border: none;
}
.btn-primary:hover { box-shadow: 0 4px 14px rgba(135, 210, 5, 0.4); }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

@media (max-width: 768px) {
  .hero {
    min-height: 75vh;
    padding: calc(var(--header-height) + 2.5rem) 1rem 2.5rem;
  }
  .hero-label { font-size: 0.8rem; }
  .hero h1 { font-size: clamp(1.6rem, 6vw, 2.25rem); }
  .hero-subtitle { font-size: 1rem; margin-bottom: 1.25rem; }
  .hero-stats { margin-bottom: 1.5rem; }
  .hero-buttons { gap: 0.75rem; }
  .btn { padding: 0.8rem 1.5rem; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 70vh; padding: calc(var(--header-height) + 1.5rem) 0.75rem 1.5rem; }
  .hero-buttons { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero-buttons .btn { width: 100%; }
}

/* ========== SECTIONS ========== */
section { padding: 4.5rem 0; }
section:nth-child(even):not(.section-dark):not(.contact-section):not(.section-light) { background: var(--bg-alt); }
.section-light { background: var(--bg-alt); }
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-label-light {
  color: var(--tertiary);
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
  color: var(--heading);
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.section-dark {
  background: var(--dark);
  color: var(--bg);
  padding: 4.5rem 0;
}
.section-dark .section-title { color: var(--bg); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.75); }

@media (max-width: 768px) {
  section { padding: 3rem 0; }
  .section-title { font-size: clamp(1.5rem, 4vw, 1.9rem); }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 1.75rem; }
}

@media (max-width: 480px) {
  section { padding: 2.5rem 0; }
}

/* ========== ABOUT ========== */
.about-block {
  max-width: 780px;
  margin: 0 auto 3rem;
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow);
  line-height: 1.85;
  color: var(--text);
}
.about-block p { margin: 0 0 1rem; }
.about-block p:last-child { margin-bottom: 0; }

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.value-card-icon {
  display: inline-block;
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.value-card h3 {
  font-size: 1.1rem;
  color: var(--heading);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* İçerik sayfalarında fotoğraf alanları – istediğiniz kadar ekleyebilirsiniz */
.content-photos {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.content-photos-title {
  font-size: 1.25rem;
  color: var(--heading);
  margin-bottom: 1.25rem;
}
.photo-spots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.photo-spot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--bg-card);
}
.photo-spot img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.photo-spot figcaption {
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .about-block { padding: 1.75rem 1.5rem; margin-bottom: 2rem; }
  .value-cards { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 1.5rem; }
  .value-card { padding: 1.5rem; }
  .content-photos { margin-top: 2rem; padding-top: 2rem; }
  .photo-spots { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
}

@media (max-width: 480px) {
  .about-block { padding: 1.25rem 1rem; border-radius: var(--radius); font-size: 0.95rem; }
  .value-card h3 { font-size: 1rem; }
  .value-card p { font-size: 0.9rem; }
}

/* ========== KURS KARTLARI (Ana sayfa – sadece link) ========== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.course-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.course-card:hover {
  border-color: rgba(5, 221, 149, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.course-card a { display: block; color: inherit; }
.course-card a:hover { color: var(--tertiary); }
.course-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.course-card-body { padding: 1.25rem; }
.course-card h3 {
  font-size: 1.1rem;
  color: var(--tertiary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.course-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.course-card .card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tertiary);
}
.course-card .card-link::after { content: ' →'; }

@media (max-width: 768px) {
  .course-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
  .course-card-body { padding: 1rem; }
  .course-card h3 { font-size: 1.05rem; }
  .course-card p { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .course-grid { grid-template-columns: 1fr; gap: 1rem; }
  .course-card:hover { transform: translateY(-2px); }
}

/* ========== MEDIA GALERİ (fotoğraf / video – sınırsız öğe) ========== */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.media-gallery--full {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 0 0 3rem;
}
.media-gallery-item {
  margin: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.media-gallery-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.media-gallery-item img,
.media-gallery-item .media-video-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.media-gallery-item .media-video-wrap {
  background: var(--dark);
}
.media-gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-gallery-item figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}
.gallery-cta {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0;
}
.gallery-page .media-gallery--full {
  max-width: 100%;
}
.page-hero-lead {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 560px;
}

@media (max-width: 768px) {
  .media-gallery { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .media-gallery--full { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; padding-bottom: 2rem; }
  .media-gallery-item figcaption { padding: 0.6rem 0.75rem; font-size: 0.85rem; }
  .gallery-cta { margin-top: 1.5rem; }
}

@media (max-width: 480px) {
  .media-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .media-gallery--full { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .media-gallery-item figcaption { font-size: 0.8rem; padding: 0.5rem; }
}

/* ========== KURS DETAY SAYFASI ========== */
.page-hero {
  background: var(--bg-alt);
  padding: calc(var(--header-height) + 2.5rem) 1.5rem 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.breadcrumb {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 0.35rem; }

.course-detail {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 3rem 0;
}
@media (max-width: 800px) {
  .course-detail { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .page-hero { padding: calc(var(--header-height) + 1.75rem) 1rem 1.75rem; }
  .page-hero h1 { font-size: clamp(1.35rem, 4vw, 1.75rem); }
  .course-detail { padding: 2rem 0; }
  .course-detail h2 { font-size: 1.2rem; }
  .course-detail li { padding-left: 1.5rem; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .page-hero { padding: calc(var(--header-height) + 1rem) 0.75rem 1rem; }
  .breadcrumb { font-size: 0.85rem; }
  .course-detail { padding: 1.5rem 0; }
}

.course-detail .course-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}
.course-detail .course-content { min-width: 0; }
.course-detail h2 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.course-detail ul { list-style: none; }
.course-detail li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  line-height: 1.65;
}
.course-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tertiary);
}
.course-detail .course-link {
  margin-top: 1rem;
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ========== İLETİŞİM SAYFASI ========== */
.contact-page {
  padding: calc(var(--header-height) + 3rem) 0 4rem;
}
.contact-page h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  color: var(--heading);
}
.contact-page .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}
.contact-address {
  margin-top: 1.5rem;
  padding: 2rem;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  max-width: 400px;
}
.contact-address .name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--tertiary);
}
.contact-address p { margin-bottom: 0.35rem; opacity: 0.95; }
.contact-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  max-width: 480px;
}

@media (max-width: 768px) {
  .contact-page { padding: calc(var(--header-height) + 2rem) 0 3rem; }
  .contact-address { max-width: 100%; padding: 1.5rem; }
}

@media (max-width: 480px) {
  .contact-page { padding: calc(var(--header-height) + 1.5rem) 0 2.5rem; }
  .contact-page h1 { font-size: 1.5rem; }
  .contact-page .lead { font-size: 1rem; }
  .contact-address { padding: 1.25rem; }
  .contact-note { font-size: 0.9rem; }
}

/* ========== CTA BÖLÜMÜ ========== */
.cta-section {
  background: var(--primary);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-section .section-label-light { color: rgba(255,255,255,0.9); }
.cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  color: #fff;
}
.cta-text {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}
.cta-section .btn-primary {
  background: #fff;
  color: var(--primary);
}
.cta-section .btn-primary:hover {
  background: var(--bg-alt);
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .cta-section { padding: 3rem 0; }
  .cta-text { font-size: 1rem; }
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--heading);
  color: var(--bg);
  padding: 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
.footer-col p,
.footer-col ul { margin: 0; font-size: 0.95rem; opacity: 0.9; line-height: 1.6; }
.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #fff;
}
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.35rem; }
.site-footer a { color: var(--tertiary); }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.footer-bottom p { margin: 0; font-size: 0.9rem; opacity: 0.85; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1rem; text-align: center; }
  .footer-links ul { display: inline-block; text-align: left; }
}

@media (max-width: 480px) {
  .footer-grid { padding: 1.5rem 0.75rem; }
  .footer-bottom { padding: 1rem 0.75rem; }
  .footer-bottom p { font-size: 0.85rem; }
}

/* Genel responsive: küçük ekranlarda okunaklılık */
@media (max-width: 480px) {
  body { font-size: 16px; }
}
