/* ============================================================
   Bilgi Ağacı Anaokulu — Bright & Friendly Modern Design System
   Inspired by vibrant preschool aesthetic (Warm yellow CTAs, pastel blobs, doodle accents)
   ============================================================ */

:root {
  /* Marka & Canlı Tema Renkleri */
  --yellow: #ffb800;
  --yellow-hover: #e5a500;
  --yellow-soft: #fff8e6;
  
  --magenta: #c6499a;
  --magenta-soft: #fcf0f8;
  --magenta-light: #f4d3e8;

  --orange: #f97316;
  --orange-soft: #fff3eb;

  --blue: #0ea5e9;
  --blue-soft: #e0f2fe;

  --green: #10b981;
  --green-soft: #ecfdf5;

  --pink: #f43f5e;
  --pink-soft: #ffe4e6;

  --purple: #8b5cf6;
  --purple-soft: #f5f3ff;

  --navy: #1e293b;
  --navy-dark: #0f172a;

  /* Nötr Tonlar */
  --ink: #1e293b;
  --ink-soft: #64748b;
  --ink-light: #94a3b8;
  --cream: #fffdf8;
  --cream-card: #ffffff;
  --cream-alt: #faf6f0;
  --line: #f1e9dd;
  --white: #ffffff;

  /* Semantik Atamalar */
  --primary: var(--yellow);
  --primary-hover: var(--yellow-hover);
  --primary-text: #1e293b;

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 12px rgba(30, 41, 59, 0.04);
  --shadow-md: 0 12px 32px -8px rgba(30, 41, 59, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(30, 41, 59, 0.12);
  --shadow-glow: 0 16px 36px -6px rgba(255, 184, 0, 0.35);

  --wrap: 1200px;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Fredoka', 'Plus Jakarta Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ---------- Layout & Container ---------- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(60px, 8vw, 110px) 0; position: relative; }
.section-sm { padding: clamp(40px, 5vw, 64px) 0; }
.center { text-align: center; }

/* Eyebrow & Titles */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--magenta);
  background: var(--magenta-soft); border: 1px solid var(--magenta-light);
  padding: 6px 18px; border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.eyebrow-yellow { color: #b45309; background: var(--yellow-soft); border-color: #fde68a; }
.eyebrow-blue { color: #0284c7; background: var(--blue-soft); border-color: #bae6fd; }
.eyebrow-green { color: #047857; background: var(--green-soft); border-color: #a7f3d0; }

.section-title { font-size: clamp(2.1rem, 4.5vw, 3.2rem); font-weight: 600; }
.section-lead {
  max-width: 660px; color: var(--ink-soft); font-size: 1.12rem; margin-top: 14px; line-height: 1.6;
}
.center .section-lead { margin-inline: auto; }

/* Wavy underline accent */
.wavy-hl {
  position: relative;
  display: inline-block;
}
.wavy-hl::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px; width: 100%; height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q 25 0, 50 10 T 100 10' fill='none' stroke='%23FFB800' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center;
  background-size: 60px 8px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: var(--radius-pill);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap; cursor: pointer;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

/* Reference warm golden yellow primary CTA button */
.btn-primary {
  background: var(--yellow);
  color: #1e293b;
  box-shadow: var(--shadow-glow);
  border: 2px solid transparent;
}
.btn-primary:hover {
  background: var(--yellow-hover);
  box-shadow: 0 20px 40px -8px rgba(255, 184, 0, 0.5);
}

.btn-secondary {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 12px 28px -8px rgba(198, 73, 154, 0.4);
}
.btn-secondary:hover {
  background: #b23a88;
  box-shadow: 0 18px 36px -8px rgba(198, 73, 154, 0.5);
}

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--cream-alt);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  border: 2px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--ink);
  background: #ffffff;
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.92rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(241, 233, 221, 0.6);
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px -10px rgba(30, 41, 59, 0.08);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; color: var(--ink); }
.brand-text span { font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--magenta); font-weight: 700; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.98rem; color: var(--ink-soft); padding: 10px 18px;
  border-radius: var(--radius-pill); transition: all 0.2s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink); background: var(--yellow-soft);
}
.nav-links a.active {
  color: #1e293b; background: var(--yellow);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: var(--radius-md);
  border: 2px solid var(--line); background: var(--white); color: var(--ink);
  align-items: center; justify-content: center; transition: background 0.2s;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* Mobile Menu overlay */
@media (max-width: 991px) {
  .nav-links {
    position: fixed; top: 84px; left: 0; right: 0; background: var(--white);
    flex-direction: column; padding: 24px; gap: 12px;
    border-bottom: 2px solid var(--line); box-shadow: var(--shadow-lg);
    display: none; transform: translateY(-10px); opacity: 0; transition: all 0.3s ease;
  }
  .site-header.menu-open .nav-links {
    display: flex; transform: translateY(0); opacity: 1;
  }
  .nav-links a { width: 100%; text-align: center; padding: 14px; font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
}

/* Page Header (Subpage Hero) */
.page-header {
  padding: 60px 0 50px;
  background: linear-gradient(180deg, var(--yellow-soft) 0%, var(--cream) 100%);
  position: relative; overflow: hidden; text-align: center;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem;
  color: var(--ink-soft); margin-bottom: 14px; font-weight: 500;
}
.breadcrumbs a { color: var(--magenta); font-weight: 600; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ---------- Reference Hero Section ---------- */
.hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--magenta);
  margin-bottom: 16px;
}
.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 600; line-height: 1.1; margin-bottom: 20px; }
.hero-lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* Hero Visual with Blobs & Badges */
.hero-visual { position: relative; width: 100%; display: flex; justify-content: center; }
.hero-photo-wrapper {
  position: relative; width: 100%; max-width: 480px; aspect-ratio: 4/3;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 8px solid var(--white);
  transform: rotate(-1.5deg); transition: transform 0.3s ease;
}
.hero-photo-wrapper:hover { transform: rotate(0deg) scale(1.02); }
.hero-photo-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* Organic Background Blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: 0.6; z-index: 0; pointer-events: none; }
.blob-blue { width: 320px; height: 320px; background: #bae6fd; top: -40px; left: -60px; }
.blob-yellow { width: 280px; height: 280px; background: #fde68a; bottom: -50px; right: -40px; }
.blob-pink { width: 240px; height: 240px; background: #fbcfe8; top: 30%; right: -20px; }
.blob-green { width: 200px; height: 200px; background: #a7f3d0; bottom: 10%; left: -20px; }

/* Floating Seal Badge (Inspired by Reference "WHERE LITTLE MINDS DO BIG THINGS") */
.floating-seal {
  position: absolute; bottom: -20px; right: -10px; z-index: 3;
  width: 120px; height: 120px; border-radius: 50%; background: var(--white);
  box-shadow: var(--shadow-md); border: 4px solid var(--pink-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 12px; animation: floatAnim 4s ease-in-out infinite;
}
.floating-seal svg { width: 28px; height: 28px; fill: var(--pink); margin-bottom: 4px; }
.floating-seal span { font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; color: var(--ink); line-height: 1.1; }

@keyframes floatAnim {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

/* Floating Chip Badges */
.chip-badge {
  position: absolute; z-index: 3; background: var(--white); padding: 10px 18px;
  border-radius: var(--radius-pill); box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600;
  border: 2px solid var(--line);
}
.chip-badge .icon { font-size: 1.3rem; }
.chip-1 { top: 20px; left: -20px; transform: rotate(-4deg); }
.chip-2 { bottom: 30px; left: -30px; transform: rotate(3deg); }

/* ---------- 5-Feature Horizontal Strip (Reference Match) ---------- */
.features-strip {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 28px 24px; box-shadow: var(--shadow-md); border: 1px solid var(--line);
  margin-top: clamp(36px, 5vw, 64px); position: relative; z-index: 10;
}
.features-strip-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.strip-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 16px 12px; border-right: 1px solid var(--line); transition: transform 0.2s;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { transform: translateY(-3px); }
.strip-icon-circle {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 12px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.strip-item h4 { font-size: 0.98rem; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.strip-item p { font-size: 0.8rem; color: var(--ink-soft); line-height: 1.3; }

@media (max-width: 991px) {
  .features-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
  .strip-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 576px) {
  .features-strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-bottom: 1px solid var(--line); }
  .strip-item:last-child { border-bottom: none; }
}

/* ---------- Welcome Section (Photo Collage + Text) ---------- */
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.welcome-media { position: relative; }
.photo-collage { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 16px; align-items: center; }
.collage-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid var(--white); }
.collage-stack { display: flex; flex-direction: column; gap: 16px; }
.collage-sub { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 3px solid var(--white); }
.collage-badge-card {
  background: var(--blue-soft); border: 2px dashed var(--blue); padding: 16px;
  border-radius: var(--radius-md); text-align: center; font-family: var(--font-display);
}
.collage-badge-card h4 { color: #0369a1; font-size: 1.05rem; }

/* ---------- Program Cards Grid (Reference Pastel Style) ---------- */
.programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.program-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
  border: 2px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden;
}
.program-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--card-accent, var(--yellow));
}
.program-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--card-accent, var(--yellow));
}
.program-card .badge {
  display: inline-block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 4px 12px; border-radius: var(--radius-pill);
  background: var(--card-badge-bg, var(--yellow-soft)); color: var(--card-badge-color, #92400e);
  margin-bottom: 16px; width: fit-content;
}
.program-icon { font-size: 2.5rem; margin-bottom: 16px; }
.program-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.program-card p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 24px; line-height: 1.5; }
.program-card .card-link {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--ink); display: flex; align-items: center; gap: 6px; margin-top: auto;
  transition: gap 0.2s ease;
}
.program-card:hover .card-link { gap: 10px; color: var(--magenta); }

@media (max-width: 991px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .programs-grid { grid-template-columns: 1fr; }
}

/* ---------- DEDICATED MOBILE APP SHOWCASE SECTION & MOCKUPS ---------- */
.app-showcase-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: var(--white); border-radius: var(--radius-xl); padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 60px);
  position: relative; overflow: hidden; margin: 40px 0;
}
.app-showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.app-showcase-copy h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.app-showcase-copy p { color: #94a3b8; font-size: 1.1rem; margin-bottom: 28px; }

.app-feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
.app-feature-item {
  display: flex; align-items: flex-start; gap: 12px; background: rgba(255,255,255,0.06);
  padding: 14px 16px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.1);
}
.app-feature-item .icon { font-size: 1.4rem; line-height: 1; }
.app-feature-item b { display: block; font-size: 0.95rem; color: var(--white); margin-bottom: 2px; }
.app-feature-item span { font-size: 0.8rem; color: #cbd5e1; }

.store-buttons { display: flex; flex-wrap: wrap; gap: 14px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2); padding: 10px 22px; border-radius: var(--radius-md);
  color: var(--white); transition: all 0.25s ease; backdrop-filter: blur(8px);
}
.store-btn:hover { background: var(--yellow); color: #1e293b; border-color: var(--yellow); transform: translateY(-3px); }
.store-btn svg { width: 24px; height: 24px; fill: currentColor; }
.store-btn-text small { display: block; font-size: 0.72rem; text-transform: uppercase; opacity: 0.8; }
.store-btn-text b { font-size: 1.05rem; line-height: 1.1; }

/* Phone Mockup Frame */
.phone-mockup-wrapper {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.phone-frame {
  position: relative; width: 280px; height: 570px; background: #000;
  border-radius: 44px; border: 10px solid #2d3748;
  box-shadow: 0 30px 70px -15px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden; z-index: 2;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px; background: #000; border-radius: 12px; z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%; object-fit: cover; background: #f8fafc; display: block;
}
.floating-screen-badge {
  position: absolute; z-index: 5; background: var(--white); color: var(--ink);
  padding: 12px 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 600;
}
.fs-1 { top: 40px; right: -20px; }
.fs-2 { bottom: 60px; left: -20px; }

/* Interactive Screen Switcher Controls on Dedicated App Page */
.screen-tabs {
  display: flex; justify-content: center; gap: 12px; margin-bottom: 30px; flex-wrap: wrap;
}
.screen-tab-btn {
  padding: 10px 20px; border-radius: var(--radius-pill); font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem; background: var(--white); border: 2px solid var(--line);
  color: var(--ink-soft); transition: all 0.2s ease; cursor: pointer;
}
.screen-tab-btn.active, .screen-tab-btn:hover {
  background: var(--yellow); border-color: var(--yellow); color: #1e293b; box-shadow: var(--shadow-sm);
}

/* ---------- Testimonial & Dark CTA Banner (Reference Match) ---------- */
.testimonial-cta-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: stretch; margin-top: 40px; }

.testimonial-card {
  background: #fffdf7; border-radius: var(--radius-xl); padding: 36px;
  border: 2px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: space-between;
}
.quote-icon { font-size: 3.5rem; line-height: 1; color: var(--yellow); opacity: 0.8; margin-bottom: 12px; }
.testimonial-card p { font-size: 1.05rem; font-style: italic; color: var(--ink); line-height: 1.6; margin-bottom: 24px; }
.testimonial-user { display: flex; align-items: center; gap: 14px; }
.user-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--yellow); }
.user-info b { display: block; font-size: 0.98rem; color: var(--ink); }
.user-info span { font-size: 0.82rem; color: var(--ink-soft); }

.dark-cta-card {
  background: var(--navy-dark); color: var(--white); border-radius: var(--radius-xl);
  padding: 44px; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
}
.dark-cta-card h3 { color: var(--white); font-size: 2.2rem; margin-bottom: 12px; }
.dark-cta-card p { color: #cbd5e1; font-size: 1.05rem; margin-bottom: 28px; max-width: 440px; }

@media (max-width: 991px) {
  .hero-grid, .welcome-grid, .app-showcase-grid, .testimonial-cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-feature-list { grid-template-columns: 1fr; }
}

/* ---------- Multi-Page Content Components ---------- */
/* Workshop Detail Grid */
.workshop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 36px; }
.workshop-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 2px solid var(--line); box-shadow: var(--shadow-sm); display: flex; gap: 20px;
  transition: transform 0.25s ease;
}
.workshop-card:hover { transform: translateY(-5px); border-color: var(--magenta); }
.workshop-card .icon-box {
  width: 64px; height: 64px; border-radius: var(--radius-md); background: var(--magenta-soft);
  display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0;
}
.workshop-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.workshop-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }

@media (max-width: 768px) {
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-card { flex-direction: column; }
}

/* Branch Detail Card */
.branch-card-large {
  background: var(--white); border-radius: var(--radius-xl); padding: 40px;
  border: 2px solid var(--line); box-shadow: var(--shadow-md); margin-bottom: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.branch-info-list { margin: 20px 0; }
.branch-info-list li {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.98rem;
}
.branch-info-list .icon { font-size: 1.2rem; color: var(--magenta); }
.facility-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.facility-tag {
  background: var(--cream-alt); border: 1px solid var(--line); padding: 6px 14px;
  border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
}

@media (max-width: 991px) {
  .branch-card-large { grid-template-columns: 1fr; }
}

/* Registration Steps Timeline */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.step-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 20px;
  border: 2px solid var(--line); text-align: center; position: relative;
}
.step-number {
  width: 44px; height: 44px; border-radius: 50%; background: var(--yellow);
  color: #1e293b; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  box-shadow: var(--shadow-sm);
}
.step-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--ink-soft); }

@media (max-width: 991px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* Tour Booking Form / Modal */
.booking-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 44px;
  border: 2px solid var(--line); box-shadow: var(--shadow-lg); max-width: 680px; margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; color: var(--ink); }
.form-control {
  width: 100%; padding: 14px 18px; border-radius: var(--radius-md); border: 2px solid var(--line);
  font-family: var(--font-body); font-size: 0.98rem; outline: none; transition: border-color 0.2s;
  background: var(--cream);
}
.form-control:focus { border-color: var(--yellow); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 576px) {
  .form-row { grid-template-columns: 1fr; }
}

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item {
  background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--line);
  margin-bottom: 16px; overflow: hidden; transition: border-color 0.2s;
}
.faq-header {
  padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  user-select: none;
}
.faq-header .icon { font-size: 1.3rem; transition: transform 0.3s; color: var(--magenta); }
.faq-body { padding: 0 24px 20px; font-size: 0.98rem; color: var(--ink-soft); display: none; line-height: 1.6; }
.faq-item.active { border-color: var(--yellow); }
.faq-item.active .faq-header .icon { transform: rotate(45deg); }

/* Modal Overlay */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(8px);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white); border-radius: var(--radius-xl); width: 100%; max-width: 600px;
  padding: 36px; position: relative; box-shadow: var(--shadow-lg);
  transform: translateY(20px); transition: transform 0.3s ease;
}
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 20px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--cream-alt); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; color: var(--ink-soft); transition: background 0.2s;
}
.modal-close:hover { background: var(--line); color: var(--ink); }

/* ---------- Footer (Multi-Page Style) ---------- */
.site-footer {
  background: var(--white); border-top: 2px solid var(--line);
  padding: 64px 0 32px; position: relative; z-index: 10;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 20px; max-width: 320px; line-height: 1.6; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%; background: var(--cream-alt);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all 0.2s ease;
}
.social-link:hover { background: var(--yellow); border-color: var(--yellow); color: #1e293b; transform: translateY(-2px); }

.footer-col h4 { font-size: 1.05rem; margin-bottom: 18px; color: var(--ink); }
.footer-col ul li { margin-bottom: 10px; font-size: 0.92rem; color: var(--ink-soft); }
.footer-col ul li a { transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--magenta); }

.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem; color: var(--ink-soft); flex-wrap: wrap; gap: 16px;
}

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
