/* ============================================================
   DENEYIM SPOR AKADEMISI - SITE CSS
   Brand: Navy (#102058) + Lime (#90D010)
   Font: Inter | Aesthetic: Sportive, sharp edges, italic uppercase
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --navy: #102058;
  --navy2: #1a2e6e;
  --navy-dark: #0a1640;
  --lime: #90d010;
  --lime-deep: #7ab70a;
  --white: #fff;
  --cream: #f8faf2;
  --surface: #f1f4e8;
  --line: rgba(16, 32, 88, 0.10);
  --line2: rgba(16, 32, 88, 0.18);
  --text: #102058;
  --muted: #5a6578;
  --danger: #e23030;
  --font: "Inter", system-ui, sans-serif;
}

/* ── UTILITY CLASSES ───────────────────────────────────────── */
.text-lime { color: var(--lime); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.bg-cream { background: var(--cream); }
.bg-surface { background: var(--surface); }
.bg-white { background: var(--white); }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.text-center { text-align: center; }
.text-upper { text-transform: uppercase; }

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes dsFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.ds-fade-in {
  animation: dsFadeIn 0.35s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dsPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.ds-pulse {
  animation: dsPulse 1.6s ease-in-out infinite;
}

@keyframes dsMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.container-ds {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── SECTIONS ──────────────────────────────────────────────── */
.section {
  padding: 88px 56px;
}

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

.section-surface {
  background: var(--surface);
}

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

.section-cta {
  background: var(--lime);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--navy);
  opacity: 0.04;
  transform: rotate(25deg) skew(-8deg);
}

/* ── SECTION HEADERS ───────────────────────────────────────── */
.section-header {
  margin-bottom: 48px;
}

.section-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.section-header-center {
  text-align: center;
}

.section-header-left {
  flex-shrink: 0;
}

.section-header-right {
  align-self: flex-end;
}

.section-header-right .section-desc {
  text-align: left;
  max-width: 500px;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin: 0;
}

.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.section-navy .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* ── KICKER ────────────────────────────────────────────────── */
.kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-deep);
  font-family: ui-monospace, "SF Mono", "Fira Code", "Cascadia Code", monospace;
  margin-bottom: 10px;
}

.kicker-light {
  color: var(--lime);
}

/* ── GRID SYSTEM ───────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 13px;
}

.btn-primary-ds {
  background: var(--lime);
  color: var(--navy);
}

.btn-primary-ds:hover {
  background: #a6e82a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(144, 208, 16, 0.35);
}

.btn-ghost-ds {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost-ds:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-outline-ds {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--line2);
}

.btn-outline-ds:hover {
  border-color: var(--navy);
  background: rgba(16, 32, 88, 0.04);
}

.btn-dark-ds {
  background: var(--navy);
  color: var(--white);
}

.btn-dark-ds:hover {
  background: var(--navy2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(16, 32, 88, 0.25);
}

.btn-phone-ds {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(16, 32, 88, 0.35);
}

.btn-phone-ds:hover {
  border-color: var(--navy);
  background: rgba(16, 32, 88, 0.06);
}

/* ── TOP BAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.topbar-inner {
  padding: 8px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

a.topbar-item:hover {
  color: var(--lime);
}

.topbar-location {
  color: rgba(255, 255, 255, 0.75);
}

.topbar-announcement {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lime);
  font-family: ui-monospace, monospace;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 11px;
}

.topbar-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  animation: dsPulse 1.6s ease-in-out infinite;
}

/* ── MAIN NAV ──────────────────────────────────────────────── */
.main-nav {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 40;
  transition: box-shadow 0.25s ease, border-bottom 0.25s ease;
  border-bottom: 1px solid transparent;
}

.main-nav.scrolled {
  box-shadow: 0 4px 20px rgba(16, 32, 88, 0.08);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  padding: 14px 56px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.nav-logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
}

.nav-logo-text {
  line-height: 1;
}

.nav-logo-line1 {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
}

.nav-logo-line2 {
  display: block;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.3px;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--navy);
}

.nav-link.active {
  color: var(--navy);
  border-bottom-color: var(--lime);
}

.nav-trial-btn {
  background: var(--lime);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
}

.nav-trial-btn:hover {
  background: #a6e82a;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 60;
  background: none;
  border: none;
  color: var(--navy);
}

.nav-hamburger .icon-close {
  display: none;
}

body.mobile-nav-open .nav-hamburger .icon-menu {
  display: none;
}

body.mobile-nav-open .nav-hamburger .icon-close {
  display: block;
}

/* ── MOBILE NAV OVERLAY ───────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 64, 0.97);
  z-index: 50;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.mobile-nav-open .mobile-nav-overlay {
  display: flex;
}

body.mobile-nav-open {
  overflow: hidden;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  padding: 100px 24px 40px;
  width: 100%;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav-link {
  padding: 14px 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--lime);
}

.mobile-nav-trial-btn {
  margin-top: 16px;
  background: var(--lime);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 16px 24px;
  border: none;
  cursor: pointer;
  text-align: center;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-classic {
  min-height: 680px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 88, 0.4) 0%, rgba(16, 32, 88, 0.88) 100%);
  z-index: 1;
}

.hero-slab {
  position: absolute;
  left: -100px;
  bottom: -40px;
  width: 420px;
  height: 180px;
  background: var(--lime);
  transform: skew(-18deg) rotate(-6deg);
  opacity: 0.95;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 56px;
  max-width: 900px;
}

.hero-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--white);
  margin: 0 0 28px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  gap: 24px;
  z-index: 2;
}

.hero-stat-badge {
  text-align: right;
}

.hero-stat-badge strong {
  display: block;
  font-size: 44px;
  font-weight: 900;
  font-style: italic;
  color: var(--lime);
  letter-spacing: -2px;
  line-height: 1;
}

.hero-stat-badge span {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  margin-top: 4px;
}

/* ── MARQUEE ───────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  border-top: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
}

.ds-marquee-track {
  display: flex;
  gap: 48px;
  padding: 14px 0;
  white-space: nowrap;
  width: max-content;
  animation: dsMarquee 36s linear infinite;
  will-change: transform;
}

.ds-marquee-track:hover {
  animation-play-state: paused;
}

.marquee-text {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* ── CARD: WHY US ──────────────────────────────────────────── */
.card-why {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.card-why:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(16, 32, 88, 0.12);
  border-color: var(--navy);
}

.card-why-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  color: var(--lime);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.card-why-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.card-why-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CARD: PROGRAM ─────────────────────────────────────────── */
.card-program {
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card-program:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(16, 32, 88, 0.15);
}

.card-program-navy {
  background: var(--navy);
  color: var(--white);
}

.card-program-lime {
  background: var(--lime);
  color: var(--navy);
}

.card-program-navyDark {
  background: var(--navy-dark);
  color: var(--white);
}

.card-program-surface {
  background: var(--surface);
  color: var(--navy);
}

.card-program-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: -2px;
  opacity: 0.25;
  margin-bottom: 8px;
}

.card-program-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.card-program-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
}

.card-program-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.6;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.card-program-lime .card-program-meta {
  border-top-color: rgba(16, 32, 88, 0.15);
}

.card-program-surface .card-program-meta {
  border-top-color: rgba(16, 32, 88, 0.15);
}

/* ── CARD: AGE GROUP ───────────────────────────────────────── */
.card-age {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card-age:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-age-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-age-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card-age:hover .card-age-photo img {
  transform: scale(1.05);
}

.card-age-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 88, 0.1) 0%, rgba(16, 32, 88, 0.5) 100%);
}

.card-age-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--lime);
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  padding: 6px 14px;
  line-height: 1;
}

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

.card-age-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.card-age-focus {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* ── CARD: COACH ───────────────────────────────────────────── */
.card-coach {
  transition: transform 0.25s;
}

.card-coach:hover {
  transform: translateY(-3px);
}

.card-coach-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--surface);
}

.card-coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card-coach:hover .card-coach-photo img {
  transform: scale(1.04);
}

.card-coach-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, var(--cream) 100%);
}

.card-coach-bar {
  height: 4px;
  background: var(--lime);
}

.card-coach-body {
  padding: 14px 0;
}

.card-coach-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2px;
}

.card-coach-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lime-deep);
  margin-bottom: 8px;
}

.card-coach-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── VENUES TEASER ─────────────────────────────────────────── */
.venues-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venues-info .section-title {
  margin-top: 14px;
  margin-bottom: 20px;
}

.venues-info .section-desc {
  margin-bottom: 28px;
}

.venues-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.venue-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}

.venue-card:hover {
  border-color: var(--lime);
}

.venue-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  flex-shrink: 0;
}

.venue-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.venues-photo {
  position: relative;
  overflow: hidden;
}

.venues-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.venues-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--lime);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
}

/* ── GALLERY GRID ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* ── REVIEWS ───────────────────────────────────────────────── */
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.stars {
  display: inline-flex;
  gap: 2px;
}

.star-lime {
  color: var(--lime);
  font-size: 18px;
}

.reviews-score {
  color: var(--white);
  font-size: 18px;
}

.reviews-count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.card-review {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 24px;
  transition: transform 0.25s;
}

.card-review:hover {
  transform: translateY(-3px);
}

.card-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.card-review-quote {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 20px;
}

.card-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-review-avatar {
  width: 40px;
  height: 40px;
  background: var(--lime);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-review-info strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}

.card-review-info span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* ── BIG CTA ───────────────────────────────────────────────── */
.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--navy);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 16px;
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── CONTACT TEASER ────────────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info .section-title {
  margin-top: 14px;
  margin-bottom: 28px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card:last-child {
  border-bottom: none;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--surface);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card-body strong {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-card-body a,
.contact-card-body span {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
}

.contact-card-body a:hover {
  color: var(--lime-deep);
}

/* Contact Map Placeholder */
.contact-map {
  position: relative;
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: var(--surface);
  border: 2px dashed var(--line2);
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 32, 88, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 88, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-road {
  position: absolute;
  background: rgba(16, 32, 88, 0.1);
}

.map-road-h {
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  transform: translateY(-50%);
}

.map-road-v {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  transform: translateX(-50%);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.map-pin-icon {
  font-size: 32px;
  line-height: 1;
}

.map-pin-label {
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  white-space: nowrap;
  margin-top: 4px;
}

.map-region {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  color: rgba(16, 32, 88, 0.06);
  text-transform: uppercase;
  letter-spacing: 8px;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Footer CTA Strip */
.footer-cta {
  background: linear-gradient(95deg, var(--navy-dark) 0%, var(--navy-dark) 55%, var(--navy) 55%, var(--navy) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-inner {
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-cta-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-cta-icon {
  color: var(--lime);
  flex-shrink: 0;
}

.footer-cta-title {
  display: block;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-cta-desc {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.footer-cta-btn {
  background: var(--lime);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}

.footer-cta-btn:hover {
  background: #a6e82a;
  transform: translateY(-1px);
}

/* Footer Grid */
.footer-grid {
  padding: 56px 56px 40px;
}

.footer-grid-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col {}

.footer-col-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  padding: 3px;
}

.footer-logo-text {
  line-height: 1;
}

.footer-logo-text span:first-child {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
}

.footer-logo-text span:last-child {
  display: block;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 600;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s;
}

.footer-social-link:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime);
}

.footer-col-title {
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: ui-monospace, monospace;
  margin-bottom: 16px;
}

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

.footer-links li {
  padding: 0;
}

.footer-links a,
.footer-links span {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  display: inline;
  padding: 0;
}

.footer-contact-list a:hover {
  color: var(--lime);
}

/* Footer Copyright */
.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright-inner {
  padding: 20px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* ── WHATSAPP FAB ──────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  animation: dsPulse 1.6s ease-in-out infinite;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  animation: none;
}

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

/* ── TRIAL MODAL ───────────────────────────────────────────── */
.trial-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(6, 15, 32, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px;
}

.trial-modal-overlay.open {
  display: flex;
}

.trial-modal {
  background: var(--white);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.trial-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
  background: none;
  border: none;
}

.trial-modal-close:hover {
  color: var(--navy);
}

.trial-modal-header {
  background: var(--navy);
  color: var(--white);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.trial-modal-header::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: var(--lime);
  transform: rotate(25deg);
  opacity: 0.15;
}

.trial-modal-ball {
  color: var(--lime);
  margin-bottom: 12px;
}

.trial-modal-title {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 4px;
}

.trial-modal-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Trial Steps Indicator */
.trial-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 32px 0;
}

.trial-step-dot {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.trial-step-dot.active {
  background: var(--navy);
  color: var(--white);
}

.trial-step-dot.completed {
  background: var(--lime);
  color: var(--navy);
}

.trial-step-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  max-width: 60px;
  margin: 0 8px;
}

.trial-step-line.completed {
  background: var(--lime);
}

/* Trial Steps Content */
.trial-step {
  padding: 24px 32px 32px;
}

.trial-step-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.trial-field {
  margin-bottom: 16px;
}

.trial-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.trial-field input,
.trial-field select,
.trial-field textarea {
  width: 100%;
  border: 1.5px solid var(--line2);
  background: var(--white);
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  border-radius: 0;
  outline: none;
  transition: border-color 0.15s;
  color: var(--text);
}

.trial-field input:focus,
.trial-field select:focus,
.trial-field textarea:focus {
  border-color: var(--navy);
}

.trial-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23102058' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.trial-field textarea {
  resize: vertical;
  min-height: 80px;
}

.trial-next-btn {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
}

.trial-next-btn:hover {
  background: var(--navy2);
}

.trial-back-btn {
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 20px;
  border: 1.5px solid var(--line2);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, color 0.2s;
}

.trial-back-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.trial-btn-group {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.trial-btn-group .trial-back-btn {
  flex: 1;
}

.trial-btn-group .trial-next-btn {
  flex: 2;
}

/* Trial Success */
.trial-success {
  text-align: center;
  padding: 8px 0 16px;
}

.trial-success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--lime-deep);
}

.trial-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.trial-success p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── PAGE HEADER (Inner Pages) ─────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 72px 56px 56px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -5%;
  width: 380px;
  height: 380px;
  background: var(--lime);
  opacity: 0.05;
  transform: rotate(30deg) skew(-10deg);
}

.page-header .kicker {
  color: var(--lime);
}

.page-header h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 8px;
}

.page-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  line-height: 1.7;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 20px;
}

.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.page-header .breadcrumb a:hover {
  color: var(--lime);
}

.page-header .breadcrumb .sep {
  font-size: 10px;
}

/* ── INNER PAGE GRIDS ──────────────────────────────────────── */
.inner-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.inner-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.inner-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.inner-section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 16px;
}

.inner-text-muted {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ── BIG CTA (inner pages, lime bg) ────────────────────────── */
.big-cta {
  background: var(--lime);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
}

.big-cta::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--navy);
  opacity: 0.04;
  transform: rotate(25deg) skew(-8deg);
}

.big-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.big-cta__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--navy);
  margin-bottom: 12px;
}

.big-cta__text {
  color: var(--navy);
  opacity: 0.7;
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.big-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── TIMELINE (Hakkımızda) ─────────────────────────────────── */
.timeline {
  position: relative;
  max-width: 680px;
  margin: 48px auto 0;
  padding-left: 36px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 11px;
  width: 2px;
  height: 100%;
  background: var(--line2);
}

.timeline__item {
  position: relative;
  padding-bottom: 40px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 24px;
  height: 24px;
  background: var(--lime);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--lime);
}

.timeline__year {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime-deep);
  margin-bottom: 4px;
  font-family: ui-monospace, monospace;
}

.timeline__heading {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline__content p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ── PROGRAM ROWS (EgitimProgramlari) ──────────────────────── */
.program-row {
  display: flex;
  gap: 36px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.program-row:first-child {
  padding-top: 0;
}

.program-row:last-child {
  border-bottom: none;
}

.program-row__number {
  font-size: 64px;
  font-weight: 900;
  font-style: italic;
  color: var(--lime);
  line-height: 1;
  min-width: 90px;
  letter-spacing: -0.03em;
}

.program-row__body {
  flex: 1;
}

.program-row__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.program-row__title {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
}

.age-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--surface);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.program-row__desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 580px;
}

.program-row__meta {
  display: flex;
  gap: 32px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.program-meta-item__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2px;
}

.program-meta-item__value {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

/* ── TEAM CARDS (Takımlarımız) ─────────────────────────────── */
.teams-grid {
  gap: 24px;
}

.team-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-card--lime { background: var(--lime); color: var(--navy); }
.team-card--navy { background: var(--navy); color: var(--white); }
.team-card--navyDark { background: var(--navy-dark); color: var(--white); }
.team-card--surface { background: var(--surface); color: var(--navy); }

.team-card__age {
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  opacity: 0.25;
  margin-bottom: 4px;
}

.team-card__name {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.team-card__divider {
  width: 48px;
  height: 3px;
  margin-bottom: 20px;
}

.team-card--lime .team-card__divider { background: var(--navy); }
.team-card--navy .team-card__divider,
.team-card--navyDark .team-card__divider { background: var(--lime); }
.team-card--surface .team-card__divider { background: var(--lime-deep); }

.team-card__row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.team-card--lime .team-card__row,
.team-card--surface .team-card__row {
  border-bottom-color: rgba(16, 32, 88, 0.1);
}

.team-card__label { font-weight: 600; opacity: 0.65; }
.team-card__value { font-weight: 700; }

/* ── STAFF CARDS (Ekibimiz) ────────────────────────────────── */
.staff-grid { gap: 24px; }

.staff-card { text-align: center; }

.staff-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.staff-card:hover .staff-card__photo img {
  transform: scale(1.04);
}

.staff-card__bar {
  height: 4px;
  background: var(--lime);
}

.staff-card__name {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-top: 14px;
  margin-bottom: 2px;
}

.staff-card__title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lime-deep);
  margin-bottom: 8px;
}

.staff-card__bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── VENUE CARDS (Salonlarımız inner page) ─────────────────── */
.inner-venues-grid { gap: 24px; }

.inner-venue-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.inner-venue-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 32, 88, 0.10);
}

.inner-venue-card__photo-wrap {
  position: relative;
  overflow: hidden;
}

.inner-venue-card__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.inner-venue-card:hover .inner-venue-card__photo {
  transform: scale(1.04);
}

.inner-venue-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  background: var(--lime);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.inner-venue-card__body {
  padding: 22px 24px 28px;
}

.inner-venue-card__name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.inner-venue-card__size {
  display: block;
  font-size: 13px;
  color: var(--lime-deep);
  font-weight: 700;
  margin-bottom: 14px;
}

.inner-venue-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inner-venue-card__features li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.inner-venue-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--lime);
}

/* ── GALLERY (inner page) ──────────────────────────────────── */
.gallery-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1.5px solid var(--line2);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-filter:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.gallery-filter.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.inner-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.inner-gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.inner-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.inner-gallery-item:hover img {
  transform: scale(1.06);
}

/* ── BLOG (inner page) ─────────────────────────────────────── */
.blog-featured { align-items: center; }

.blog-featured__photo-wrap { overflow: hidden; }

.blog-featured__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.blog-featured__photo-wrap:hover .blog-featured__photo {
  transform: scale(1.03);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-meta__category {
  display: inline-block;
  padding: 3px 12px;
  background: var(--lime);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-meta__date,
.blog-meta__read {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.inner-blog-grid { gap: 24px; }

.inner-blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.inner-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 32, 88, 0.10);
}

.inner-blog-card__photo-wrap { overflow: hidden; }

.inner-blog-card__photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.inner-blog-card:hover .inner-blog-card__photo {
  transform: scale(1.04);
}

.inner-blog-card__body {
  padding: 18px 22px 22px;
}

.inner-blog-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}

/* ── CONTACT (inner page) ──────────────────────────────────── */
.contact-grid {
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
}

.inner-form-group {
  margin-bottom: 18px;
}

.inner-form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ds-input class (used by JS validation) */
.ds-input {
  width: 100%;
  border: 1.5px solid var(--line2);
  padding: 14px 16px;
  font-size: 14px;
  border-radius: 0;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s ease;
}

.ds-input:focus {
  border-color: var(--navy);
  outline: none;
}

.ds-input.error {
  border-color: var(--danger);
}

.ds-input::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

select.ds-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23102058' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.ds-input {
  resize: vertical;
  min-height: 100px;
}

.ds-input-error-msg {
  font-size: 12px;
  color: var(--danger);
  margin-top: 4px;
  display: none;
}

.ds-input.error + .ds-input-error-msg {
  display: block;
}

/* ── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 22, 64, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 24px;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  user-select: none;
}

.lightbox-arrow:hover { opacity: 1; }
.lightbox-arrow.prev { left: 16px; }
.lightbox-arrow.next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
}

/* ── DS-PREFIXED CLASSES (Inner Pages) ────────────────────── */
.ds-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.ds-section {
  padding: 88px 56px;
}

.ds-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-deep);
  font-family: ui-monospace, "SF Mono", "Fira Code", "Cascadia Code", monospace;
  margin-bottom: 10px;
}

.page-header .ds-kicker {
  color: var(--lime);
}

.ds-h-display {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin: 0 0 8px;
}

.ds-h {
  font-weight: 800;
  margin: 0;
}

.ds-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.ds-btn-dark:hover {
  background: var(--navy2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(16, 32, 88, 0.25);
}

.ds-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(16, 32, 88, 0.35);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.ds-btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(16, 32, 88, 0.06);
}

.ds-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  background: var(--lime);
  color: var(--navy);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.ds-btn-primary:hover {
  background: #a6e82a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(144, 208, 16, 0.35);
}

.w-full { width: 100%; }

/* ── MISSION (Hakkımızda) ─────────────────────────────────── */
.mission-photo { overflow: hidden; }

.inner-img-rounded {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

/* ── CONTACT INNER PAGE (BEM) ─────────────────────────────── */
.contact-info__title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 28px;
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--surface);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__icon--whatsapp {
  background: #25D366;
  color: #fff;
}

.contact-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-card__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.2s;
}

a.contact-card__value:hover {
  color: var(--lime-deep);
}

.contact-card__hours {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* Contact Success */
.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 0;
}

.contact-success__icon {
  color: var(--lime-deep);
  margin-bottom: 16px;
}

.contact-success__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-success__text {
  color: var(--muted);
  font-size: 14px;
}

/* ── MAP PLACEHOLDER INNER ────────────────────────────────── */
.map-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
  padding: 40px 20px;
}

.map-placeholder__icon {
  color: var(--muted);
  opacity: 0.4;
  margin-bottom: 16px;
}

.map-placeholder__text {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
}

.map-placeholder__address {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

/* ── TEAM CARD PHOTO ──────────────────────────────────────── */
.team-card__photo {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-top: 20px;
}

/* ── GALLERY OVERLAY ──────────────────────────────────────── */
.inner-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16, 32, 88, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.inner-gallery-item:hover .inner-gallery-item__overlay {
  opacity: 1;
}

.inner-gallery-item__cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--lime);
  padding: 4px 10px;
}

/* ── INNER LIGHTBOX ───────────────────────────────────────── */
.inner-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.inner-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 64, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.inner-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 2;
  background: none;
  border: none;
}

.inner-lightbox__close:hover { opacity: 1; }

.inner-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  user-select: none;
  z-index: 2;
  background: none;
  border: none;
}

.inner-lightbox__arrow:hover { opacity: 1; }
.inner-lightbox__prev { left: 16px; }
.inner-lightbox__next { right: 16px; }

.inner-lightbox__content {
  position: relative;
  z-index: 1;
}

.inner-lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  user-select: none;
}

.inner-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

/* ── BLOG FEATURED ────────────────────────────────────────── */
.blog-featured__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.blog-featured__excerpt {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links,
  .nav-trial-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 14px 20px;
  }

  .topbar-inner {
    padding: 8px 20px;
  }

  .topbar-left {
    display: none;
  }

  .hero-stats {
    position: static;
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 0 20px 40px;
    margin-top: 20px;
  }

  .hero-stat-badge {
    text-align: center;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-header-right {
    justify-content: flex-start;
  }

  .footer-grid-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta-inner {
    padding: 32px 20px;
    flex-direction: column;
    text-align: center;
  }

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

  .inner-grid-2 {
    grid-template-columns: 1fr;
  }

  .inner-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-row__number {
    font-size: 48px;
    min-width: 60px;
  }

  .ds-section {
    padding: 56px 20px;
  }

  .big-cta {
    padding: 56px 20px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 20px;
  }

  .ds-section {
    padding: 56px 20px;
  }

  .hero-content {
    padding: 56px 20px;
  }

  .hero-title {
    font-size: clamp(36px, 8vw, 56px);
  }

  .hero-slab {
    width: 280px;
    height: 120px;
    left: -60px;
    bottom: -30px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .page-header {
    padding: 56px 20px 40px;
  }

  .footer-grid {
    padding: 40px 20px;
  }

  .footer-grid-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-copyright-inner {
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .trial-modal {
    padding: 0;
  }

  .trial-modal-header {
    padding: 24px 20px;
  }

  .trial-step {
    padding: 20px 20px 28px;
  }

  .trial-steps-indicator {
    padding: 20px 20px 0;
  }

  .inner-grid-2 {
    grid-template-columns: 1fr;
  }

  .inner-grid-3 {
    grid-template-columns: 1fr;
  }

  .inner-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .inner-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-row {
    flex-direction: column;
    gap: 16px;
  }

  .program-row__number {
    font-size: 40px;
    min-width: auto;
  }

  .team-card {
    padding: 28px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .big-cta {
    padding: 48px 20px;
  }

  .whatsapp-fab {
    bottom: 16px;
    right: 16px;
  }

  .venues-photo-img {
    min-height: 280px;
  }

  .map-placeholder {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .page-header h1 {
    font-size: 30px;
  }

  .hero-stat-badge strong {
    font-size: 32px;
  }

  .inner-grid-4 {
    grid-template-columns: 1fr;
  }

  .cta-title,
  .big-cta__title {
    font-size: 28px;
  }
}
