/* =====================================================
   GENEL DEĞİŞKENLER
===================================================== */
:root {
  --primary: #0a2f68;
  --primary-dark: #08254f;
  --secondary: #d8112f;
  --bg: #f4f6fb;
  --surface: #ffffff;
  --text: #0f213d;
  --muted: #5f6f88;
  --stroke: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 14px 34px rgba(8, 37, 79, 0.10);
  --shadow-hover: 0 22px 46px rgba(8, 37, 79, 0.16);
  --topbar-h: 44px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

/* =====================================================
   RESET / TEMEL AYARLAR
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.section-space {
  padding: 96px 0;
}

/* =====================================================
   ORTAK KÜÇÜK BAŞLIK / EYEBROW
===================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--secondary);
  border-radius: 999px;
}

.section-head h2,
.tracking-copy h2,
.gallery-head h2,
.feature-video-copy h2,
.spotlight-copy h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin: 0;
}

.section-head p,
.tracking-copy p,
.hero-content p,
.feature-video-copy p,
.spotlight-copy p {
  color: var(--muted);
  line-height: 1.72;
}

/* =====================================================
   TOPBAR
===================================================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-h);
  z-index: 1045;
  background: rgba(5, 25, 56, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.topbar a,
.topbar span {
  color: #d8e2f1;
  text-decoration: none;
}

.topbar-left a,
.topbar-left span,
.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
}

.topbar .material-symbols-outlined {
  font-size: 16px;
}

.topbar-left a:hover,
.topbar-right a:hover {
  color: #ffffff;
}

body.has-topbar {
  padding-top: var(--topbar-h);
}

.topbar-hidden .topbar {
  transform: translateY(-100%);
  opacity: 0;
}

/* -------------------------
   TOPBAR MOBIL
-------------------------- */
@media (max-width: 991.98px) {
  .topbar {
    display: none;
  }

  body.has-topbar {
    padding-top: 0;
  }
}

/* =====================================================
   NAVBAR
===================================================== */
.custom-navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  width: 100%;
  z-index: 1040;
  padding: 14px 0;
  background: rgba(8, 33, 72, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.custom-navbar.scrolled {
  top: 0;
  background: rgba(7, 32, 70, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.custom-navbar .container-xxl {
  align-items: center;
}

.navbar-brand {
  margin-right: 24px;
}

/* LOGOLU BRAND */
.brand-wrap {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.brand-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  margin-top: 4px;
}

.navbar-nav .nav-link {
  position: relative;
  color: #ffffff;
  font-weight: 700;
  padding: 10px 14px !important;
  border-radius: 999px;
  transition: 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.navbar-nav .nav-link.nav-contact {
  background: var(--secondary);
  color: #ffffff !important;
  padding: 10px 18px !important;
  box-shadow: 0 10px 20px rgba(216, 17, 47, 0.24);
}

.navbar-nav .nav-link.nav-contact:hover {
  background: #bc0b26;
  color: #ffffff !important;
}

.navbar-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
}

.custom-dropdown {
  background: #ffffff;
  border: none;
  border-radius: 18px;
  padding: 10px;
  min-width: 220px;
  box-shadow: 0 18px 40px rgba(8, 32, 71, 0.14);
  margin-top: 12px;
}

.custom-dropdown .dropdown-item {
  font-weight: 600;
  color: var(--primary);
  border-radius: 12px;
  padding: 10px 14px;
  transition: 0.25s ease;
}

.custom-dropdown .dropdown-item:hover,
.custom-dropdown .dropdown-item:focus {
  background: rgba(10, 47, 104, 0.08);
  color: var(--primary);
}

/* HAMBURGER */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 12px;
  padding: 6px 8px;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler .material-symbols-outlined {
  font-size: 28px;
  line-height: 1;
}

/* -------------------------
   NAVBAR TABLET / MOBIL
-------------------------- */
@media (max-width: 991.98px) {
  .custom-navbar {
    top: 0;
    padding: 12px 0;
    background: rgba(7, 32, 70, 0.96);
  }

  .navbar-brand {
    margin-right: 0;
    max-width: 78%;
  }

  .brand-wrap {
    gap: 8px;
  }

  .brand-logo {
    height: 38px;
  }

  .brand-title {
    font-size: 0.95rem;
    line-height: 1.05;
  }

  .brand-sub {
    font-size: 0.64rem;
    margin-top: 3px;
  }

  .navbar-collapse {
    background: rgba(6, 46, 105, 0.98);
    padding: 16px;
    border-radius: 18px;
    margin-top: 12px;
  }

  .navbar-nav {
    width: 100%;
    gap: 8px !important;
    align-items: stretch !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    width: 100%;
    display: block;
    border-radius: 14px;
    padding: 12px 14px !important;
  }

  .navbar-nav .nav-link.nav-contact {
    text-align: center;
  }

  .custom-dropdown {
    min-width: 100%;
    margin-top: 8px;
    border-radius: 14px;
    box-shadow: none;
  }

  .custom-dropdown .dropdown-item {
    padding: 10px 12px;
    white-space: normal;
  }
}

@media (max-width: 767.98px) {
  .custom-navbar {
    padding: 10px 0;
  }

  .navbar-brand {
    max-width: 78%;
  }

  .brand-logo {
    height: 34px;
  }

  .brand-title {
    font-size: 0.88rem;
  }

  .brand-sub {
    font-size: 0.60rem;
  }

  .navbar-toggler .material-symbols-outlined {
    font-size: 26px;
  }
}

/* =====================================================
   HERO / ANA GİRİŞ
===================================================== */
.hero-section {
  position: relative;
  min-height: 660px;
  padding-top: 154px;
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  background: linear-gradient(90deg,
      rgba(7, 31, 66, 0.92) 0%,
      rgba(7, 31, 66, 0.72) 45%,
      rgba(7, 31, 66, 0.54) 100%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  padding-bottom: 142px;
}

.hero-content {
  max-width: 720px;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3rem, 5.7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
  font-weight: 800;
  color: #fff;
}

.hero-content h1 span {
  color: var(--secondary);
}

.hero-content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
  margin: 0 0 28px;
}

.hero-actions .btn {
  padding: 15px 26px;
  border-radius: 18px;
  font-weight: 800;
}

.btn-hero-primary {
  background: var(--secondary);
  color: #fff;
}

.btn-hero-primary:hover {
  background: #bc0b26;
  color: #fff;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Slider yön okları */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-prev {
  left: 16px;
}

.hero-next {
  right: 16px;
}

/* Slider noktaları */
.hero-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 132px;
  display: flex;
  gap: 12px;
  z-index: 4;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.38);
  transition: 0.25s;
}

.dot.active {
  width: 48px;
  border-radius: 999px;
  background: #fff;
}

/* -------------------------
   HERO TABLET
-------------------------- */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 110px;
  }

  .hero-content-wrap {
    padding-bottom: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 8vw, 4rem);
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 12px !important;
  }

  .hero-actions .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .hero-prev {
    left: 14px;
  }

  .hero-next {
    right: 14px;
  }

  .hero-dots {
    bottom: 26px;
  }
}

/* -------------------------
   HERO MOBIL
-------------------------- */
@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 108px;
    padding-bottom: 70px;
  }

  .hero-content-wrap {
    padding-bottom: 24px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.03;
  }

  .hero-content p {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    bottom: 14px;
    gap: 10px;
  }

  .dot.active {
    width: 34px;
  }
}

/* =====================================================
   PROGRAMLAR / KARTLAR
===================================================== */
.quick-nav-section {
  position: relative;
  margin-top: -118px;
  z-index: 5;
}

.cards-row {
  align-items: stretch;
  position: relative;
  z-index: 6;
}

.level-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fd 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* KARTA ÖZEL TEMALAR */
.level-card-ilk {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(47, 103, 188, 0.10);
}

.level-card-lgs {
  background: linear-gradient(180deg, #fff7f9 0%, #fff0f4 100%);
  border: 1px solid rgba(216, 17, 47, 0.12);
}

.level-card-yks {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid rgba(10, 47, 104, 0.12);
}

.level-card:hover {
  transform: translateY(-8px);
}

.level-card-ilk:hover {
  box-shadow: 0 22px 46px rgba(47, 103, 188, 0.16);
}

.level-card-lgs:hover {
  box-shadow: 0 22px 46px rgba(216, 17, 47, 0.18);
}

.level-card-yks:hover {
  box-shadow: 0 22px 46px rgba(10, 47, 104, 0.18);
}

/* GÖRSEL */
.level-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.level-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.level-card:hover .level-media img {
  transform: scale(1.05);
}

/* GÖRSEL ÜST KATMAN */
.level-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 37, 79, 0.04) 0%,
      rgba(8, 37, 79, 0.20) 100%);
  pointer-events: none;
}

/* ROZET */
.custom-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 10px 20px rgba(8, 32, 71, 0.16);
}

.badge-ilk {
  background: linear-gradient(135deg, #2f67bc, #103a73);
}

.badge-lgs {
  background: linear-gradient(135deg, #d8112f, #a80c24);
}

.badge-yks {
  background: linear-gradient(135deg, #0a2f68, #08254f);
}

/* BODY */
.level-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 210px);
}

.level-tag {
  display: inline-flex;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
}

.level-card-ilk .level-tag {
  color: #2f67bc;
}

.level-card-lgs .level-tag {
  color: var(--secondary);
}

.level-card-yks .level-tag {
  color: var(--primary);
}

.level-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 16px;
}

.level-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #56657e;
}

.level-card li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
}

.level-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.level-card-ilk li::before {
  background: #2f67bc;
}

.level-card-lgs li::before {
  background: var(--secondary);
}

.level-card-yks li::before {
  background: var(--primary);
}

/* LINK */
.level-card a {
  margin-top: auto;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.25s ease;
}

.level-card-ilk a {
  color: #2f67bc;
}

.level-card-lgs a {
  color: var(--secondary);
}

.level-card-yks a {
  color: var(--primary);
}

.level-card a:hover {
  transform: translateX(4px);
}

/* -------------------------
   PROGRAMLAR TABLET
-------------------------- */
@media (max-width: 991.98px) {
  .quick-nav-section {
    margin-top: 0;
    padding-top: 28px;
  }

  .cards-row {
    row-gap: 20px !important;
  }

  .level-card {
    border-radius: 26px;
  }

  .level-media {
    height: 220px;
  }

  .level-body {
    height: auto;
    padding: 22px 20px 24px;
  }

  .level-card h3 {
    font-size: 1.7rem;
  }

  .level-card ul {
    gap: 10px;
  }

  .custom-badge {
    top: 14px;
    left: 14px;
    font-size: 0.72rem;
    padding: 7px 12px;
  }
}

/* -------------------------
   PROGRAMLAR MOBİL
-------------------------- */
@media (max-width: 767.98px) {
  .quick-nav-section {
    padding-top: 22px;
  }

  .level-card {
    border-radius: 22px;
  }

  .level-media {
    height: 190px;
  }

  .level-card h3 {
    font-size: 1.45rem;
    line-height: 1.1;
  }

  .level-body {
    padding: 18px 18px 22px;
  }

  .level-tag {
    font-size: 0.72rem;
    margin-bottom: 10px;
  }

  .level-card li {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .level-card a {
    font-size: 0.95rem;
  }

  .custom-badge {
    top: 12px;
    left: 12px;
    font-size: 0.68rem;
    padding: 6px 10px;
    letter-spacing: 0.08em;
  }
}

/* -------------------------
   ÇOK KÜÇÜK MOBİL
-------------------------- */
@media (max-width: 575.98px) {
  .level-media {
    height: 180px;
  }

  .level-card h3 {
    font-size: 1.32rem;
  }

  .level-body {
    padding: 16px 16px 20px;
  }

  .level-card ul {
    gap: 8px;
  }

  .level-card li {
    font-size: 0.92rem;
  }
}

/* =====================================================
   BAŞARI / SPOTLIGHT
===================================================== */
.spotlight-success {
  padding-top: 118px;
  margin-top: 72px;
}

.spotlight-shell {
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  border-radius: 38px;
  padding: 56px 54px 40px;
  box-shadow: var(--shadow-soft);
}

.spotlight-copy h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 18px;
}

.spotlight-copy h2 span {
  color: var(--secondary);
}

.spotlight-copy p {
  color: var(--muted);
  line-height: 1.82;
  max-width: 560px;
}

.spotlight-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.spot-badge {
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(8, 32, 71, 0.08);
}

.spot-badge strong {
  display: block;
  color: var(--primary);
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.spot-badge span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.96rem;
}

.placement-board {
  display: grid;
  gap: 18px;
}

.placement-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 26px;
  padding: 22px 22px 20px;
  box-shadow: 0 18px 40px rgba(8, 32, 71, 0.08);
}

.placement-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.24rem;
  color: var(--primary);
  margin: 0 0 6px;
}

.placement-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.place-logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #103a73, #2f67bc);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  flex: 0 0 64px;
}

.place-b .place-logo {
  background: linear-gradient(160deg, #df1234, #b30e29);
}

.place-c .place-logo {
  background: linear-gradient(160deg, #102a55, #18448a);
}

.result-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: linear-gradient(135deg, #3d6fd0, #3c67c4);
  border-radius: 30px;
  padding: 28px 34px;
  color: #fff;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  font-size: 32px;
}

.result-item strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
}

.result-item small {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* -------------------------
   BAŞARI TABLET
-------------------------- */
@media (max-width: 991.98px) {
  .spotlight-success {
    padding-top: 72px;
    margin-top: 40px
  }

  .spotlight-shell {
    padding: 34px 22px 24px;
    border-radius: 28px;
  }

  .spotlight-copy h2 {
    font-size: clamp(1.9rem, 5vw, 2.6rem);
    line-height: 1.1;
  }

  .spotlight-copy p {
    max-width: 100%;
    line-height: 1.7;
  }

  .spotlight-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .spot-badge {
    min-width: unset;
    width: 100%;
  }

  .placement-card {
    padding: 18px;
    border-radius: 20px;
  }

  .place-logo {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 16px;
  }

  .placement-card h4 {
    font-size: 1.08rem;
  }

  .result-ribbon {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
  }

  .result-item {
    align-items: flex-start;
  }

  .result-icon {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .result-item strong {
    font-size: 1.6rem;
  }

  .result-item small {
    font-size: 0.92rem;
  }
}

/* -------------------------
   BAŞARI MOBIL
-------------------------- */
@media (max-width: 767.98px) {
  .result-ribbon {
    grid-template-columns: 1fr;
  }

  .spotlight-success {
    padding-top: 40px;
    margin-top: 20px;
  }
}

/* =====================================================
   NEDEN BİZ
===================================================== */
.why-section {
  padding-top: 26px;
}

.why-section .section-head {
  margin-top: 18px;
  margin-bottom: 22px;
}

.why-row {
  margin-top: 30px !important;
}

.why-item {
  height: 100%;
  padding: 28px 24px;
  border-radius: 28px;
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: 0.35s;
}

.why-item:hover {
  transform: translateY(-8px);
}

.why-a {
  background: linear-gradient(135deg, #0b397f, #153f86);
}

.why-b {
  background: linear-gradient(135deg, #d8112f, #b70d26);
}

.why-c {
  background: linear-gradient(135deg, #0b254f, #143d6e);
}

.why-d {
  background: linear-gradient(135deg, #153f86, #315fa5);
}

.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
}

.why-item h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.why-item p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

/* -------------------------
   NEDEN BİZ TABLET / MOBIL
-------------------------- */
@media (max-width: 991.98px) {
  .why-section {
    padding-top: 12px;
  }

  .why-row {
    margin-top: 20px !important;
  }

  .why-item {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .why-icon {
    width: 56px;
    height: 56px;
    font-size: 26px;
    border-radius: 16px;
  }
}

/* =====================================================
   AKADEMİK TAKİP
===================================================== */
.tracking-section {
  background: linear-gradient(180deg, #f4f6fb 0%, #edf2fb 100%);
  padding-top: 72px;
}

.tracking-section .row {
  align-items: stretch !important;
}

.tracking-copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tracking-copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.95rem);
}

.tracking-copy h2 span {
  color: var(--secondary);
}

.tracking-copy p {
  max-width: 600px;
}

.tracking-steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.tracking-step {
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: 0 16px 36px rgba(8, 32, 71, 0.08);
  min-height: 112px;
}

.step-badge {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #113c7a;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 800;
  flex: 0 0 58px;
}

.tracking-step h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 6px;
}

.tracking-step p {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Sağ taraftaki görsel alanı */
.tracking-visual {
  height: 100%;
}

.tracking-image-box {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.tracking-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* -------------------------
   TAKİP TABLET
-------------------------- */
@media (max-width: 991.98px) {
  .tracking-section {
    padding-top: 56px;
  }

  .tracking-copy h2 {
    font-size: clamp(1.8rem, 4.8vw, 2.4rem);
  }

  .tracking-copy p {
    max-width: 100%;
  }

  .tracking-steps {
    gap: 12px;
    margin-top: 22px;
  }

  .tracking-step {
    padding: 16px;
    border-radius: 20px;
    gap: 14px !important;
  }

  .step-badge {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    font-size: 1.2rem;
    border-radius: 14px;
  }

  .tracking-step h5 {
    font-size: 1.1rem;
  }

  .tracking-step p {
    font-size: 0.96rem;
  }

  .tracking-visual {
    margin-top: 8px;
  }

  .tracking-image-box {
    min-height: 380px;
    border-radius: 24px;
  }
}

/* -------------------------
   TAKİP MOBIL
-------------------------- */
@media (max-width: 767.98px) {
  .tracking-section {
    padding-top: 44px;
  }

  .tracking-copy h2 {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .tracking-step {
    min-height: auto;
  }

  .tracking-image-box {
    min-height: 280px;
    border-radius: 20px;
  }

  .tracking-image-box img {
    object-fit: cover;
  }
}

/* =====================================================
   TANITIM VİDEOSU
===================================================== */
.video-feature-section {
  padding-top: 82px;
}

.feature-video-card {
  background: linear-gradient(135deg, #f7fbff 0%, #eef4ff 100%);
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-video-media {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.feature-video-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-video-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 35, 74, 0.15), rgba(10, 35, 74, 0.45));
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.large-play {
  width: 118px;
  height: 118px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.large-play .material-symbols-outlined {
  font-size: 54px;
}

.feature-video-copy {
  padding: 42px 34px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-video-copy h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 18px;
}

.feature-video-copy h2 span {
  color: var(--secondary);
}

.feature-video-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.03rem;
  margin-bottom: 26px;
}

.btn-video {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* -------------------------
   VIDEO TABLET / MOBIL
-------------------------- */
@media (max-width: 991.98px) {
  .video-feature-section {
    padding-top: 64px;
  }

  .feature-video-card {
    border-radius: 28px;
  }

  .feature-video-media {
    min-height: 320px;
  }

  .feature-video-copy {
    padding: 28px 22px;
  }

  .feature-video-copy h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .feature-video-copy p {
    font-size: 0.98rem;
    margin-bottom: 20px;
  }

  .large-play {
    width: 92px;
    height: 92px;
  }

  .large-play .material-symbols-outlined {
    font-size: 42px;
  }

  .btn-video {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .feature-video-media {
    min-height: 260px;
  }
}

/* =====================================================
   GALERİ
===================================================== */
.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.gallery-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 18px;
  border: 1.5px solid rgba(13, 27, 52, 0.2);
  color: var(--text);
  font-weight: 700;
  background: #fff;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 16px;
}

.bento-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease, filter 0.75s ease;
}

.bento-item:hover img {
  transform: scale(1.11);
  filter: brightness(0.9);
}

.bento-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 46, 105, 0.04), rgba(6, 46, 105, 0.58));
}

.bento-item span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bento-large {
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

/* -------------------------
   GALERİ TABLET
-------------------------- */
@media (max-width: 991.98px) {
  .gallery-section {
    padding-top: 16px;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .gallery-btn {
    width: 100%;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
    gap: 12px;
  }

  .bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento-wide {
    grid-column: span 2;
  }
}

/* -------------------------
   GALERİ MOBIL
-------------------------- */
@media (max-width: 767.98px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-large,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-item {
    height: 230px;
  }
}

/* =====================================================
   SSS
===================================================== */
.faq-section {
  padding-top: 82px !important;
}

.faq-shell {
  background: linear-gradient(135deg, #f7faff 0%, #eef4ff 100%);
  border-radius: 38px;
  padding: 36px;
  box-shadow: 0 22px 54px rgba(8, 32, 71, 0.08);
}

.faq-intro-card {
  background: linear-gradient(160deg, #0c346c, #123f84);
  color: #fff;
  border-radius: 28px;
  padding: 30px 28px;
  min-height: 100%;
  box-shadow: 0 16px 34px rgba(8, 32, 71, 0.18);
}

.faq-intro-card .eyebrow {
  color: #fff;
  opacity: 0.92;
}

.faq-intro-card .eyebrow::before {
  background: rgba(255, 255, 255, 0.9);
}

.faq-intro-card h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
}

.faq-intro-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin: 0;
}

.custom-accordion {
  margin-top: 0 !important;
}

.custom-accordion .accordion-item {
  border: 1px solid rgba(11, 42, 89, 0.08);
  border-radius: 22px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 32, 71, 0.06);
}

.custom-accordion .accordion-item+.accordion-item {
  margin-top: 14px;
}

.custom-accordion .accordion-button {
  padding: 22px 24px;
  font-size: 1.08rem;
  background: #fff;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  box-shadow: none;
}

.custom-accordion .accordion-body {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.72;
}

/* -------------------------
   SSS TABLET / MOBIL
-------------------------- */
@media (max-width: 991.98px) {
  .faq-section {
    padding-top: 56px !important;
  }

  .faq-shell {
    padding: 22px;
    border-radius: 28px;
  }

  .faq-intro-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .faq-intro-card h2 {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  }

  .custom-accordion .accordion-button {
    padding: 18px 18px;
    font-size: 1rem;
  }

  .custom-accordion .accordion-body {
    padding: 0 18px 18px;
  }
}

/* =====================================================
   FOOTER
===================================================== */
.footer-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(217, 17, 47, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(61, 111, 208, 0.18), transparent 32%),
    linear-gradient(180deg, #0a1f44 0%, #081933 100%);
  padding: 84px 0 26px;
  color: #fff;
  overflow: hidden;
}

.footer-top {
  position: relative;
  z-index: 2;
}

.footer-brand-wrap {
  margin-bottom: 18px;
}

.footer-brand-wrap-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 6px;
  flex: 0 0 70px;
}

.footer-brand {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.footer-brand-sub {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #b7c7e2;
}

.footer-text {
  color: #cad4e5;
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 0;
}

.footer-section h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li+li {
  margin-top: 12px;
}

.footer-links a {
  color: #cad4e5;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

/* CTA */
.footer-cta-box {
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.footer-cta-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 76, 103, 0.14);
  color: #ff7187;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta-box h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-cta-box p {
  color: #cad4e5;
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s ease;
}

.footer-btn-primary {
  background: linear-gradient(135deg, #f21f45, #cf1032);
  color: #fff;
  box-shadow: 0 12px 26px rgba(210, 22, 55, 0.28);
}

.footer-btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
}

.footer-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.footer-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* SOSYAL İKONLAR */
.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c7d4e8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.28s ease;
}

.footer-social-icons a:hover {
  color: #fff;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.footer-social-icons svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ALT ALAN */
.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: #9fb1cf;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom-links a {
  color: #9fb1cf;
  text-decoration: none;
  font-size: 0.88rem;
  transition: 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* -------------------------
   FOOTER TABLET
-------------------------- */
@media (max-width: 991.98px) {
  .footer-section {
    padding: 64px 0 24px;
  }

  .footer-brand {
    font-size: 1.7rem;
  }

  .footer-brand-sub {
    font-size: 0.92rem;
  }

  .footer-text {
    max-width: 100%;
  }

  .footer-logo {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .footer-cta-box {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .footer-bottom {
    margin-top: 34px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------------------------
   FOOTER MOBİL
-------------------------- */
@media (max-width: 767.98px) {
  .footer-section {
    padding: 54px 0 22px;
  }

  .footer-brand-wrap-logo {
    align-items: flex-start;
  }

  .footer-logo {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    border-radius: 12px;
  }

  .footer-brand {
    font-size: 1.55rem;
  }

  .footer-brand-sub {
    font-size: 0.84rem;
  }

  .footer-cta-buttons {
    flex-direction: column;
  }

  .footer-btn {
    width: 100%;
  }

  .footer-bottom-links {
    gap: 12px;
  }
}

/* =====================================================
   MODAL / LIGHTBOX
===================================================== */
.video-modal-content {
  background: #000;
  border: none;
  border-radius: 22px;
  overflow: hidden;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 24, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1080;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  border-radius: 20px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 42px;
  line-height: 1;
  border: none;
  background: transparent;
  color: #fff;
}

/* -------------------------
   LIGHTBOX MOBIL
-------------------------- */
@media (max-width: 767.98px) {
  .lightbox-overlay {
    padding: 18px;
  }

  .lightbox-close {
    top: 10px;
    right: 16px;
    font-size: 34px;
  }
}

/* =====================================================
   REVEAL ANİMASYONLARI
===================================================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.32s;
}

/* =====================================================
   EN KÜÇÜK EKRAN DÜZELTMELERİ
===================================================== */
@media (max-width: 575.98px) {
  .container-xxl {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .section-space {
    padding: 64px 0;
  }

  .result-ribbon {
    grid-template-columns: 1fr;
  }

  .placement-card {
    flex-direction: column;
  }

  .result-item {
    align-items: center;
  }
}

/* =====================================================
   ORTAK İÇ SAYFA YAPISI
   Bu alan tüm iç sayfalarda kullanılacak ana iskelet CSS'idir.
   Kullanım alanları:
   - Hakkımızda
   - Vizyon & Misyon
   - Kurslar
   - Sınavlar
   - Galeri
===================================================== */



/* =====================================================
   1) İÇ SAYFA HERO ALANI
   Üstteki büyük banner alanı
   İçinde:
   - arka plan görseli
   - koyu overlay
   - breadcrumb
   - başlık
   - açıklama
===================================================== */
.inner-page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 170px 0 72px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 
   Sayfaya özel hero görseli
   Örnek kullanım:
   <section class="inner-page-hero about-hero">
*/
.about-hero {
  background-image: url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1600&q=80");
}

/* 
   Diğer sayfalar için örnek classlar:
   .vision-hero { background-image: url(...); }
   .courses-hero { background-image: url(...); }
   .exams-hero { background-image: url(...); }
   .gallery-hero { background-image: url(...); }
*/

.inner-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(7, 31, 66, 0.90) 0%,
      rgba(7, 31, 66, 0.76) 45%,
      rgba(7, 31, 66, 0.58) 100%);
  z-index: 1;
}

.inner-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.inner-page-hero-content h1 {
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #fff;
}

.inner-page-hero-content p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  line-height: 1.75;
}



/* =====================================================
   2) BREADCRUMB
   Hero içindeki sayfa yolu
===================================================== */
.inner-breadcrumb-wrap {
  position: relative;
  z-index: 2;
}

.inner-breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.72);
  --bs-breadcrumb-item-active-color: #ffffff;
  margin-bottom: 14px !important;
}

.inner-breadcrumb .breadcrumb-item,
.inner-breadcrumb .breadcrumb-item.active,
.inner-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.86);
}

.inner-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: 0.25s ease;
}

.inner-breadcrumb .breadcrumb-item a:hover {
  color: #ffffff;
}



/* =====================================================
   3) İÇ SAYFA ANA GÖVDE
   Hero altındaki ana beyaz kutu alan
===================================================== */
.inner-content-section {
  position: relative;
  background: linear-gradient(180deg, #f4f6fb 0%, #eef3fb 100%);
  padding-top: 88px;
  padding-bottom: 36px;
}

.inner-content-shell {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border-radius: 34px;
  padding: 48px 44px;
  box-shadow: 0 20px 52px rgba(8, 32, 71, 0.08);
}



/* =====================================================
   4) İÇ SAYFA METİN ALANI
   Sol taraftaki başlık ve açıklama bölümü
===================================================== */
.inner-content-copy h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 18px;
}

.inner-content-copy h2 span {
  color: var(--secondary);
}

.inner-content-copy p {
  color: var(--muted);
  line-height: 1.84;
  margin-bottom: 14px;
  font-size: 1rem;
}



/* =====================================================
   5) İÇ SAYFA GÖRSEL ALANI
   Sağdaki büyük görsel kutusu
===================================================== */
.inner-content-visual {
  height: 100%;
  min-height: 440px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(8, 32, 71, 0.12);
  background: #fff;
}

.inner-content-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}



/* =====================================================
   6) ALT MİNİ KARTLAR
   Hakkımızda, vizyon-misyon, sınavlar vb. alanlarda
   kullanılacak ortak kart yapısı
===================================================== */
.about-mini-card {
  height: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(8, 32, 71, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-mini-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(8, 32, 71, 0.13);
}

.about-mini-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #103a73, #2f67bc);
  color: #fff;
  font-size: 32px;
}

.about-mini-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 10px;
}

.about-mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* =====================================================
   7) ALT CTA ALANI
   İç sayfaların sonunda kullanılacak çağrı alanı
   Footer ile birleşmemesi için alt boşluk verilmiştir
===================================================== */
.inner-bottom-cta-section {
  padding: 28px 0 72px;
  background: linear-gradient(180deg, #eef3fb 0%, #f4f6fb 100%);
}

.inner-bottom-cta {
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  border-radius: 32px;
  padding: 34px 36px;
  box-shadow: 0 18px 42px rgba(8, 32, 71, 0.08);
  border: 1px solid rgba(10, 47, 104, 0.06);
}

.inner-bottom-cta h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 12px;
}

.inner-bottom-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  max-width: 620px;
}

.inner-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 18px;
  background: var(--secondary);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(216, 17, 47, 0.22);
  transition: 0.28s ease;
}

.inner-cta-btn:hover {
  background: #bc0b26;
  color: #fff;
  transform: translateY(-2px);
}

/* =====================================================
   8) TABLET RESPONSIVE
===================================================== */
@media (max-width: 991.98px) {
  .inner-page-hero {
    min-height: 320px;
    padding: 132px 0 56px;
    background-position: center;
  }

  .inner-page-hero-content {
    max-width: 100%;
  }

  .inner-page-hero-content h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .inner-page-hero-content p {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .inner-content-section {
    padding-top: 60px;
    padding-bottom: 24px;
  }

  .inner-content-shell {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .inner-content-copy h2 {
    font-size: clamp(1.75rem, 4.8vw, 2.4rem);
  }

  .inner-content-visual {
    min-height: 360px;
    border-radius: 24px;
  }

  .inner-bottom-cta-section {
    padding: 16px 0 56px;
  }

  .inner-bottom-cta {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .inner-bottom-cta h2 {
    line-height: 1.15;
  }
}

/* =====================================================
   9) MOBİL RESPONSIVE
===================================================== */
@media (max-width: 767.98px) {
  .inner-page-hero {
    min-height: 290px;
    padding: 112px 0 40px;
    align-items: flex-end;
  }

  .inner-breadcrumb {
    margin-bottom: 10px !important;
  }

  .inner-breadcrumb .breadcrumb-item,
  .inner-breadcrumb .breadcrumb-item a,
  .inner-breadcrumb .breadcrumb-item.active {
    font-size: 0.76rem;
  }

  .inner-page-hero-content h1 {
    font-size: 2rem;
    line-height: 1.06;
    margin-bottom: 12px;
  }

  .inner-page-hero-content p {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .inner-content-section {
    padding-top: 42px;
  }

  .inner-content-shell {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .inner-content-copy h2 {
    font-size: 1.7rem;
    line-height: 1.14;
  }

  .inner-content-copy p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .inner-content-visual {
    min-height: 260px;
    border-radius: 20px;
  }

  .about-mini-card {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .about-mini-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 28px;
  }

  .about-mini-card h4 {
    font-size: 1rem;
  }

  .about-mini-card p {
    font-size: 0.92rem;
  }

  .inner-bottom-cta-section {
    padding: 12px 0 46px;
  }

  .inner-bottom-cta {
    padding: 22px 18px;
    text-align: center;
    border-radius: 20px;
  }

  .inner-bottom-cta h2 {
    font-size: 1.55rem;
    line-height: 1.14;
  }

  .inner-bottom-cta p {
    font-size: 0.94rem;
    max-width: 100%;
  }

  .inner-cta-btn {
    width: 100%;
    margin-top: 10px;
  }
}

/* =====================================================
   10) ÇOK KÜÇÜK EKRANLAR
===================================================== */
@media (max-width: 575.98px) {
  .inner-page-hero {
    min-height: 270px;
    padding-top: 106px;
    padding-bottom: 34px;
  }

  .inner-page-hero-content h1 {
    font-size: 1.8rem;
  }

  .inner-content-shell {
    padding: 20px 16px;
  }

  .inner-page-hero-content p {
    font-size: 0.92rem;
  }
}

/* =====================================================
   VİZYON & MİSYON SAYFASI
===================================================== */
.vision-hero {
  background-image: url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1600&q=80");
}

.vm-panel {
  height: 100%;
  border-radius: 30px;
  padding: 32px 28px;
  box-shadow: 0 18px 42px rgba(8, 32, 71, 0.08);
}

.vm-panel-vision {
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

.vm-panel-mission {
  background: linear-gradient(135deg, #fff8fa 0%, #fff1f4 100%);
}

.vm-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 34px;
  color: #fff;
  background: linear-gradient(160deg, #103a73, #2f67bc);
}

.vm-panel-mission .vm-icon {
  background: linear-gradient(160deg, #d8112f, #b70d26);
}

.vm-panel h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 16px;
}

.vm-panel p {
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 12px;
}

@media (max-width: 991.98px) {
  .vm-panel {
    border-radius: 24px;
    padding: 26px 22px;
  }

  .vm-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 30px;
    margin-bottom: 16px;
  }

  .vm-panel h2 {
    font-size: clamp(1.45rem, 4.6vw, 2rem);
  }
}

@media (max-width: 767.98px) {
  .vm-panel {
    border-radius: 20px;
    padding: 22px 18px;
  }

  .vm-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 26px;
  }

  .vm-panel h2 {
    font-size: 1.45rem;
    line-height: 1.16;
  }

  .vm-panel p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}

/* =====================================================
   EĞİTMEN KADROSU SAYFASI
   Kullanım:
   - egitmen-kadrosu.php
   Yapı:
   - hero görseli
   - ortalanmış giriş alanı
   - eğitmen kart grid sistemi
===================================================== */

.teachers-hero {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80");
}

.grid-page-intro {
  max-width: 760px;
  margin: 0 auto 26px;
}

.grid-page-intro h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 14px;
}

.grid-page-intro p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 680px;
}

.staff-card {
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 14px 34px rgba(8, 32, 71, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(8, 32, 71, 0.13);
}

.staff-card-image {
  height: 240px;
  overflow: hidden;
}

.staff-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.staff-card:hover .staff-card-image img {
  transform: scale(1.05);
}

.staff-card-body {
  padding: 22px 20px 24px;
  text-align: center;
}

.staff-card-body h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 6px;
}

.staff-card-body span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.staff-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .grid-page-intro {
    margin-bottom: 22px;
  }

  .grid-page-intro h2 {
    font-size: clamp(1.7rem, 4.8vw, 2.2rem);
  }

  .staff-card {
    border-radius: 20px;
  }

  .staff-card-image {
    height: 220px;
  }

  .staff-card-body {
    padding: 20px 18px 22px;
  }
}

@media (max-width: 767.98px) {
  .grid-page-intro h2 {
    font-size: 1.7rem;
    line-height: 1.14;
  }

  .grid-page-intro p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .staff-card-image {
    height: 230px;
  }

  .staff-card-body h4 {
    font-size: 1.05rem;
  }

  .staff-card-body p {
    font-size: 0.92rem;
  }
}

/* =====================================================
   KURS DETAY SAYFASI (İLKÖĞRETİM)
   Bu stil:
   - kurs-ilkogretim.php
   - kurs-ortaokul.php
   - kurs-yks.php
   sayfalarında ortak kullanılabilir
===================================================== */


/* HERO GÖRSELİ */
.ilkokul-hero {
  background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80");
}


/* =====================================================
   PROGRAM İÇERİĞİ YAZI ALANI
===================================================== */
.inner-content-copy h2 span {
  color: var(--secondary);
}


/* =====================================================
   MİNİ KARTLAR (PROGRAM DETAYLARI)
===================================================== */
.about-mini-card {
  height: 100%;
  background: #fff;
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(8, 32, 71, 0.08);
  transition: 0.3s ease;
}

.about-mini-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(8, 32, 71, 0.13);
}

.about-mini-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #103a73, #2f67bc);
  color: #fff;
  font-size: 30px;
}

.about-mini-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.about-mini-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* =====================================================
   SÜREÇ ALANI (TRACKING)
===================================================== */
.tracking-steps {
  display: grid;
  gap: 16px;
}

.tracking-step {
  background: #fff;
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 14px 34px rgba(8, 32, 71, 0.08);
  align-items: center;
}

.step-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #103a73;
  color: #fff;
}

.ortaokul-hero {
  background-image: url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1600&q=80");
}

.yks-hero {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80");
}

/* =====================================================
   SINAVLAR SAYFASI
===================================================== */
.exams-hero {
  background-image: url("https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=1600&q=80");
}

.exam-card {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 14px 34px rgba(8, 32, 71, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exam-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(8, 32, 71, 0.13);
}

.exam-card-featured {
  background: linear-gradient(180deg, #fefefe 0%, #eef4ff 100%);
}

.exam-card-image {
  height: 240px;
  overflow: hidden;
}

.exam-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.exam-card:hover .exam-card-image img {
  transform: scale(1.05);
}

.exam-card-body {
  padding: 24px 22px 26px;
}

.exam-badge {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #667799;
  font-weight: 800;
}

.exam-card-body h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 14px;
}

.exam-card-body p {
  color: var(--muted);
  line-height: 1.76;
  margin-bottom: 16px;
}

.exam-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.exam-card-body li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.exam-card-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}

@media (max-width: 991.98px) {
  .exam-card {
    border-radius: 22px;
  }

  .exam-card-image {
    height: 220px;
  }

  .exam-card-body {
    padding: 20px 18px 22px;
  }

  .exam-card-body h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 767.98px) {
  .exam-card-image {
    height: 220px;
  }

  .exam-card-body h3 {
    font-size: 1.25rem;
  }

  .exam-card-body p,
  .exam-card-body li {
    font-size: 0.95rem;
  }
}

/* =====================================================
   GALERİ SAYFASI
===================================================== */
.gallery-hero {
  background-image: url("https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&w=1600&q=80");
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 240px 240px 240px;
  gap: 16px;
}

.gallery-page-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(8, 32, 71, 0.08);
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s ease, filter 0.75s ease;
}

.gallery-page-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.gallery-page-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 46, 105, 0.05), rgba(6, 46, 105, 0.58));
}

.gallery-page-item span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-page-large {
  grid-row: span 2;
}

.gallery-page-wide {
  grid-column: span 2;
}

@media (max-width: 991.98px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px 220px 220px;
    gap: 12px;
  }

  .gallery-page-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-page-wide {
    grid-column: span 2;
  }

  .gallery-page-item {
    border-radius: 20px;
  }
}

@media (max-width: 767.98px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-page-large,
  .gallery-page-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-page-item {
    height: 230px;
    border-radius: 18px;
  }

  .gallery-page-item span {
    font-size: 0.78rem;
    left: 14px;
    bottom: 14px;
  }
}

/* =====================================================
   SADE İLETİŞİM SAYFASI
===================================================== */
.contact-clean-hero {
  padding: 150px 0 42px;
  background: linear-gradient(180deg, #f4f6fb 0%, #eef3fb 100%);
}

.contact-clean-hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.contact-clean-hero-content h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 14px;
}

.contact-clean-hero-content p {
  margin: 0 auto;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

/* ANA ALAN */
.contact-clean-section {
  padding: 10px 0 44px;
  background: linear-gradient(180deg, #eef3fb 0%, #f4f6fb 100%);
}

.contact-clean-box {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border-radius: 32px;
  padding: 32px 28px;
  box-shadow: 0 18px 42px rgba(8, 32, 71, 0.08);
}

.contact-clean-box h2,
.contact-clean-map-head h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 14px;
}

.contact-clean-box p,
.contact-clean-map-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* FORM */
.contact-form .form-label {
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-clean-input {
  min-height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(10, 47, 104, 0.10);
  padding: 0 16px;
  box-shadow: none !important;
}

.contact-clean-input:focus {
  border-color: rgba(10, 47, 104, 0.30);
}

.contact-clean-textarea {
  min-height: 160px;
  resize: vertical;
  padding-top: 14px;
}

.contact-clean-submit {
  min-height: 58px;
  padding: 0 30px;
  border-radius: 18px;
  background: var(--secondary);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(216, 17, 47, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-clean-submit:hover {
  background: #bc0b26;
  color: #fff;
}

/* SAĞ BİLGİLER */
.contact-clean-list {
  display: grid;
  gap: 14px;
}

.contact-clean-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(10, 47, 104, 0.08);
  box-shadow: 0 12px 28px rgba(8, 32, 71, 0.06);
  text-decoration: none;
  transition: 0.28s ease;
}

.contact-clean-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(8, 32, 71, 0.10);
}

.static-item:hover {
  transform: none;
}

.contact-clean-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #103a73, #2f67bc);
  color: #fff;
  font-size: 26px;
}

.contact-clean-item strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-clean-item span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* BUTONLAR */
.contact-clean-actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-clean-btn-primary,
.contact-clean-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.contact-clean-btn-primary {
  background: var(--secondary);
  color: #fff;
}

.contact-clean-btn-primary:hover {
  background: #bc0b26;
  color: #fff;
}

.contact-clean-btn-outline {
  border: 1px solid rgba(10, 47, 104, 0.14);
  color: var(--primary);
  background: #fff;
}

.contact-clean-btn-outline:hover {
  color: var(--primary);
  background: rgba(10, 47, 104, 0.04);
}

/* HARİTA */
.contact-clean-map-section {
  padding: 10px 0 90px;
  background: linear-gradient(180deg, #eef3fb 0%, #f4f6fb 100%);
}

.contact-clean-map-head {
  max-width: 760px;
  margin: 0 auto 24px;
}

.contact-clean-map-wrap {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(8, 32, 71, 0.12);
}

.contact-clean-map {
  width: 100%;
  height: 540px;
}

.contact-clean-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.contact-clean-map-btn-wrap {
  margin-top: 24px;
}

.contact-clean-map-btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.contact-clean-map-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* TABLET */
@media (max-width: 991.98px) {
  .contact-clean-hero {
    padding: 128px 0 34px;
  }

  .contact-clean-box {
    border-radius: 24px;
    padding: 24px 20px;
  }

  .contact-clean-map-wrap {
    border-radius: 24px;
  }

  .contact-clean-map {
    height: 430px;
  }
}

/* MOBİL */
@media (max-width: 767.98px) {
  .contact-clean-hero {
    padding: 110px 0 26px;
  }

  .contact-clean-hero-content h1 {
    font-size: 2rem;
  }

  .contact-clean-hero-content p {
    font-size: 0.95rem;
  }

  .contact-clean-section {
    padding-bottom: 28px;
  }

  .contact-clean-box {
    border-radius: 20px;
    padding: 20px 16px;
  }

  .contact-clean-input {
    min-height: 52px;
    border-radius: 14px;
  }

  .contact-clean-submit {
    width: 100%;
  }

  .contact-clean-item {
    border-radius: 18px;
    padding: 16px 14px;
  }

  .contact-clean-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 14px;
    font-size: 22px;
  }

  .contact-clean-actions {
    flex-direction: column;
  }

  .contact-clean-btn-primary,
  .contact-clean-btn-outline {
    width: 100%;
  }

  .contact-clean-map-section {
    padding: 0 0 54px;
  }

  .contact-clean-map-wrap {
    border-radius: 20px;
  }

  .contact-clean-map {
    height: 320px;
  }
}

/* =====================================================
   VİDEOLAR SAYFASI
===================================================== */
.video-hero {
  background-image: url("https://images.unsplash.com/photo-1497633762265-9d179a990aa6?auto=format&fit=crop&w=1600&q=80");
}

.video-card-local {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 14px 34px rgba(8, 32, 71, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card-local:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(8, 32, 71, 0.13);
}

.video-card-media {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #000;
}

.video-card-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.video-card-body {
  padding: 22px 20px 24px;
}

.video-card-body h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 8px;
}

.video-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 991.98px) {
  .video-card-local {
    border-radius: 22px;
  }

  .video-card-media {
    height: 220px;
  }

  .video-card-body {
    padding: 20px 18px 22px;
  }
}

@media (max-width: 767.98px) {
  .video-card-local {
    border-radius: 20px;
  }

  .video-card-media {
    height: 220px;
  }

  .video-card-body h4 {
    font-size: 1.02rem;
  }

  .video-card-body p {
    font-size: 0.92rem;
  }
}

/* =====================================================
   FLOATING BUTTONS
===================================================== */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

/* ORTAK BUTON */
.float-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

/* WHATSAPP */
.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 22px 44px rgba(37, 211, 102, 0.4);
}

/* SCROLL TOP */
.scroll-top-btn {
  background: linear-gradient(135deg, #d8112f, #ff3b5c);
}

.scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 22px 44px rgba(216, 17, 47, 0.4);
}

/* MOBİL */
@media (max-width: 576px) {
  .float-btn {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }
}

/* =====================================================
   FLOATING UI
===================================================== */

.floating-ui {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* BUTONLAR */
.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* SCROLL TOP */
.floating-scrolltop {
  background: linear-gradient(135deg, #d8112f, #b70d26);
  color: #fff;
  opacity: 0;
  pointer-events: none;
}

.floating-scrolltop.show {
  opacity: 1;
  pointer-events: auto;
}

/* WHATSAPP */
.floating-whatsapp {
  background: #25D366;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

/* HOVER */
.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

/* =====================================================
   POPUP
===================================================== */

.contact-popup {
  position: fixed;
  right: 90px;
  bottom: 20px;
  width: 300px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
  z-index: 1090;
}

.contact-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-popup-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  background: none;
  cursor: pointer;
}

.contact-popup-content h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-popup-content p {
  font-size: 14px;
  margin-bottom: 12px;
}

/* BUTONLAR */
.popup-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  border-radius: 999px;
  font-weight: 700;
  padding: 0 14px;
  text-decoration: none;
}

.popup-btn.primary {
  background: #25D366;
  color: #fff;
}

.popup-btn.outline {
  border: 1px solid #ccc;
  color: #333;
}

/* MOBILE */
@media (max-width: 767px) {
  .contact-popup {
    right: 10px;
    left: 10px;
    width: auto;
    bottom: 90px;
  }
}

/* WhatsApp butonu */
.floating-whatsapp {
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* WhatsApp logo */
.whatsapp-logo {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 34px;
}

/* Mobilde biraz küçült */
@media (max-width: 576px) {
  .whatsapp-logo {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }
}

/* =====================================================
   BAŞARILARIMIZ SAYFASI
===================================================== */
.success-page-hero {
  background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?auto=format&fit=crop&w=1600&q=80");
}

/* İSTATİSTİK BANDI */
.success-stats-section {
  position: relative;
  margin-top: -54px;
  z-index: 5;
  padding-bottom: 24px;
}

.success-stats-shell {
  background: linear-gradient(135deg, #3d6fd0, #325daf);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 20px 44px rgba(8, 32, 71, 0.14);
}

.success-stat-card {
  height: 100%;
  border-radius: 24px;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  text-align: center;
}

.success-stat-card .material-symbols-outlined {
  font-size: 34px;
  margin-bottom: 10px;
}

.success-stat-card strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 8px;
}

.success-stat-card small {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
}

/* ÜNİVERSİTE KARTLARI */
.success-uni-card {
  height: 100%;
  padding: 26px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 14px 34px rgba(8, 32, 71, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-uni-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 42px rgba(8, 32, 71, 0.13);
}

.success-uni-card-featured {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.success-uni-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #103a73, #2f67bc);
  color: #fff;
  font-size: 32px;
}

.success-uni-card small {
  display: inline-block;
  margin-bottom: 8px;
  color: #6b7890;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.success-uni-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 10px;
}

.success-uni-card strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: var(--secondary);
}

/* LGS / YKS BAŞARI ALANI */
.success-highlight-card {
  height: 100%;
  padding: 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 14px 34px rgba(8, 32, 71, 0.08);
}

.success-highlight-card-featured {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.success-highlight-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 12px;
}

.success-highlight-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

/* TABLET */
@media (max-width: 991.98px) {
  .success-stats-section {
    margin-top: -34px;
  }

  .success-stats-shell {
    padding: 20px;
    border-radius: 24px;
  }

  .success-stat-card {
    border-radius: 20px;
    padding: 18px 14px;
  }

  .success-stat-card strong {
    font-size: 1.8rem;
  }

  .success-uni-card,
  .success-highlight-card {
    border-radius: 22px;
    padding: 22px 20px;
  }
}

/* MOBİL */
@media (max-width: 767.98px) {
  .success-stats-section {
    margin-top: -22px;
  }

  .success-stats-shell {
    padding: 16px;
    border-radius: 20px;
  }

  .success-stat-card {
    border-radius: 18px;
    padding: 16px 12px;
  }

  .success-stat-card strong {
    font-size: 1.5rem;
  }

  .success-stat-card small {
    font-size: 0.88rem;
  }

  .success-uni-card h3,
  .success-highlight-card h3 {
    font-size: 1.25rem;
  }

  .success-uni-card strong {
    font-size: 1.7rem;
  }
}