/* ==========================================================================
   LUMI KIDS — MASTER DESIGN SYSTEM & STYLESHEET
   Brand: LUMI KIDS
   Philosophy: Kökten Işığa | Işığınla büyü.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GOOGLE FONTS & IMPORTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Noto+Serif:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Master Colors */
  --lumi-navy: #0C1D35;
  --lumi-purple: #6558BB;
  --lumi-orange: #F06A16;

  /* Official Tint System */
  /* Purple Tints */
  --lumi-purple-light-1: #8479C9;
  --lumi-purple-light-2: #A39BD6;
  --lumi-purple-light-3: #C1BCE4;
  --lumi-purple-subtle: #E0DEF1;

  /* Orange Tints */
  --lumi-orange-light-1: #F38845;
  --lumi-orange-light-2: #F6A673;
  --lumi-orange-light-3: #F9C3A2;
  --lumi-orange-subtle: #FCE1D0;

  /* Navy Tints */
  --lumi-navy-light-1: #3D4A5D;
  --lumi-navy-light-2: #6D7786;
  --lumi-navy-light-3: #9EA5AE;
  --lumi-navy-subtle: #CED2D7;

  /* Neutral & Surface Palette */
  --color-white: #FFFFFF;
  --color-bg-warm: #FBFBFC;
  --color-bg-subtle: #F6F6F9;
  --color-bg-alt: #F2F1F8;
  --color-text-primary: #0C1D35;
  --color-text-secondary: #3D4A5D;
  --color-text-muted: #6D7786;
  --color-text-inverse: #FFFFFF;

  /* Borders & Dividers */
  --border-subtle: rgba(12, 29, 53, 0.08);
  --border-light: rgba(12, 29, 53, 0.12);
  --border-purple: rgba(101, 88, 187, 0.2);
  --border-orange: rgba(240, 106, 22, 0.3);

  /* Typography */
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Noto Serif', Georgia, 'Times New Roman', serif;

  /* Fluid Typography Scale */
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);   /* 12-13px */
  --font-size-sm: clamp(0.875rem, 0.825rem + 0.25vw, 0.9375rem); /* 14-15px */
  --font-size-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);    /* 16-17px */
  --font-size-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);     /* 18-20px */
  --font-size-xl: clamp(1.35rem, 1.25rem + 0.6vw, 1.625rem);     /* 21.6-26px */
  --font-size-2xl: clamp(1.75rem, 1.5rem + 1.2vw, 2.25rem);      /* 28-36px */
  --font-size-3xl: clamp(2.15rem, 1.8rem + 1.8vw, 3rem);         /* 34-48px */
  --font-size-hero: clamp(2.5rem, 2rem + 2.5vw, 3.85rem);        /* 40-62px */

  /* Spacing System */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Container & Layout */
  --container-max: 1240px;
  --container-narrow: 840px;
  --container-padding: clamp(1rem, 4vw, 2.5rem);
  --header-height: 84px;

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-subtle: 0 2px 10px rgba(12, 29, 53, 0.04);
  --shadow-card: 0 4px 20px rgba(12, 29, 53, 0.06);
  --shadow-hover: 0 12px 32px rgba(12, 29, 53, 0.09);
  --shadow-dropdown: 0 16px 40px rgba(12, 29, 53, 0.12);

  /* Transitions */
  --transition-fast: 0.18s ease-out;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-warm);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   4. ACCESSIBILITY & FOCUS
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--lumi-purple);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  background: var(--lumi-navy);
  color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --------------------------------------------------------------------------
   5. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: clamp(4.5rem, 7.5vw, 7.5rem);
  padding-bottom: clamp(4.5rem, 7.5vw, 7.5rem);
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section--alt {
  background-color: var(--color-bg-subtle);
}

.section--navy {
  background-color: var(--lumi-navy);
  color: var(--color-white);
}

.section--purple-subtle {
  background-color: var(--lumi-purple-subtle);
}

/* Section Header Structure */
.section-header {
  margin-bottom: clamp(2.5rem, 4.5vw, 4.25rem);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lumi-purple);
  margin-bottom: var(--space-3);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background-color: var(--lumi-orange);
}

.section--navy .eyebrow {
  color: var(--lumi-orange-light-2);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--lumi-navy);
  margin-bottom: var(--space-4);
}

.section--navy .section-title {
  color: var(--color-white);
}

.section-lead {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.section--navy .section-lead {
  color: var(--lumi-navy-subtle);
}

/* --------------------------------------------------------------------------
   6. BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--font-size-sm);
  font-weight: 700;
  line-height: 1;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--lumi-orange);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(240, 106, 22, 0.28);
}

.btn--primary:hover {
  background-color: var(--lumi-orange-light-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 106, 22, 0.36);
  color: var(--color-white);
}

.btn--secondary {
  background-color: var(--color-white);
  color: var(--lumi-navy);
  border-color: var(--border-light);
}

.btn--secondary:hover {
  background-color: var(--color-bg-subtle);
  border-color: var(--lumi-purple);
  color: var(--lumi-purple);
  transform: translateY(-2px);
}

.btn--purple {
  background-color: var(--lumi-purple);
  color: var(--color-white);
}

.btn--purple:hover {
  background-color: var(--lumi-purple-light-1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(101, 88, 187, 0.3);
  color: var(--color-white);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-white:hover {
  background-color: var(--color-white);
  color: var(--lumi-navy);
  border-color: var(--color-white);
}

.btn--sm {
  padding: 10px 22px;
  font-size: var(--font-size-xs);
}

.btn--full {
  width: 100%;
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   7. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), background-color var(--transition-fast), box-shadow var(--transition-fast);
  will-change: transform;
}

.header.header--hidden {
  transform: translateY(-100%);
}

.header--scrolled {
  box-shadow: 0 4px 20px rgba(12, 29, 53, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-4);
}

@media (max-width: 960px) {
  .header__inner {
    padding-left: clamp(1.25rem, 4vw, 2rem);
  }
}

.header__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo {
  height: 38px;
  width: auto;
  aspect-ratio: 706 / 149;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1020px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    background: #FAF9FD;
    padding: 5px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid #ECE8F4;
  }

  .nav-desktop__link {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-text-secondary);
    letter-spacing: 0.01em;
    padding: 7px 16px;
    border-radius: var(--radius-pill);
    position: relative;
    transition: all var(--transition-fast);
  }

  .nav-desktop__link:hover,
  .nav-desktop__link.active {
    color: var(--lumi-purple);
    background-color: var(--color-white);
    box-shadow: 0 2px 8px rgba(101, 88, 187, 0.1);
  }

  .nav-desktop__link::after {
    display: none;
  }
}

.header__cta {
  display: none;
}

@media (min-width: 860px) {
  .header__cta {
    display: inline-flex;
  }
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #FAF9FD;
  border: 1px solid #ECE8F4;
  cursor: pointer;
  z-index: 1010;
  transition: all var(--transition-fast);
}

.mobile-toggle:hover {
  background-color: var(--color-white);
  border-color: var(--lumi-purple);
}

@media (min-width: 1020px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle__bar {
  width: 20px;
  height: 2px;
  background-color: var(--lumi-navy);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.mobile-toggle__bar:not(:last-child) {
  margin-bottom: 5px;
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Overlay (Frosted Glassmorphism) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 360px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: -16px 0 48px rgba(12, 29, 53, 0.16);
  z-index: 1005;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 2rem;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  right: 0;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(12, 29, 53, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.mobile-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer Header */
.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(236, 232, 246, 0.8);
}

.mobile-drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ECE8F6;
  color: var(--lumi-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(12, 29, 53, 0.04);
}

.mobile-drawer__close:hover {
  background-color: var(--color-white);
  color: var(--lumi-purple);
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(101, 88, 187, 0.15);
}

/* Mobile Drawer Links */
.mobile-drawer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.mobile-drawer__link {
  font-size: 16px;
  font-weight: 700;
  color: var(--lumi-navy);
  padding: 13px 18px;
  border-radius: 14px;
  background-color: rgba(250, 249, 253, 0.85);
  border: 1px solid rgba(236, 232, 246, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.mobile-drawer__link-text {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--lumi-navy);
}

.mobile-drawer__link-arrow {
  color: #94A3B8;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.mobile-drawer__link:hover,
.mobile-drawer__link:active {
  color: var(--lumi-purple);
  background-color: var(--color-white);
  border-color: var(--lumi-purple);
  box-shadow: 0 6px 20px rgba(101, 88, 187, 0.12);
  transform: translateX(4px);
}

.mobile-drawer__link:hover .mobile-drawer__link-text,
.mobile-drawer__link:active .mobile-drawer__link-text {
  color: var(--lumi-purple);
}

.mobile-drawer__link:hover .mobile-drawer__link-arrow,
.mobile-drawer__link:active .mobile-drawer__link-arrow {
  color: var(--lumi-purple);
  transform: translateX(3px);
}

/* Prominent Mobile Drawer CTA directly below links */
.mobile-drawer__cta {
  margin-top: 0.25rem;
}

.mobile-drawer__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  background-color: #F06A16;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(240, 106, 22, 0.38);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.mobile-drawer__cta-btn:hover,
.mobile-drawer__cta-btn:active {
  background-color: #D95612;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(240, 106, 22, 0.45);
  color: var(--color-white);
}

/* --------------------------------------------------------------------------
   8. HERO SECTION (BESPOKE BRAND COMPOSITION)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-white);
  padding-top: clamp(2.5rem, 4.5vw, 4.5rem);
  padding-bottom: 0;
}

/* Background Organic Geometric Shapes Matching Reference Design */
.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Soft Center-Left Glow / Off-White Circle */
.hero__shape-circle-cream {
  position: absolute;
  top: -8%;
  left: 32%;
  width: clamp(520px, 55vw, 900px);
  height: clamp(520px, 55vw, 900px);
  border-radius: 50%;
  background: #F5F4FA;
  z-index: 0;
  animation: floatBgCream 18s ease-in-out infinite alternate;
}

/* Large Soft Purple Right Circle Behind Child */
.hero__shape-circle-purple {
  position: absolute;
  top: -18%;
  right: -10%;
  width: clamp(700px, 75vw, 1200px);
  height: clamp(700px, 75vw, 1200px);
  border-radius: 50%;
  background: #DFDCF8;
  z-index: 0;
  animation: floatBgPurple 16s ease-in-out infinite alternate;
}

/* Secondary Soft Lilac Floating Bubble */
.hero__shape-circle-lilac {
  position: absolute;
  top: 30%;
  right: 16%;
  width: clamp(380px, 42vw, 650px);
  height: clamp(380px, 42vw, 650px);
  border-radius: 50%;
  background: #EDE9FD;
  opacity: 0.7;
  z-index: 0;
  animation: floatBgLilac 20s ease-in-out infinite alternate;
}

/* Vibrant Solid Orange Sun Circle (Positioned left of child's head & lowered with lively float) */
.hero__shape-circle-orange {
  position: absolute;
  top: clamp(60px, 10vw, 115px);
  left: 47%;
  width: clamp(120px, 13vw, 155px);
  height: clamp(120px, 13vw, 155px);
  border-radius: 50%;
  background: #F06A16;
  z-index: 1;
  box-shadow: 0 16px 40px rgba(240, 106, 22, 0.35);
  animation: floatOrangeActive 5.5s ease-in-out infinite;
}

/* ---- Organic Twinkling Gold Sparkles Cluster ---- */
.hero__sparkles-cluster {
  position: absolute;
  top: clamp(35px, 6vw, 75px);
  left: 36%;
  width: 140px;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}

.hero__sparkle-star {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform-origin: center center;
  filter: drop-shadow(0 2px 8px rgba(229, 160, 77, 0.45));
}

/* Star 1 - Main Primary Sparkle */
.hero__sparkle-star--1 {
  top: 20%;
  left: 35%;
  animation: sparkleTwinkle1 4.8s ease-in-out infinite;
  animation-delay: 0s;
}

/* Star 2 - Top Right Micro Sparkle */
.hero__sparkle-star--2 {
  top: -5%;
  left: 70%;
  animation: sparkleTwinkle2 5.8s ease-in-out infinite;
  animation-delay: 1.6s;
}

/* Star 3 - Bottom Left Soft Sparkle */
.hero__sparkle-star--3 {
  top: 60%;
  left: 15%;
  animation: sparkleTwinkle3 4.4s ease-in-out infinite;
  animation-delay: 2.8s;
}

/* Star 4 - Middle Right Medium Sparkle */
.hero__sparkle-star--4 {
  top: 40%;
  left: 80%;
  animation: sparkleTwinkle1 5.4s ease-in-out infinite;
  animation-delay: 2.2s;
}

/* Star 5 - Floating Top Left Sparkle */
.hero__sparkle-star--5 {
  top: 5%;
  left: 8%;
  animation: sparkleTwinkle2 4.0s ease-in-out infinite;
  animation-delay: 0.8s;
}

@media (max-width: 960px) {
  .hero__shape-circle-orange {
    top: 3%;
    bottom: auto;
    left: auto;
    right: 10%;
    width: 75px;
    height: 75px;
  }
  .hero__sparkles-cluster {
    top: 4%;
    bottom: auto;
    left: 32%;
    width: 90px;
    height: 70px;
  }
  .hero__shape-circle-purple {
    top: auto;
    bottom: -10%;
    right: -25%;
    width: 440px;
    height: 440px;
    opacity: 0.85;
  }
  .hero__shape-circle-cream {
    top: auto;
    bottom: 8%;
    left: -20%;
    width: 360px;
    height: 360px;
  }
  .hero__shape-circle-lilac {
    display: none;
  }
}

@keyframes sparkleTwinkle1 {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.2) rotate(-15deg);
  }
  30% {
    opacity: 0.95;
    transform: translateY(0) scale(1.1) rotate(5deg);
  }
  55% {
    opacity: 0.8;
    transform: translateY(-8px) scale(0.95) rotate(15deg);
  }
  80% {
    opacity: 0;
    transform: translateY(-16px) scale(0.3) rotate(30deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-16px) scale(0) rotate(30deg);
  }
}

@keyframes sparkleTwinkle2 {
  0% {
    opacity: 0;
    transform: translateY(6px) scale(0.1) rotate(10deg);
  }
  35% {
    opacity: 0.9;
    transform: translateY(-4px) scale(1.15) rotate(-10deg);
  }
  60% {
    opacity: 0.75;
    transform: translateY(-10px) scale(0.9) rotate(-20deg);
  }
  85% {
    opacity: 0;
    transform: translateY(-18px) scale(0.2) rotate(-35deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-18px) scale(0) rotate(-35deg);
  }
}

@keyframes sparkleTwinkle3 {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.2) rotate(0deg);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px) scale(1.2) rotate(20deg);
  }
  65% {
    opacity: 0.6;
    transform: translateY(-8px) scale(0.85) rotate(35deg);
  }
  85% {
    opacity: 0;
    transform: translateY(-14px) scale(0.1) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-14px) scale(0) rotate(45deg);
  }
}

/* Smooth Soft Floating Keyframes for Live Background Atmosphere */
@keyframes floatBgPurple {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-14px, 10px) scale(1.02); }
  100% { transform: translate(8px, -8px) scale(0.98); }
}

@keyframes floatBgLilac {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(10px, -12px) scale(1.03); }
  100% { transform: translate(-6px, 8px) scale(0.97); }
}

@keyframes floatBgCream {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-8px, -10px) scale(1.02); }
  100% { transform: translate(10px, 6px) scale(0.99); }
}

@keyframes floatOrangeActive {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  32% {
    transform: translateY(-16px) scale(1.06) rotate(4deg);
  }
  68% {
    transform: translateY(8px) scale(0.96) rotate(-3deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes floatBadgeLively {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  45% {
    transform: translateY(-12px) rotate(-1.5deg);
  }
  80% {
    transform: translateY(4px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes floatSparkle {
  0% { transform: translateY(0) rotate(0deg) scale(0.9); opacity: 0.6; }
  100% { transform: translateY(-6px) rotate(15deg) scale(1.15); opacity: 1; }
}

/* ---- Hero Grid Layout ---- */
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: flex-end;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 620px;
  }
}

/* ---- Left Column: Text Content & Actions ---- */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
  padding-top: clamp(2rem, 3.5vw, 3.5rem);
  padding-bottom: clamp(4rem, 6.5vw, 6.5rem);
}

.hero__title {
  font-size: clamp(3.8rem, 6.2vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--lumi-navy);
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
}

.hero__title-highlight {
  color: var(--lumi-navy);
}

.hero__statements {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(2rem, 3vw, 2.75rem);
}

.hero__statement-lead {
  font-size: clamp(1.15rem, 1.25vw, 1.35rem);
  color: #526173;
  line-height: 1.6;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  margin-bottom: clamp(2rem, 3vw, 2.75rem);
}

.hero__btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background-color: #F06A16;
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-base);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(240, 106, 22, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.hero__btn-visit:hover {
  transform: translateY(-2px);
  background-color: #D95612;
  box-shadow: 0 16px 32px rgba(240, 106, 22, 0.42);
  color: var(--color-white);
}

.hero__link-approach {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--lumi-navy);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  background-color: var(--color-white);
  border: 1px solid #ECE8F6;
  box-shadow: 0 4px 14px rgba(12, 29, 53, 0.05);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.hero__link-approach:hover {
  color: var(--lumi-purple);
  border-color: var(--border-purple);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.hero__link-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #EDE9FE;
  color: #6558BB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.hero__link-approach:hover .hero__link-circle {
  transform: translateX(2px);
  background-color: var(--lumi-purple);
  color: var(--color-white);
}

/* Quote Card Pill */
.hero__quote-card {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 12px 24px;
  background-color: var(--color-white);
  border: 1px solid #F0EDF8;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(12, 29, 53, 0.05);
}

.hero__quote-icon {
  color: #6558BB;
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
}

.hero__quote-text {
  font-size: var(--font-size-sm);
  color: var(--lumi-navy);
  line-height: 1.35;
  font-weight: 700;
  margin: 0;
}

/* ---- Right Column: Large Grounded Child Cutout ---- */
.hero__visual-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  align-self: flex-end;
}

.hero__photo {
  display: block;
  width: 100%;
  max-width: clamp(680px, 66vw, 940px);
  height: auto;
  object-fit: contain;
  object-position: top center;
  position: relative;
  z-index: 2;
  margin-bottom: clamp(-100px, -1vw, -200px);
  filter: drop-shadow(0 20px 30px rgba(12, 29, 53, 0.08));
}

.hero__floating-badge {
  position: absolute;
  bottom: clamp(60px, 8vw, 110px);
  left: -15px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 26px rgba(12, 29, 53, 0.08);
  animation: floatBadgeLively 4.5s ease-in-out infinite;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hero__floating-badge:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 32px rgba(12, 29, 53, 0.12);
}

.hero__floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #DCFCE7;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__floating-badge-text {
  font-size: var(--font-size-sm);
  font-weight: 800;
  color: var(--lumi-navy);
  line-height: 1.2;
}

.hero__floating-badge-sub {
  font-size: 11px;
  color: #64748B;
  font-weight: 600;
}

/* ---- Centered Scroll Down Indicator Button ---- */
.hero__scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.hero__scroll-down-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid #EAE6F6;
  color: var(--lumi-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(12, 29, 53, 0.08);
  transition: all var(--transition-fast);
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero__scroll-down:hover .hero__scroll-down-btn {
  background-color: var(--lumi-purple);
  color: var(--color-white);
  border-color: var(--lumi-purple);
  transform: translateY(2px) scale(1.1);
  box-shadow: 0 10px 24px rgba(101, 88, 187, 0.35);
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(7px);
  }
  60% {
    transform: translateY(3px);
  }
}

/* ---- Mobile Responsive Fine-Tuning ---- */
@media (max-width: 960px) {
  .hero {
    padding-top: clamp(3.75rem, 8.5vw, 5.25rem);
    padding-bottom: 3.5rem;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .hero__content {
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero__title {
    font-size: clamp(2.8rem, 8.5vw, 3.8rem);
    margin-bottom: 1.25rem;
  }
  .hero__statements {
    margin-bottom: 1.5rem;
  }
  .hero__statement-lead {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  .hero__actions {
    gap: 12px;
    margin-bottom: 1.5rem;
  }
  .hero__btn-visit {
    padding: 14px 26px;
    font-size: 0.95rem;
  }
  .hero__link-approach {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .hero__quote-card {
    padding: 10px 18px;
  }
  .hero__visual-wrap {
    margin-top: 1rem;
    justify-content: center;
  }
  .hero__photo {
    max-width: clamp(340px, 86vw, 500px);
    margin: 0 auto clamp(-80px, -12vw, -40px);
  }
  .hero__floating-badge {
    left: 8px;
    bottom: clamp(8px, 2.5vw, 20px);
    padding: 8px 14px;
  }
  .hero__scroll-down {
    bottom: 10px;
  }
}

/* --------------------------------------------------------------------------
   HERO FOUNDATION STRIP (HORIZONTAL CARDS BLOCK BELOW HERO)
   -------------------------------------------------------------------------- */
.hero-foundation-strip {
  background-color: #F8F9FD;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid #ECE8F4;
  border-bottom: 1px solid #ECE8F4;
}

.hero-foundation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 540px) {
  .hero-foundation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-foundation-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-foundation-card {
  background-color: var(--color-white);
  border-radius: 18px;
  padding: 16px 20px;
  border: 1.5px solid #ECE8F6;
  border-top: 3.5px solid var(--theme-accent, var(--lumi-purple));
  box-shadow: 0 4px 16px rgba(12, 29, 53, 0.04);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.hero-foundation-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--theme-accent, var(--border-purple));
}

.hero-foundation-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--theme-bg, var(--lumi-purple-subtle));
  color: var(--theme-accent, var(--lumi-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-foundation-card__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--lumi-navy);
  line-height: 1.25;
  margin-bottom: 2px;
}

.hero-foundation-card__subtitle {
  font-size: 12px;
  color: #64748B;
  line-height: 1.3;
  font-weight: 500;
}


/* --------------------------------------------------------------------------
   COLOR THEMES & ICON SYSTEM (MODERN, VIBRANT & PLAYFUL)
   -------------------------------------------------------------------------- */
.theme-green {
  --theme-accent: #16A34A;
  --theme-bg: #DCFCE7;
  --theme-text: #15803D;
  --theme-border: #BBF7D0;
}

.theme-purple {
  --theme-accent: #6558BB;
  --theme-bg: #F0EEFA;
  --theme-text: #4D3FA0;
  --theme-border: #DDD6FE;
}

.theme-orange {
  --theme-accent: #F06A16;
  --theme-bg: #FEF3EC;
  --theme-text: #C24F08;
  --theme-border: #FED7AA;
}

.theme-blue {
  --theme-accent: #0284C7;
  --theme-bg: #E0F2FE;
  --theme-text: #0369A1;
  --theme-border: #BAE6FD;
}

.theme-amber {
  --theme-accent: #D97706;
  --theme-bg: #FEF9C3;
  --theme-text: #B45309;
  --theme-border: #FDE68A;
}

.theme-rose {
  --theme-accent: #E11D48;
  --theme-bg: #FFE4E6;
  --theme-text: #BE123C;
  --theme-border: #FECDD3;
}

.theme-teal {
  --theme-accent: #0D9488;
  --theme-bg: #CCFBF1;
  --theme-text: #0F766E;
  --theme-border: #99F6E4;
}

.theme-indigo {
  --theme-accent: #4F46E5;
  --theme-bg: #EEF2FF;
  --theme-text: #3730A3;
  --theme-border: #C7D2FE;
}

/* Icon Box Component */
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-bg, var(--lumi-purple-subtle));
  color: var(--theme-accent, var(--lumi-purple));
  margin-bottom: var(--space-3);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.icon-box:hover {
  transform: scale(1.06);
}

.icon-box--sm {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  margin-bottom: 0;
}

.icon-box--lg {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}

.card--themed {
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--theme-accent, var(--lumi-purple));
}

/* --------------------------------------------------------------------------
   9. BRAND STORY: KÖKTEN IŞIĞA (3-PILLAR SECTION)
   -------------------------------------------------------------------------- */
.triad-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

.triad-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.triad-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--theme-accent, var(--border-purple));
}

/* Sağ alt köşeden yayılan gradient halkalar */
.triad-card__ambient-rings {
  position: absolute;
  right: -15px;
  bottom: -15px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  filter: blur(1px);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.triad-card:hover .triad-card__ambient-rings {
  transform: scale(1.12);
  opacity: 0.85;
}

.triad-card--kok .triad-card__ambient-rings {
  background: radial-gradient(circle at center, rgba(235, 100, 29, 0.2) 0%, rgba(235, 100, 29, 0.05) 50%, transparent 75%);
  box-shadow: 
    0 0 0 6px rgba(235, 100, 29, 0.05),
    0 0 0 14px rgba(235, 100, 29, 0.03),
    0 0 0 24px rgba(235, 100, 29, 0.015);
}

.triad-card--isik .triad-card__ambient-rings {
  background: radial-gradient(circle at center, rgba(245, 158, 11, 0.22) 0%, rgba(245, 158, 11, 0.06) 50%, transparent 75%);
  box-shadow: 
    0 0 0 6px rgba(245, 158, 11, 0.06),
    0 0 0 14px rgba(245, 158, 11, 0.035),
    0 0 0 24px rgba(245, 158, 11, 0.015);
}

.triad-card--ufuk .triad-card__ambient-rings {
  background: radial-gradient(circle at center, rgba(101, 88, 187, 0.2) 0%, rgba(101, 88, 187, 0.05) 50%, transparent 75%);
  box-shadow: 
    0 0 0 6px rgba(101, 88, 187, 0.05),
    0 0 0 14px rgba(101, 88, 187, 0.03),
    0 0 0 24px rgba(101, 88, 187, 0.015);
}

.triad-card__body {
  padding: clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.triad-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.triad-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.triad-card--kok .triad-card__icon-wrap {
  background-color: #FEF3EB;
  color: var(--lumi-orange);
}

.triad-card--isik .triad-card__icon-wrap {
  background-color: #FEF8E8;
  color: #D97706;
}

.triad-card--ufuk .triad-card__icon-wrap {
  background-color: #F1EFFB;
  color: var(--lumi-purple);
}

.triad-card__title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--lumi-navy);
  margin: 0;
  line-height: 1.2;
}

.triad-card__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--font-size-sm);
  color: var(--lumi-purple);
  margin-bottom: var(--space-4);
  line-height: 1.45;
}

.triad-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: auto;
}

.triad-card__item {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  line-height: 1.45;
}

.triad-card__item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--theme-accent, var(--lumi-orange));
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. BESPOKE KURUMSAL FELSEFE & DEĞERLER DÜNYASI
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   10. OKULUMUZU TANIYIN (LUMI — MODERN EDITORIAL & PHOTO COMPOSITION)
   -------------------------------------------------------------------------- */
.lumi-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: stretch;
  margin-bottom: var(--space-12);
}

@media (min-width: 960px) {
  .lumi-overview-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-10);
  }
}

/* Sol Hikâye Kartı */
.lumi-story-card {
  background-color: var(--color-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lumi-story-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lumi-purple);
  margin-bottom: var(--space-2);
}

.lumi-story-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--lumi-orange);
}

.lumi-story-title {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: var(--lumi-navy);
  line-height: 1.25;
  margin-bottom: var(--space-3);
}

.lumi-story-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.lumi-manifesto-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  line-height: 1.55;
  color: var(--lumi-navy);
  background: linear-gradient(135deg, rgba(101, 88, 187, 0.04) 0%, rgba(235, 100, 29, 0.04) 100%);
  border-left: 3.5px solid var(--lumi-purple);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-3) var(--space-4);
  margin: 0 0 var(--space-5) 0;
}

/* Misyon & Vizyon Kompakt İkili */
.lumi-mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 540px) {
  .lumi-mv-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lumi-mv-item {
  background-color: #FAF9FD;
  border: 1px solid #ECE8F6;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.lumi-mv-item:hover {
  transform: translateY(-2px);
  border-color: var(--theme-accent, var(--lumi-purple));
}

.lumi-mv-item__tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--theme-accent, var(--lumi-purple));
  margin-bottom: var(--space-1);
  display: block;
}

.lumi-mv-item__title {
  font-size: var(--font-size-sm);
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-1);
}

.lumi-mv-item__text {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Sağ Görsel Fotoğraf Kartı */
.lumi-visual-card {
  background-color: var(--color-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.lumi-visual-card__frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  background-color: var(--color-bg-subtle);
}

.lumi-visual-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.lumi-visual-card:hover .lumi-visual-card__img {
  transform: scale(1.04);
}

.lumi-visual-card__overlay-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  font-weight: 800;
  color: var(--lumi-navy);
  box-shadow: 0 4px 14px rgba(12, 29, 53, 0.1);
}

.lumi-visual-card__overlay-badge svg {
  color: #16A34A;
}

.lumi-visual-card__footer {
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-white);
  border-top: 1px solid var(--border-subtle);
}

.lumi-visual-card__caption strong {
  display: block;
  font-size: var(--font-size-xs);
  color: var(--lumi-navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.lumi-visual-card__caption span {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* Yaşayan Değerler Bölümü */
.lumi-values-section {
  margin-top: var(--space-10);
}

.lumi-values-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.values-photo-card__floating-tag {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  color: var(--theme-accent, var(--lumi-navy));
  box-shadow: 0 4px 12px rgba(12, 29, 53, 0.08);
}

/* 12 Temel Değer Çipleri (Kompakt & Şık Modern Izgara) */
.values-chips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

@media (min-width: 540px) {
  .values-chips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 860px) {
  .values-chips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1140px) {
  .values-chips-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-chip {
  background-color: var(--color-white);
  border: 1px solid #ECE8F4;
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: 0 2px 8px rgba(12, 29, 53, 0.03);
  transition: all var(--transition-fast);
}

.value-chip:hover {
  transform: translateY(-2px);
  border-color: var(--theme-accent, var(--lumi-purple));
  box-shadow: 0 6px 16px rgba(12, 29, 53, 0.06);
}

.value-chip__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background-color: var(--theme-bg, #F3F1FB);
  color: var(--theme-accent, var(--lumi-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-chip__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.value-chip__name {
  font-size: 13px;
  font-weight: 800;
  color: var(--lumi-navy);
  line-height: 1.2;
}

.value-chip__desc {
  font-size: 10.5px;
  color: #7B8A9E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

/* --------------------------------------------------------------------------
   11. LUMI ÖĞRENME SİSTEMİ — 6 SÜTUN
   -------------------------------------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: clamp(1.4rem, 2.5vw, 1.85rem);
  border: 1px solid #ECE8F4;
  box-shadow: 0 4px 16px rgba(12, 29, 53, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--theme-accent, var(--border-purple));
  box-shadow: 0 12px 28px rgba(12, 29, 53, 0.08);
}

.pillar-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.pillar-card__icon-box {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background-color: var(--theme-bg, #F3F1FB);
  color: var(--theme-accent, var(--lumi-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-card__badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--theme-accent, var(--lumi-purple));
  background-color: var(--theme-bg, #F3F1FB);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.pillar-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-2);
  line-height: 1.25;
}

.pillar-card__text {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.pillar-card__quote {
  margin-top: auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--theme-text, var(--lumi-purple));
  padding: 8px 12px;
  background-color: var(--theme-bg, #FAF9FD);
  border-left: 3px solid var(--theme-accent, var(--lumi-purple));
  border-radius: 0 10px 10px 0;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   12. EĞİTİM BÖLÜMÜ (BÜTÜNLEŞİK EĞİTİM MODELİ) — MODERN ARCHITECTURE
   -------------------------------------------------------------------------- */
.edu-model-intro {
  background: var(--color-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-card);
  margin-bottom: var(--space-10);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: stretch;
}

@media (min-width: 920px) {
  .edu-model-intro {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-10);
  }
}

.edu-model-intro__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.edu-model-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lumi-purple);
  margin-bottom: var(--space-2);
}

.edu-model-intro__badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--lumi-orange);
}

.edu-model-intro__title {
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  font-weight: 800;
  color: var(--lumi-navy);
  line-height: 1.25;
  margin-bottom: var(--space-3);
}

.edu-model-intro__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.edu-model-intro__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1vw + 0.45rem, 1rem);
  line-height: 1.5;
  color: var(--lumi-navy);
  background: linear-gradient(135deg, rgba(101, 88, 187, 0.04) 0%, rgba(235, 100, 29, 0.04) 100%);
  border-left: 3.5px solid var(--lumi-purple);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-3) var(--space-4);
  margin: 0 0 var(--space-4) 0;
}

.edu-model-intro__pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.edu-model-chip {
  background-color: #FAF9FD;
  border: 1px solid #ECE8F6;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lumi-navy);
  transition: all var(--transition-fast);
}

.edu-model-chip:hover {
  background-color: var(--color-white);
  border-color: var(--lumi-purple);
  transform: translateY(-1px);
}

.edu-model-chip svg {
  color: #16A34A;
  flex-shrink: 0;
}

/* Pedagogik Temel Kartları Izgarası */
.edu-sources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-14);
}

@media (min-width: 768px) {
  .edu-sources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.edu-source-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.edu-source-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--theme-accent, var(--border-purple));
}

.edu-source-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.edu-source-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--theme-accent, var(--lumi-purple));
  background-color: var(--theme-bg, #F3F1FB);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: var(--space-2);
}

.edu-source-card__badge::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--theme-accent, var(--lumi-purple));
}

.edu-source-card__title {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-2);
  line-height: 1.25;
}

.edu-source-card__desc {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.edu-source-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px dashed var(--border-subtle);
}

.edu-source-pill {
  font-size: 11px;
  font-weight: 700;
  background-color: var(--theme-bg, #F6F4FB);
  color: var(--theme-accent, var(--lumi-navy));
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--theme-border, rgba(101, 88, 187, 0.12));
  transition: all var(--transition-fast);
}

.edu-source-card:hover .edu-source-pill {
  background-color: var(--color-white);
  border-color: var(--theme-accent, var(--lumi-purple));
}

/* Developmental Age Journey Timeline */
.edu-journey-header {
  margin-top: clamp(4rem, 7vw, 6rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px dashed var(--border-subtle);
}

.edu-journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: clamp(4rem, 7vw, 6rem);
}

@media (min-width: 600px) {
  .edu-journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1060px) {
  .edu-journey-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.edu-journey-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--border-subtle);
  border-top: 4px solid var(--theme-accent, var(--lumi-purple));
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.edu-journey-card:hover {
  transform: translateY(-3px);
  border-color: var(--theme-accent, var(--border-purple));
  box-shadow: var(--shadow-hover);
}

.edu-journey-card__stage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.edu-journey-card__num {
  font-size: var(--font-size-xs);
  font-weight: 800;
  color: var(--lumi-navy-light-2);
  letter-spacing: 0.08em;
}

.edu-journey-card__badge {
  background-color: var(--theme-bg, var(--lumi-purple-subtle));
  color: var(--theme-text, var(--lumi-purple));
  font-size: var(--font-size-xs);
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.edu-journey-card__title {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.edu-journey-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Learning Domains & Environments Grid (6 Core Domains) */
.edu-domains-header {
  margin-top: clamp(4rem, 7vw, 6rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px dashed var(--border-subtle);
}

.edu-domains-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .edu-domains-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .edu-domains-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.edu-domain-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--theme-accent, var(--lumi-purple));
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.edu-domain-card:hover {
  transform: translateY(-3px);
  border-color: var(--theme-accent, var(--border-purple));
  box-shadow: var(--shadow-hover);
}

.edu-domain-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--theme-bg, var(--lumi-purple-subtle));
  color: var(--theme-accent, var(--lumi-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.edu-domain-card__title {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-2);
}

.edu-domain-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. GELİŞİM TAKİBİ & DOKÜMANTASYON
   -------------------------------------------------------------------------- */
.progress-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 1024px) {
  .progress-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.progress-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.progress-card:hover {
  transform: translateY(-5px);
  border-color: var(--theme-accent, var(--border-purple));
  box-shadow: var(--shadow-hover);
}

.progress-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.progress-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background-color: var(--theme-bg, #F3F1FB);
  color: var(--theme-accent, var(--lumi-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.progress-card__title {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.progress-card__text {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   14. YAŞAM & MEKÂNSAL DENEYİM (1000m² + 1500m²)
   -------------------------------------------------------------------------- */
.life-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 900px) {
  .life-showcase {
    grid-template-columns: 1fr 1fr;
  }
}

.life-showcase__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.life-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

@media (min-width: 600px) {
  .life-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .life-items-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.life-item-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--theme-accent, var(--lumi-purple));
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-fast);
}

.life-item-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.life-item-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.life-item-card__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--theme-bg, var(--lumi-purple-subtle));
  color: var(--theme-accent, var(--lumi-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.life-item-card__title {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--lumi-navy);
  margin: 0;
}

.life-item-card__text {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* --------------------------------------------------------------------------
   15. EDITORIAL TRANSITION / BRAND MOMENT (ATMOSPHERIC BACKGROUND IMAGE)
   -------------------------------------------------------------------------- */
.brand-transition-moment {
  position: relative;
  background: linear-gradient(135deg, rgba(12, 29, 53, 0.82) 0%, rgba(30, 24, 74, 0.78) 100%), 
              url('../img/lumi-web-back2.jpg') center center / cover no-repeat;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  text-align: center;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-transition-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.7;
  color: #FFFFFF;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.01em;
}

.brand-transition-quote::before {
  content: "“";
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.35em;
  color: var(--lumi-orange);
  margin-right: 6px;
}

.brand-transition-quote::after {
  content: "”";
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.35em;
  color: var(--lumi-orange);
  margin-left: 6px;
}

/* OKUL YAŞAMI: Dual Showcase (Clean side-by-side, no nested card) */
.life-dual-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

@media (min-width: 768px) {
  .life-dual-showcase {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

.life-dual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(12, 29, 53, 0.06);
  border: 1px solid rgba(12, 29, 53, 0.06);
  background-color: var(--color-white);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.life-dual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 29, 53, 0.1);
}

.life-dual-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.life-dual-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: var(--lumi-navy);
  box-shadow: 0 4px 12px rgba(12, 29, 53, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.life-dual-card__badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* FAQ Extra Top Spacing */
.faq-section-header {
  margin-top: clamp(4.5rem, 8vw, 7rem) !important;
}

/* Feature Visual Layout Helpers */
.visual-photo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.visual-photo-card__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 380px;
  object-fit: cover;
  background-color: var(--color-bg-subtle);
}

.visual-photo-card__caption {
  padding: var(--space-3) var(--space-5);
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  background-color: var(--color-white);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.visual-photo-card__caption::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--lumi-orange);
}

/* 2-Column Split for Gelisim */
.gelisim-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  align-items: stretch;
}

@media (min-width: 920px) {
  .gelisim-feature-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--space-10);
  }
}

.gelisim-feature-content {
  background-color: var(--color-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gelisim-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lumi-purple);
  margin-bottom: var(--space-2);
}

.gelisim-feature-badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--lumi-orange);
}

.gelisim-feature-title {
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  font-weight: 800;
  color: var(--lumi-navy);
  line-height: 1.25;
  margin-bottom: var(--space-3);
}

.gelisim-feature-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.gelisim-feature-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1vw + 0.45rem, 1rem);
  line-height: 1.5;
  color: var(--lumi-navy);
  background: linear-gradient(135deg, rgba(101, 88, 187, 0.04) 0%, rgba(235, 100, 29, 0.04) 100%);
  border-left: 3.5px solid var(--lumi-purple);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-3) var(--space-4);
  margin: 0 0 var(--space-4) 0;
}

.gelisim-feature-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.gelisim-chip {
  background-color: #FAF9FD;
  border: 1px solid #ECE8F6;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lumi-navy);
  transition: all var(--transition-fast);
}

.gelisim-chip:hover {
  background-color: var(--color-white);
  border-color: var(--lumi-purple);
  transform: translateY(-1px);
}

.gelisim-chip svg {
  color: #16A34A;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   PHOTO CARD ENRICHMENTS & VISUAL STRIPS
   -------------------------------------------------------------------------- */
.card-media-header {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  background-color: var(--color-bg-subtle);
}

/* Bireysel Gelişim / Bütüncül Çocuk Gelişimi - Increased Photo Height */
.progress-card .card-media-header {
  aspect-ratio: 4 / 3;
  min-height: clamp(240px, 26vw, 290px);
}

.card-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.card--themed:hover .card-media-img,
.edu-source-card:hover .card-media-img,
.edu-domain-card:hover .card-media-img,
.progress-card:hover .card-media-img,
.triad-card:hover .card-media-img,
.life-item-card:hover .card-media-img {
  transform: scale(1.05);
}

/* Values Social Photo Strip */
.values-photo-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .values-photo-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.values-photo-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.values-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--theme-accent, var(--border-purple));
}

.values-photo-card__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
  background-color: var(--color-bg-subtle);
}

.values-photo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.values-photo-card:hover .values-photo-card__img {
  transform: scale(1.04);
}

.values-photo-card__body {
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.values-photo-card__title {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-1);
  line-height: 1.35;
}

.values-photo-card__desc {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Life Experience 5-Card Photo Grid */
.life-photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (min-width: 600px) {
  .life-photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .life-photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .life-photo-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.life-photo-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-top: 3.5px solid var(--theme-accent, var(--lumi-purple));
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.life-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.life-photo-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--color-bg-subtle);
}

.life-photo-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.life-photo-card:hover .life-photo-card__img {
  transform: scale(1.05);
}

.life-photo-card__body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.life-photo-card__title {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-1);
}

.life-photo-card__desc {
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Registration Dual Visual Showcase */
.enrollment-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .enrollment-visual-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------------------------------------------------------------------------
   16. GALERİ & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.gallery-filter-btn {
  font-size: var(--font-size-xs);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background-color: var(--color-white);
  border: 1px solid var(--border-subtle);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--lumi-purple);
  color: var(--color-white);
  border-color: var(--lumi-purple);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.gallery-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--color-bg-subtle);
}

.gallery-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-card:hover .gallery-card__img {
  transform: scale(1.04);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 29, 53, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-card:hover .gallery-card__overlay {
  opacity: 1;
}

.gallery-card__zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background-color: var(--color-white);
  color: var(--lumi-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card__info {
  padding: var(--space-4);
  background-color: var(--color-white);
}

.gallery-card__category {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lumi-purple);
  margin-bottom: 2px;
}

.gallery-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* Accessible Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(12, 29, 53, 0.92);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__dialog {
  max-width: 900px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-dropdown);
  display: flex;
  flex-direction: column;
}

.lightbox__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background-color: rgba(12, 29, 53, 0.6);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 10;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.lightbox__close:hover {
  background-color: var(--lumi-orange);
}

.lightbox__img-container {
  width: 100%;
  max-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-subtle);
}

.lightbox__img-container img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
}

.lightbox__caption {
  padding: var(--space-6);
  background-color: var(--color-white);
}

.lightbox__caption-category {
  font-size: var(--font-size-xs);
  font-weight: 800;
  color: var(--lumi-purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-1);
}

.lightbox__caption-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-2);
}

.lightbox__caption-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.lightbox__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--lumi-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 5;
  transition: all var(--transition-fast);
}

.lightbox__nav-btn:hover {
  background-color: var(--lumi-purple);
  color: var(--color-white);
}

.lightbox__nav-btn--prev {
  left: var(--space-4);
}

.lightbox__nav-btn--next {
  right: var(--space-4);
}

/* --------------------------------------------------------------------------
   17. KAYIT & SSS (ACCORDION & STEPPER)
   -------------------------------------------------------------------------- */
/* Registration Dual Visual Showcase (Sympathetic, soft rounded, no captions) */
.enrollment-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .enrollment-visual-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

.enrollment-photo-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(12, 29, 53, 0.06);
  border: 1px solid rgba(12, 29, 53, 0.05);
  background-color: var(--color-white);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.enrollment-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 29, 53, 0.1);
}

.enrollment-photo-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 350px;
  object-fit: cover;
  display: block;
}

.enrollment-photo-card:last-child .enrollment-photo-card__img,
.enrollment-photo-card__img--top {
  object-position: top center;
}

.enrollment-photo-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: var(--lumi-navy);
  box-shadow: 0 4px 12px rgba(12, 29, 53, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.enrollment-photo-card__badge .badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* Connected Adım Adım Stepper Cards */
.enrollment-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  position: relative;
  margin-bottom: var(--space-12);
}

@media (min-width: 640px) {
  .enrollment-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .enrollment-steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }
}

.enrollment-step-card {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: clamp(1.4rem, 2.5vw, 1.75rem);
  border: 1.5px solid #ECE8F6;
  box-shadow: 0 4px 18px rgba(12, 29, 53, 0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.enrollment-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--theme-accent, var(--lumi-purple));
  box-shadow: 0 14px 30px rgba(12, 29, 53, 0.08);
}

.enrollment-step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.enrollment-step-card__icon-box {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background-color: var(--theme-bg, #F3F1FB);
  color: var(--theme-accent, var(--lumi-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.enrollment-step-card:hover .enrollment-step-card__icon-box {
  transform: scale(1.08);
}

.enrollment-step-card__step-badge {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--theme-accent, var(--lumi-purple));
  background-color: var(--theme-bg, #F3F1FB);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.enrollment-step-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.enrollment-step-card__text {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Step connector arrow for desktop */
@media (min-width: 1024px) {
  .enrollment-step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--color-white);
    border: 2px solid #E2DCF0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236558BB' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(12, 29, 53, 0.08);
  }
}

/* Accordion Details/Summary */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.accordion-item {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item[open] {
  border-color: var(--border-purple);
}

.accordion-summary {
  padding: var(--space-5) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--lumi-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  list-style: none;
}

.accordion-summary::-webkit-details-marker {
  display: none;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-pill);
  background-color: var(--color-bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.accordion-item[open] .accordion-icon {
  transform: rotate(180deg);
  background-color: var(--lumi-purple-subtle);
  color: var(--lumi-purple);
}

.accordion-content {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   18. TANIŞALIM / LEAD FORM (MODERN & SIMPLIFIED)
   -------------------------------------------------------------------------- */
.form-card {
  background-color: var(--color-white);
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid #ECE8F4;
  box-shadow: 0 12px 40px rgba(12, 29, 53, 0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .form-grid__col--full {
    grid-column: span 2;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lumi-navy);
  display: flex;
  align-items: center;
}

.form-label__required {
  color: var(--lumi-orange);
  margin-left: 3px;
  font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1.5px solid #E5E7EB;
  background-color: #F8F9FC;
  color: var(--lumi-navy);
  font-size: 14.5px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9CA3AF;
  font-size: 14px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--lumi-purple);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(101, 88, 187, 0.12);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.form-hint {
  display: none;
}

.form-card .btn--primary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 22px rgba(235, 100, 29, 0.28);
  justify-content: center;
  width: 100%;
  transition: all var(--transition-smooth);
}

.form-card .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(235, 100, 29, 0.38);
}

.form-feedback {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  margin-top: var(--space-4);
  display: none;
}

.form-feedback--success {
  background-color: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}

.form-feedback--error {
  background-color: #FFEBEE;
  color: #C62828;
  border: 1px solid #FFCDD2;
}

/* --------------------------------------------------------------------------
   19. OKUL YÖNETİMİ & POLİTİKALARIMIZ
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.team-card__role {
  font-size: var(--font-size-xs);
  font-weight: 800;
  color: var(--lumi-purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}

.team-card__title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-3);
}

.team-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   20. İLETİŞİM & HARİTA
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   20. İLETİŞİM & HARİTA (MODERN & SEMPATİK TASARIM)
   -------------------------------------------------------------------------- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: stretch;
}

@media (min-width: 960px) {
  .contact-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-10);
  }
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-info-card {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: clamp(1.25rem, 2.5vw, 1.6rem);
  border: 1.5px solid #ECE8F6;
  box-shadow: 0 4px 16px rgba(12, 29, 53, 0.04);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--theme-accent, var(--lumi-purple));
  box-shadow: 0 12px 28px rgba(12, 29, 53, 0.08);
}

.contact-info-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background-color: var(--theme-bg, #F3F1FB);
  color: var(--theme-accent, var(--lumi-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.contact-info-card:hover .contact-info-card__icon {
  transform: scale(1.08);
}

.contact-info-card__content {
  flex-grow: 1;
}

.contact-info-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: 3px;
}

.contact-info-card__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--lumi-navy);
  margin: 0;
  line-height: 1.2;
}

.contact-info-card__badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--theme-accent, var(--lumi-purple));
  background-color: var(--theme-bg, #F3F1FB);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.contact-info-card__value {
  font-size: 13.5px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.contact-info-card__value strong {
  color: var(--lumi-navy);
  font-weight: 700;
}

.contact-info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--theme-accent, var(--lumi-purple));
  font-weight: 700;
  font-size: 13px;
  margin-top: 4px;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.contact-info-card__link:hover {
  transform: translateX(3px);
}

.map-card-box {
  background-color: var(--color-white);
  border-radius: 24px;
  border: 1.5px solid #ECE8F6;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(12, 29, 53, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 380px;
  position: relative;
}

.map-card-box__iframe-wrap {
  width: 100%;
  flex-grow: 1;
  min-height: 280px;
  position: relative;
  background-color: var(--color-bg-subtle);
}

.map-card-box__iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
  display: block;
}

.map-card-box__floating-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  color: var(--lumi-navy);
  box-shadow: 0 4px 14px rgba(12, 29, 53, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
}

.map-card-box__footer {
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ECE8F6;
}

.map-card-box__footer-info {
  display: flex;
  flex-direction: column;
}

.map-card-box__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--lumi-navy);
}

.map-card-box__sub {
  font-size: 12px;
  color: var(--color-text-muted);
}

.map-card-box__directions-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--lumi-purple);
  background-color: var(--lumi-purple-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all var(--transition-fast);
}

.map-card-box__directions-btn:hover {
  background-color: var(--lumi-purple);
  color: var(--color-white);
}

.map-card-box__sub {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   21. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--lumi-navy);
  color: var(--color-white);
  padding-top: clamp(3.5rem, 5vw, 5rem);
  padding-bottom: var(--space-8);
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

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

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo {
  height: 36px;
  width: auto;
  aspect-ratio: 706 / 149;
  margin-bottom: var(--space-4);
  display: block;
}

.footer__desc {
  font-size: var(--font-size-sm);
  color: var(--lumi-navy-subtle);
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: var(--space-4);
}

.footer__official-institutions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-4);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  max-width: 340px;
  width: 100%;
}

.footer__inst-item {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__inst-item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--lumi-orange);
  flex-shrink: 0;
}

.footer__legal-note {
  font-size: var(--font-size-xs);
  color: var(--lumi-navy-light-3);
  line-height: 1.5;
}

.footer__col-title {
  font-size: var(--font-size-sm);
  font-weight: 800;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__col-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background-color: var(--lumi-orange);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--font-size-sm);
  color: var(--lumi-navy-subtle);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--lumi-orange-light-2);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-xs);
  color: var(--lumi-navy-light-3);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   22. JOURNAL PAGE STYLES (`journal.html`)
   -------------------------------------------------------------------------- */
.journal-hero {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg-subtle) 100%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.journal-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .journal-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .journal-categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.journal-category-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.journal-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-purple);
  box-shadow: var(--shadow-hover);
}

.journal-category-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background-color: var(--lumi-purple-subtle);
  color: var(--lumi-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}

.journal-category-card__title {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--lumi-navy);
  margin-bottom: var(--space-2);
}

.journal-category-card__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.journal-category-card__status {
  margin-top: auto;
  font-size: var(--font-size-xs);
  font-weight: 700;
  color: var(--lumi-orange);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* --------------------------------------------------------------------------
   23. REDUCED MOTION & PRINT
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .header, .mobile-toggle, .mobile-drawer, .btn, .gallery-nav, .footer {
    display: none !important;
  }
  body {
    background: #FFFFFF !important;
    color: #000000 !important;
  }
  .section {
    padding: 20px 0 !important;
    page-break-inside: avoid;
  }
}

/* Glass Hover Buttons for Homepage Summaries */
.btn--glass-hover {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(12, 29, 53, 0.15);
  color: var(--lumi-navy);
  transition: all 0.3s ease;
}
.btn--glass-hover:hover {
  background-color: var(--lumi-orange);
  border-color: var(--lumi-orange);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(240, 106, 22, 0.3);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   OPTIMIZED DETAIL PAGE HEADER ANIMATIONS (STANDARDIZED & SUBTLE)
   -------------------------------------------------------------------------- */
.page-header-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 360px;
  max-height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-header-bg-shapes .shape-cream {
  position: absolute;
  top: -30%;
  left: 10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #F5F4FA 0%, rgba(245, 244, 250, 0) 70%);
  z-index: 0;
  animation: floatBgCream 18s ease-in-out infinite alternate;
}

.page-header-bg-shapes .shape-purple {
  position: absolute;
  top: -35%;
  right: -5%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, #DFDCF8 0%, rgba(223, 220, 248, 0) 70%);
  opacity: 0.85;
  z-index: 0;
  animation: floatBgPurple 16s ease-in-out infinite alternate;
}

.page-header-bg-shapes .shape-lilac {
  position: absolute;
  top: 10%;
  right: 22%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #EDE9FD 0%, rgba(237, 233, 253, 0) 70%);
  opacity: 0.6;
  z-index: 0;
  animation: floatBgLilac 20s ease-in-out infinite alternate;
}

.page-header-bg-shapes .shape-orange {
  position: absolute;
  top: 40px;
  right: 14%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #F06A16;
  z-index: 0;
  opacity: 0.85;
  box-shadow: 0 8px 24px rgba(240, 106, 22, 0.35);
  animation: floatOrangeActive 5.5s ease-in-out infinite;
}

.page-header-bg-shapes .shape-orange-subtle {
  position: absolute;
  top: 85px;
  left: 6%;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #F9C3A2;
  z-index: 0;
  opacity: 0.6;
  box-shadow: 0 4px 12px rgba(249, 195, 162, 0.25);
  animation: floatOrangeActive 7s ease-in-out infinite reverse;
}

@media (max-width: 768px) {
  .page-header-bg-shapes .shape-purple,
  .page-header-bg-shapes .shape-lilac {
    display: none !important;
  }
}

/* Ensure section content sits clearly in front of background shapes */
.section > .container {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   OVERLAPPING FORM CARD (HOMEPAGE TANIŞALIM OVERLAY)
   -------------------------------------------------------------------------- */
.form-card--overlap {
  margin-top: clamp(-2.5rem, -4vw, -3.5rem);
  position: relative;
  z-index: 10;
  border-radius: 36px;
  box-shadow: 0 24px 60px rgba(12, 29, 53, 0.08), 0 6px 20px rgba(101, 88, 187, 0.05);
  border: 1px solid rgba(101, 88, 187, 0.14);
}

@media (max-width: 640px) {
  .form-card--overlap {
    margin-top: -1.75rem;
    border-radius: 24px;
    padding: 1.75rem 1.25rem;
  }
}



