@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap&subset=latin-ext');

/* ========================
   RESET & VARIABLES
======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --primary: #fcba03;
  --primary-dark: #e5a800;
  --secondary: #e5c109;
  --secondary-dark: #c8a800;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --text: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --bg-light: #fffbeb;
  --bg-yellow: #fef3c7;
  --accent-orange: #f97316;
  --success: #10b981;
  --shadow: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========================
   TYPOGRAPHY
======================== */
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.2; color: var(--dark); }

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-accent {
  display: block;
  width: 50px;
  height: 5px;
  background: var(--primary);
  border-radius: 3px;
  margin: 0.75rem auto 1.25rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* ========================
   LAYOUT
======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-light { background: var(--bg-light); }
.section-white { background: var(--white); }
.section-dark { background: linear-gradient(135deg, var(--dark), var(--dark-2)); }
.section-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }

/* ========================
   BADGE
======================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(26,26,46,0.12);
  border: 2px solid rgba(26,26,46,0.2);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.badge-white {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,26,46,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(252,186,3,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252,186,3,0.55);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ========================
   NAVIGATION
======================== */
.navbar {
  background: var(--white);
  border-bottom: 4px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.navbar-logo {
  display: block;
  width: 190px;
  height: auto;
  flex-shrink: 0;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.navbar-links a {
  font-weight: 700;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  font-size: 0.9rem;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-links a:hover::after,
.navbar-links a.active::after { width: 100%; }
.navbar-links a:hover,
.navbar-links a.active { color: var(--dark); }
.navbar-cta-link {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark) !important;
  padding: 0.55rem 1.35rem;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.875rem;
  box-shadow: 0 4px 14px rgba(252,186,3,0.35);
  transition: var(--transition) !important;
}
.navbar-cta-link::after { display: none !important; }
.navbar-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252,186,3,0.5) !important;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.navbar-toggle span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
  display: block;
}
.mobile-menu {
  display: none;
  background: var(--white);
  padding: 1.5rem;
  border-top: 1px solid #f0f0f0;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid #f5f5f5;
  transition: var(--transition);
  font-size: 0.95rem;
}
.mobile-menu a:hover { color: var(--dark); padding-left: 0.5rem; }
.mobile-menu .mobile-cta {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark);
  text-align: center;
  padding: 0.875rem;
  border-radius: 12px;
  margin-top: 1rem;
  font-weight: 800;
  border-bottom: none !important;
}

/* ========================
   HERO - HOME
======================== */
.hero {
  background-image: url('assets/images/antalya-cimnastik-okulu.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 7rem 0 10rem;
  position: relative;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 40, 0.62);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.hero h2 {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero h2 span { color: var(--primary); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-wave { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 2; }
.hero-wave svg { display: block; width: 100%; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 4rem 0 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.page-hero-icon { font-size: 3rem; margin-bottom: 0.75rem; display: block; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.25rem); color: var(--dark); margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.05rem; color: var(--dark); opacity: 0.8; max-width: 560px; margin: 0 auto; font-weight: 600; }
.page-hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; }

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-light);
  border-bottom: 1px solid #fde68a;
  padding: 0.75rem 0;
}
.breadcrumb-inner { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--text-light); flex-wrap: wrap; }
.breadcrumb-inner a { color: #d97706; font-weight: 700; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #d1a82f; }

/* ========================
   STATS BAR
======================== */
.stats-bar { background: #fcba03; padding: 2.5rem 0; margin-top: -2px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-number { font-size: 2.75rem; font-weight: 900; color: var(--dark); display: block; line-height: 1; }
.stat-label { font-size: 0.85rem; color: rgba(26,26,46,0.65); margin-top: 0.4rem; font-weight: 700; display: block; }
.stat-icon { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }

/* ========================
   FEATURE CARDS
======================== */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(252,186,3,0.35);
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.65rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

/* ========================
   COURSE CARDS
======================== */
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.course-card-header {
  padding: 0;
  line-height: 0;
}
.cc-amber { background: linear-gradient(135deg, #fcba03, #f59e0b); }
.cc-gold { background: linear-gradient(135deg, #e5c109, #ca8a04); }
.cc-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.course-emoji { font-size: 3.25rem; display: block; margin-bottom: 0.75rem; }
.course-image {
  width: 100%;
  max-width: none;
  height: 210px;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin: 0;
  box-shadow: none;
}
.course-card-body { padding: 1.75rem 2rem; }
.course-card-body h3 { font-size: 1.45rem; font-weight: 900; color: var(--dark); }
.course-card-tag {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0.35rem 0 1rem;
}
.course-card-body > p:not(.course-card-tag) { font-size: 0.92rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.75; }

/* ========================
   TRAINER CARDS
======================== */
.trainer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.trainer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.trainer-avatar {
  width: 190px;
  height: 190px;
  border-radius: 20px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  margin: 0 auto 1.25rem;
  padding: 0;
  background: transparent;
  mix-blend-mode: multiply;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
}
.trainer-card h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.trainer-role { color: #d97706; font-weight: 700; font-size: 0.9rem; margin-bottom: 1.25rem; }
.trainer-badges { display: flex; flex-direction: column; gap: 0.5rem; }
.trainer-badge {
  background: var(--bg-light);
  border: 1px solid #fde68a;
  padding: 0.4rem 0.875rem;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #92400e;
  font-weight: 700;
}

/* ========================
   PRICING CARDS
======================== */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 2.25rem 2rem;
  text-align: center;
}
.pricing-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.pricing-price { font-size: 3.75rem; font-weight: 900; color: var(--primary); line-height: 1; }
.pricing-price small { font-size: 1.1rem; opacity: 0.6; font-weight: 700; }
.pricing-period { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }
.pricing-card-body { padding: 2rem; }
.pricing-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.5rem; line-height: 1.75; }
.pricing-features { margin-bottom: 1.5rem; }
.pricing-features li {
  padding: 0.55rem 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: var(--success); font-weight: 900; font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.pricing-schedule {
  background: var(--bg-light);
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.pricing-schedule h4 { font-size: 0.82rem; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; }
.pricing-schedule p { font-size: 0.8rem; color: var(--text-light); }

/* ========================
   BLOG CARDS
======================== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-img-amber { background: linear-gradient(135deg, #fcba03, #f59e0b); }
.blog-img-gold { background: linear-gradient(135deg, #e5c109, #ca8a04); }
.blog-img-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.blog-img-dark-amber { background: linear-gradient(135deg, #d97706, #b45309); }
.blog-img-warm { background: linear-gradient(135deg, #fbbf24, #d97706); }
.blog-img-teal { background: linear-gradient(135deg, #0d9488, #0891b2); }
.blog-card-body { padding: 1.5rem; }
.blog-cat {
  font-size: 0.72rem;
  font-weight: 800;
  color: #d97706;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}
.blog-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.65rem; line-height: 1.4; }
.blog-card p { font-size: 0.87rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.78rem; color: var(--text-light); }
.blog-meta-dot { width: 4px; height: 4px; background: #d1d5db; border-radius: 50%; display: inline-block; }
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 800;
  color: #d97706;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  transition: var(--transition);
}
.blog-read-more:hover { color: var(--dark); gap: 0.5rem; }

/* ========================
   ARTICLE PAGE
======================== */
.article-hero {
  padding: 4.25rem 0 5.75rem;
}
.article-hero .container {
  position: relative;
  z-index: 2;
}
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: end;
}
.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(26,26,46,0.12);
  border: 1px solid rgba(26,26,46,0.12);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.article-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}
.article-lead {
  font-size: 1.05rem;
  max-width: 720px;
  color: rgba(26,26,46,0.8);
}
.article-meta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.article-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(26,26,46,0.08);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.article-hero-card {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26,26,46,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.article-hero-card-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 0.75rem;
}
.article-hero-card ul {
  display: grid;
  gap: 0.75rem;
}
.article-hero-card li {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: start;
}
.article-main {
  background: var(--white);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.article-main > * + * {
  margin-top: 1.4rem;
}
.article-main h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.2rem;
}
.article-main h3 {
  font-size: 1.1rem;
}
.article-main p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.9;
}
.article-feature-image {
  margin-top: 0.5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.article-feature-image img {
  width: 100%;
  height: clamp(240px, 38vw, 420px);
  object-fit: cover;
  display: block;
}
.article-highlight {
  background: linear-gradient(135deg, #fff7d6, #fffdf6);
  border: 1px solid #f7d66b;
  border-radius: 24px;
  padding: 1.5rem;
}
.article-highlight strong {
  color: var(--dark);
}
.article-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.article-info-card {
  background: var(--bg-light);
  border: 1px solid #fde68a;
  border-radius: 22px;
  padding: 1.35rem;
}
.article-info-card h3 {
  margin-bottom: 0.5rem;
}
.article-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  padding-left: 0;
}
.article-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-light);
}
.article-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #d97706;
  font-size: 1.35rem;
  line-height: 1;
}
.pricing-table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid #fde68a;
  background: #fffdf5;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid #f6e5a8;
}
.pricing-table th {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pricing-table td {
  color: var(--text);
  font-size: 0.95rem;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table strong {
  color: #b45309;
}
.article-note {
  font-size: 0.92rem;
  color: var(--text-light);
}
.article-sidebar {
  display: grid;
  gap: 1.25rem;
}
.sidebar-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.sidebar-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}
.sidebar-stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.sidebar-stat strong {
  font-size: 2rem;
  color: #d97706;
  line-height: 1;
}
.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.sidebar-tags span {
  background: var(--bg-light);
  color: #b45309;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
}
.sidebar-checklist {
  display: grid;
  gap: 0.75rem;
}
.sidebar-checklist li {
  color: var(--text-light);
  font-size: 0.92rem;
}
.article-cta-box {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
  border-radius: 28px;
  padding: 1.75rem;
}
.article-cta-box h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}
.article-cta-box p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.25rem;
}
.article-cta-box .btn {
  width: 100%;
}

/* ========================
   CTA SECTION
======================== */
.cta-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '🤸';
  position: absolute;
  font-size: 14rem;
  opacity: 0.03;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========================
   CONTACT
======================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-col h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.contact-info-col > p { color: var(--text-light); margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(252,186,3,0.3);
}
.contact-item-text h4 { font-size: 0.8rem; font-weight: 800; color: var(--text-light); margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item-text p,
.contact-item-text a { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.contact-item-text a:hover { color: #d97706; }
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.contact-form-box h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 0.45rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  color: var(--text);
  background: #fafafa;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(252,186,3,0.18);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  margin-top: 3rem;
}
.map-wrap iframe { width: 100%; height: 350px; border: none; display: block; }

/* ========================
   ABOUT PAGE - EXTRAS
======================== */
.about-text { font-size: 1.05rem; color: var(--text-light); line-height: 1.85; }
.about-text + .about-text { margin-top: 1rem; }
.about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: 0 12px 40px rgba(252,186,3,0.35);
}
.about-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.about-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.about-gallery img:first-child {
  grid-column: 1 / -1;
  height: 260px;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.about-tag {
  background: var(--bg-light);
  border: 1px solid #fde68a;
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #92400e;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.value-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.why-bottom { border-top: 1px solid #f3f4f6; }
.why-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.25rem;
  align-items: start;
}
.why-bottom-image-wrap {
  position: sticky;
  top: 100px;
}
.why-bottom-image {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-bottom-content .section-title { margin-bottom: 0.25rem; }
.why-bottom-item {
  background: var(--bg-light);
  border: 1px solid #fde68a;
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 1rem 1rem 0.95rem;
  margin-top: 0.9rem;
}
.why-bottom-item h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #111827;
}
.why-bottom-item p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ========================
   KURSLAR PAGE
======================== */
.course-detail-section {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid #fde68a;
}
.course-detail-section h3 { font-size: 1.5rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
.course-detail-section p { color: var(--text-light); line-height: 1.8; }
.schedule-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}
.schedule-box h4 { font-size: 1rem; font-weight: 800; margin-bottom: 1rem; color: var(--dark); }
.time-slots { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.time-slot {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--dark);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
}
.day-label { font-size: 0.82rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.5rem; display: block; }
.info-box {
  background: linear-gradient(135deg, rgba(252,186,3,0.12), rgba(229,193,9,0.1));
  border: 2px solid rgba(252,186,3,0.35);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
}
.info-box p { font-size: 0.92rem; color: #92400e; font-weight: 600; line-height: 1.7; }

/* ========================
   BLOG PAGE
======================== */
.blog-header-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.5rem; }
.blog-tag {
  background: rgba(26,26,46,0.1);
  border: 1px solid rgba(26,26,46,0.18);
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
}

/* ========================
   FOOTER
======================== */
footer {
  background: linear-gradient(160deg, #1a1a2e 0%, #0f172a 100%);
  color: var(--white);
  padding: 5rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand { display: flex; align-items: center; margin-bottom: 1.25rem; }
.footer-logo {
  display: block;
  width: 180px;
  height: auto;
  flex-shrink: 0;
}
.footer-about > p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-links a::before { content: '›'; color: var(--primary); font-size: 1.1rem; font-weight: 900; }
.footer-links a:hover { color: var(--primary); padding-left: 0.25rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.875rem; }
.f-icon { color: var(--primary); font-size: 1rem; flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-item p,
.footer-contact-item a { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--primary); }
/* ========================
   PARALLAX SECTION
======================== */
.parallax-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: calc(100% + 280px);
  background-image: url('assets/images/cimnastige-giris.webp');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 40, 0.62);
  z-index: 1;
}

/* ========================
   GOOGLE TRUST SECTION
======================== */
.reviews-section {
  background: linear-gradient(180deg, #fffdf3 0%, #fff9e8 100%);
  overflow: hidden;
}
.reviews-title-centered {
  margin-bottom: 2rem;
  color: #9d7a00;
}
.reviews-panel {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
.reviews-summary {
  text-align: center;
  padding: 1rem 0;
  min-width: 0;
}
.reviews-summary-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.05;
  color: #111827;
}
.reviews-stars-large {
  margin: 0.8rem 0 0.5rem;
  font-size: 2.6rem;
  letter-spacing: 0.08em;
  color: #f4b400;
  line-height: 1;
}
.reviews-summary-copy {
  font-size: 1.15rem;
  color: #111827;
}
.reviews-summary-copy strong {
  font-weight: 900;
}
.reviews-google-wordmark {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}
.g-blue { color: #4285f4; }
.g-red { color: #db4437; }
.g-yellow { color: #f4b400; }
.g-green { color: #0f9d58; }
.reviews-stage {
  position: relative;
  --reviews-per-view: 3;
  --reviews-gap: 1rem;
  min-width: 0;
  z-index: 0;
}
.reviews-viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  min-width: 0;
}
.reviews-track {
  display: flex;
  align-items: flex-start;
  gap: var(--reviews-gap);
  transition: transform 0.38s ease;
  will-change: transform;
  min-width: 0;
}
.review-card {
  flex: 0 0 calc((100% - (var(--reviews-per-view) - 1) * var(--reviews-gap)) / var(--reviews-per-view));
  max-width: calc((100% - (var(--reviews-per-view) - 1) * var(--reviews-gap)) / var(--reviews-per-view));
  align-self: flex-start;
  height: 258px;
  padding: 1.15rem 1.1rem 1.1rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.review-card.is-expanded {
  height: auto;
}
.review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.review-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: #e5e7eb;
  flex-shrink: 0;
}
.review-person h3 {
  font-size: 0.95rem;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 0.15rem;
}
.review-person p {
  font-size: 0.9rem;
  color: #6b7280;
}
.review-google-mark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.review-stars {
  margin: 0.35rem 0 0.28rem;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #f4b400;
}
.review-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #111827;
  max-width: none;
}
.review-text-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-height: calc(1.6em * 4);
  overflow: hidden;
}
.review-text-content.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  max-height: none;
}
.review-read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9d7a00;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}
.review-read-more[hidden] {
  display: none;
}
.reviews-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(255,255,255,0.96);
  color: #6b7280;
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  transition: var(--transition);
  z-index: 3;
}
.reviews-arrow:hover {
  background: var(--primary);
  color: #111827;
}
.reviews-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.reviews-arrow-left {
  left: -20px;
}
.reviews-arrow-right {
  right: -20px;
}

/* ========================
   ANIMATIONS
======================== */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content-grid { grid-template-columns: 1fr; }
  .article-hero-grid,
  .article-layout { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .about-gallery { margin-top: 1rem; }
  .why-bottom-grid { grid-template-columns: 1fr; }
  .why-bottom-image-wrap { position: static; }
  .why-bottom-image { height: 360px; }
  .reviews-title-centered { margin-bottom: 1.25rem; }
  .reviews-panel { grid-template-columns: 1fr; gap: 1rem; }
  .reviews-summary { max-width: 320px; margin: 0 auto; padding: 0.25rem 0; }
  .reviews-stage { --reviews-per-view: 1; }
  .reviews-arrow { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .article-split-grid { grid-template-columns: 1fr; }
  .navbar-links { display: none; }
  .navbar-toggle { display: flex; }
  .navbar-logo { width: 168px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .article-main { padding: 1.4rem; border-radius: 22px; }
  .article-hero { padding: 3.25rem 0 5rem; }
  .article-meta-row { gap: 0.6rem; }
  .article-meta-pill { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 7rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trainer-avatar { width: 170px; height: 170px; }
  .reviews-title-centered { margin-bottom: 1rem; }
  .reviews-summary-title { font-size: 1.2rem; }
  .reviews-stars-large { font-size: 2.1rem; margin: 0.5rem 0 0.35rem; }
  .reviews-summary-copy { font-size: 1rem; }
  .review-card { height: 258px; padding: 1.1rem; }
  .review-text { max-width: none; font-size: 0.95rem; }
  .review-stars { font-size: 1.28rem; margin: 0.35rem 0 0.28rem; }
}
@media (max-width: 540px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h2 { font-size: 2.1rem; }
  .navbar-logo { width: 152px; }
  .footer-logo { width: 160px; }
  .trainer-avatar { width: 150px; height: 150px; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery img,
  .about-gallery img:first-child { height: 210px; }
  .why-bottom-image { height: 260px; }
  .reviews-panel { gap: 0.75rem; }
  .reviews-summary { max-width: none; }
  .reviews-summary-copy { font-size: 0.95rem; }
  .review-card-head { gap: 0.75rem; }
  .review-person { gap: 0.7rem; }
  .review-avatar { width: 38px; height: 38px; }
  .review-person h3 { font-size: 0.9rem; }
  .review-person p { font-size: 0.82rem; }
  .review-stars { font-size: 1.22rem; letter-spacing: 0.08em; margin: 0.3rem 0 0.24rem; }
}
