/*
 * Zero Blunder Chess Academy — Main Stylesheet
 *
 * Design System:
 * - Primary Dark:    #1a2332
 * - Secondary Dark:  #243044
 * - Accent Blue:     #5ba4cf
 * - Accent Hover:    #4a93be
 * - Surface:         #2a3a52
 * - Text Light:      #f0f0f0
 * - Text Muted:      #a0a0b0
 * - White:           #ffffff
 * - Success:         #2ecc71
 * - Error:           #e74c3c
 *
 * Typography:
 * - Headings: 'Playfair Display', serif
 * - Body: 'Inter', sans-serif
 */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  scrollbar-color: #5ba4cf #1a2332 !important;
  scrollbar-width: thin !important;
}

/* Webkit scrollbar (Chrome, Edge, Safari) */
*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background: #1a2332;
}

*::-webkit-scrollbar-thumb {
  background: #5ba4cf;
  border-radius: 5px;
  border: 2px solid #1a2332;
}

*::-webkit-scrollbar-thumb:hover {
  background: #4a93be;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img[src*="flagcdn.com"] {
  display: inline;
  vertical-align: middle;
  margin: 0 3px;
  line-height: 1;
}

a {
  color: #5ba4cf;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #4a93be;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #243044;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section {
  padding: 5rem 0;
}

.section--dark {
  background: #1a2332;
  color: #f0f0f0;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #ffffff;
}

.section--dark p {
  color: #a0a0b0;
}

.section--alt {
  background: #f9f9f9;
  padding: 60px 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.section--dark .section-header h2,
.section--dark .section-header h3 {
  color: #ffffff;
}

.section--dark .section-header p {
  color: #cfd5eb;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #5ba4cf;
  margin-bottom: 0.75rem;
}

.section-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.section-grid--align-top {
  align-items: flex-start;
}

/* Normalize ampersand in Playfair Display headings */
.amp {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: 0;
}

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

.section-grid--reverse {
  direction: rtl;
}

.section-grid--reverse>* {
  direction: ltr;
}

/* ═══════════════════════════════════════════════════════════════
   SKIP LINK
   ═══════════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #5ba4cf;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* ═══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: #5ba4cf;
  color: #1a2332;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.announcement-bar a {
  color: #1a2332;
  font-weight: 700;
  text-decoration: underline;
}

.announcement-bar p {
  margin: 0;
  color: #1a2332;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(91, 164, 207, 0.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(15, 15, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.site-branding {
  flex-shrink: 0;
}

.site-branding a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.site-logo-img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(91, 164, 207, 0.5);
  box-shadow: 0 0 12px rgba(91, 164, 207, 0.25), 0 0 4px rgba(91, 164, 207, 0.15);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-branding a:hover .site-logo-img {
  border-color: rgba(91, 164, 207, 0.8);
  box-shadow: 0 0 18px rgba(91, 164, 207, 0.4), 0 0 6px rgba(91, 164, 207, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  color: #ffffff;
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-text small {
  color: #5ba4cf;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-top: 1px;
}

/* Navigation */
.primary-nav {
  flex: 1;
  min-width: 0;
  margin: 0 0.25rem;
}

.primary-nav .nav-menu {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav .nav-menu li {
  white-space: nowrap;
  flex-shrink: 0;
}

.primary-nav .nav-menu li a {
  display: inline-block;
  padding: 0.5rem 0.55rem;
  color: #d0d0d0;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease;
  position: relative;
}

.primary-nav .nav-menu li a:hover,
.primary-nav .nav-menu li.current-menu-item a {
  color: #5ba4cf;
}

.primary-nav .nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #5ba4cf;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.primary-nav .nav-menu li a:hover::after,
.primary-nav .nav-menu li.current-menu-item a::after {
  width: 60%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-actions .header-cta {
  white-space: nowrap;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE SIDEBAR — v5 (white, reference-matched)
   ═══════════════════════════════════════════════════════════════ */

/* Backdrop */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Panel — slides from right */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 80vw;
  z-index: 9999;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.mobile-nav-overlay.active .mobile-nav-panel {
  transform: translateX(0);
}

/* ── Header: back arrow + centered logo ── */
.mnav-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1rem 1rem;
  border-bottom: 1px solid #edf0f5;
}

/* Back arrow — positioned left */
.mnav-close {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid #d0d7e0;
  border-radius: 50%;
  color: #5b6b7f;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.mnav-close:hover {
  border-color: #5ba4cf;
  color: #5ba4cf;
  background: #f0f7fc;
}

/* Centered brand */
.mnav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.mnav-logo-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(58, 125, 184, 0.4);
  box-shadow: 0 0 10px rgba(58, 125, 184, 0.2);
}

.mnav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #243044;
  letter-spacing: 0.5px;
}

/* ── Navigation list ── */
.mnav-links {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0.65rem;
  -webkit-overflow-scrolling: touch;
}

.mnav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mnav-links li a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.85rem;
  color: #4a5568;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.18s ease;
}

.mnav-links li a svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: #94a3b8;
  transition: color 0.18s ease;
}

.mnav-links li a span {
  flex: 1;
}

/* Hover */
.mnav-links li a:hover {
  background: #f0f7fc;
  color: #2b6d9e;
}

.mnav-links li a:hover svg {
  color: #5ba4cf;
}

/* Active page — blue highlight like reference */
.mnav-links li.active a {
  background: #e6f2fb;
  color: #2874a6;
  font-weight: 600;
}

.mnav-links li.active a svg {
  color: #2874a6;
}

/* ── Footer CTA ── */
.mnav-footer {
  padding: 0.75rem 0.75rem 1.5rem;
  margin-top: auto;
}

.mnav-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.78rem 1rem;
  background: linear-gradient(135deg, #3a8bc2, #5ba4cf);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 12px rgba(58, 139, 194, 0.3);
  letter-spacing: 0.02em;
}

.mnav-cta-btn:hover {
  background: linear-gradient(135deg, #2e7ab0, #4a93be);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(58, 139, 194, 0.4);
}

.mnav-cta-btn svg {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: #5ba4cf;
  color: #1a2332;
  border-color: #5ba4cf;
}

.btn-primary:hover {
  background: #4a93be;
  border-color: #4a93be;
  color: #1a2332;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(91, 164, 207, 0.3);
}

.btn-outline {
  background: transparent;
  color: #5ba4cf;
  border-color: #5ba4cf;
}

.btn-outline:hover {
  background: #5ba4cf;
  color: #1a2332;
  transform: translateY(-1px);
}

.section--dark .btn-outline,
.page-hero .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.section--dark .btn-outline:hover,
.page-hero .btn-outline:hover {
  background: #ffffff;
  color: #1a2332;
  border-color: #ffffff;
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.header-cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION  —  50 / 50 split layout
   Left  50 %: plain dark blue  (#1a2332)  →  content
   Right 50 %: chess-pattern pane
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: #1a2332;
  overflow: hidden;
  z-index: 1;
}

/* Right half – absolutely covers the right 50 % of the viewport */
.hero-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 0;
  overflow: hidden;
}

/* Hero background image */
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
  display: block;
}

/* Seamless left-edge blend into background */
.hero-bg-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(to right, #1a2332 0%, rgba(26, 35, 50, 0.6) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Subtle bottom fade */
.hero-bg-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to top, #1a2332, transparent);
  z-index: 1;
  pointer-events: none;
}

/* Container sits above both panes */
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Content restricted to the left 50 % of the container */
.hero-content {
  width: 50%;
  padding-right: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(91, 164, 207, 0.12);
  color: #5ba4cf;
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(91, 164, 207, 0.25);
  letter-spacing: 0.3px;
}

/* Heading */
.hero h1 {
  color: #ffffff;
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  line-height: 1.15;
  font-family: 'Playfair Display', 'Georgia', serif;
}

.hero-h1-line2 {
  display: block;
}

/* Subtitle */
.hero-subtitle {
  color: #d1e8ff;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
  font-weight: 400;
  opacity: 0.92;
}

/* Legacy / founder tagline */
.hero-legacy {
  color: #8faabe;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.text-center .hero-cta {
  justify-content: center;
}

/* Blockquote */
.hero-quote {
  color: #76b0bb;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  font-style: italic;
  opacity: 1;
  border-left: 3px solid rgba(91, 164, 207, 0.4);
  padding-left: 1.25rem;
}

.hero-quote p {
  margin: 0;
}

/* Stats grid  —  2 columns x 2 rows */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(91, 164, 207, 0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat__value {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #5ba4cf;
  line-height: 1.2;
}

.hero-stat__label {
  font-size: 0.8rem;
  color: #7a9ab5;
  font-weight: 400;
  line-height: 1.4;
}

/* ── Hero Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    width: 100%;
    padding-right: 0;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  /* Hide chess board on mobile — show clean dark bg */
  .hero-bg-right {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-quote {
    font-size: 0.88rem;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #1a2332 0%, #243044 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  color: #a0a0b0;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
}

.page-hero--compact {
  padding: 3rem 0 2rem;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.breadcrumbs {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs li::after {
  content: '›';
  margin-left: 0.5rem;
  color: #666;
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs a {
  color: #5ba4cf;
}

.breadcrumbs li:last-child span {
  color: #888;
}

.breadcrumb a {
  color: #5ba4cf;
}

.breadcrumb .separator {
  margin: 0 0.5rem;
  color: #666;
}

.breadcrumb .current {
  color: #888;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT IMAGE PLACEHOLDER
   ═══════════════════════════════════════════════════════════════ */
.about-image-placeholder {
  background: linear-gradient(135deg, #243044, #2a3a52);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(91, 164, 207, 0.1), transparent 60%);
}

.chess-board-visual {
  position: relative;
  display: flex;
  gap: 1rem;
}

.chess-board-visual .piece {
  font-size: 4rem;
  color: #ffffff;
  opacity: 0.3;
  transition: all 0.5s ease;
}

.chess-board-visual .piece--accent {
  color: #5ba4cf;
  opacity: 0.6;
}

.chess-board-visual .piece--secondary {
  color: #a0a0b0;
  opacity: 0.2;
}

.chess-board-visual.large .piece {
  font-size: 5rem;
}

/* ═══════════════════════════════════════════════════════════════
   CHECK LIST
   ═══════════════════════════════════════════════════════════════ */
.check-list {
  margin: 1.5rem 0;
}

.check-list li {
  padding: 0.4rem 0 0.4rem 1.75rem;
  position: relative;
  color: #555;
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5ba4cf;
  font-weight: 700;
  font-size: 1rem;
}

.section--dark .check-list li {
  color: #b0b0c0;
}

/* ═══════════════════════════════════════════════════════════════
   PROGRAMS GRID
   ═══════════════════════════════════════════════════════════════ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.program-card {
  background: #243044;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.program-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.program-card:hover {
  border-color: rgba(91, 164, 207, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.program-card--featured {
  border-color: #5ba4cf;
  background: #1e2d42;
}

.program-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #5ba4cf;
  color: #1a2332;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 0 12px 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.program-card h3 {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.program-card p {
  color: #a0a0b0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.program-features {
  margin: 1rem 0;
}

.program-features li {
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: #b0b0c0;
  font-size: 0.85rem;
}

.program-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #5ba4cf;
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES / WHY CHOOSE US
   ═══════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.feature-card {
  background: #f8f8fa;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  border-color: #5ba4cf;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(91, 164, 207, 0.1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5ba4cf, #4a93be);
  color: #ffffff;
  margin: 0 auto 1.25rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #666;
}

.feature-card--compact {
  padding: 1.5rem;
}

.feature-card--compact h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-card--compact p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════
   LOCATIONS
   ═══════════════════════════════════════════════════════════════ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.location-card {
  background: #243044;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.location-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.location-card:hover {
  border-color: rgba(91, 164, 207, 0.3);
  transform: translateY(-3px);
}

.location-card--primary {
  grid-column: 1 / -1;
  border-color: #5ba4cf;
  background: #1e2d42;
}

.location-flag {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.location-card h3 {
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.location-card p {
  color: #a0a0b0;
  font-size: 0.9rem;
}

.location-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #5ba4cf;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Location Page Visuals */
.location-visual {
  background: linear-gradient(135deg, #243044, #2a3a52);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.location-flag-large {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.location-visual .location-name {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.location-section {
  scroll-margin-top: 80px;
}

.location-contact-info {
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid #eee;
}

.location-contact-info p {
  margin-bottom: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #f8f8fa;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #eee;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card--large {
  opacity: 1;
  transform: none;
}

.testimonial-stars {
  color: #5ba4cf;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card blockquote p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: #444;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #5ba4cf;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: #243044;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #888;
}

.testimonial-achievement {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.achievement-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(91, 164, 207, 0.1);
  color: #5ba4cf;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  background-color: #f9f9f9;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #243044;
  cursor: pointer;
}

.faq-answer {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  display: none;
}

.faq-item[aria-expanded="true"] .faq-answer {
  display: block;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #5ba4cf;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: #a0a0b0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #5ba4cf 0%, #4a93be 100%);
  padding: 4rem 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-content h2 {
  color: #1a2332;
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: rgba(15, 15, 26, 0.7);
  max-width: 500px;
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background: #1a2332;
  color: #5ba4cf;
  border-color: #1a2332;
}

.cta-banner .btn-primary:hover {
  background: #243044;
  border-color: #243044;
}

.cta-banner .btn-outline {
  color: #1a2332;
  border-color: rgba(15, 15, 26, 0.3);
}

.cta-banner .btn-outline:hover {
  background: #1a2332;
  color: #5ba4cf;
  border-color: #1a2332;
}

/* Section CTA Alt */
.section--cta-alt {
  background: linear-gradient(135deg, #243044, #1a2332);
  padding: 5rem 0;
}

.section--cta-alt h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.section--cta-alt p {
  color: #a0a0b0;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.section--cta-alt .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.section--cta-alt .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════
   APPROACH / STEPS
   ═══════════════════════════════════════════════════════════════ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.approach-step {
  text-align: center;
  padding: 1.5rem 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.approach-step.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #5ba4cf;
  opacity: 0.3;
  margin-bottom: 0.75rem;
}

.approach-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.approach-step p {
  font-size: 0.85rem;
  color: #666;
}

/* Steps Grid (Online Training) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #243044;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(20px);
}

.step-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #5ba4cf;
  color: #1a2332;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: #a0a0b0;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   COACHES
   ═══════════════════════════════════════════════════════════════ */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.coach-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #243044;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(20px);
}

.coach-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.coach-avatar {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.avatar-placeholder {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.coach-card h3 {
  color: #ffffff;
  margin-bottom: 0.25rem;
}

/* Coach avatar image */
.coach-avatar img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 12px;
}

.coach-title {
  color: #5ba4cf !important;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.coach-card>p:last-child {
  color: #a0a0b0;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   MISSION CARDS
   ═══════════════════════════════════════════════════════════════ */
.mission-card {
  background: #243044;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mission-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mission-card h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.mission-card p {
  color: #a0a0b0;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════
   PROGRAM VISUALS
   ═══════════════════════════════════════════════════════════════ */
.program-visual {
  background: linear-gradient(135deg, #243044, #2a3a52);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.program-visual--gradient {
  background: #1e2d42;
}

.program-piece {
  font-size: 5rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.program-level-badge {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.program-level-badge--accent {
  background: rgba(91, 164, 207, 0.15);
  color: #5ba4cf;
}

.program-level-badge--dark {
  background: rgba(255, 255, 255, 0.05);
}

.program-level-badge--gold {
  background: #5ba4cf;
  color: #1a2332;
}

/* Program Meta */
.program-meta {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.meta-item {
  font-size: 0.9rem;
  color: #555;
}

/* ═══════════════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════════════ */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th {
  color: #5ba4cf;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-table td {
  color: #b0b0c0;
}

.comparison-table tbody tr:hover {
  background: rgba(91, 164, 207, 0.05);
}

/* ═══════════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: #243044;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(20px);
}

.stat-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #5ba4cf;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: #a0a0b0;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   ONLINE VISUAL
   ═══════════════════════════════════════════════════════════════ */
.online-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.online-screen {
  background: #1a2332;
  border-radius: 16px;
  overflow: visible;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.screen-header {
  background: #1a2332;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.4rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red {
  background: #e74c3c;
}

.dot--yellow {
  background: #f1c40f;
}

.dot--green {
  background: #2ecc71;
}

.screen-content {
  padding: 2rem 1.5rem;
  text-align: center;
}

.piece-large {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  color: #5ba4cf;
}

.screen-content p {
  color: #a0a0b0;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-form-wrap {
  padding-right: 2rem;
}

.contact-form-wrap h2 {
  margin-bottom: 0.5rem;
}

.contact-form-wrap>p {
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
}

.required {
  color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
  background: #ffffff;
  color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5ba4cf;
  box-shadow: 0 0 0 3px rgba(91, 164, 207, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-response {
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.form-response--success {
  background: rgba(46, 204, 113, 0.1);
  color: #27ae60;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-response--error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Contact Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: #f8f8fa;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #eee;
}

.contact-info-card--accent {
  background: #1e2d42;
  border-color: #5ba4cf;
}

.contact-info-card--accent h3 {
  color: #ffffff;
}

.contact-info-card--accent p {
  color: #a0a0b0;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.contact-icon {
  flex-shrink: 0;
  color: #5ba4cf;
  margin-top: 2px;
}

.contact-icon--whatsapp {
  color: #25D366;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.15rem;
}

.contact-item a,
.contact-item span {
  font-size: 0.9rem;
  color: #333;
}

/* Hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.hours-row span {
  color: #666;
}

.hours-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
}

/* Map */
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-embed--full {
  margin-top: 2rem;
}

/* Ensure embedded maps use the full width of the map card */
.map-embed {
  width: 100%;
  background: #ffffff;
}

.map-embed iframe {
  display: block;
  width: 100% !important;
  height: 520px;
  /* visual height for large screens */
  min-height: 360px;
  border: 0;
}

.section--map {
  padding-top: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0a0a14;
  color: #a0a0b0;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.footer-logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(91, 164, 207, 0.3);
  box-shadow: 0 0 8px rgba(91, 164, 207, 0.15);
}

.footer-logo .logo-text strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.footer-logo .logo-text small {
  color: #5ba4cf;
  font-size: 0.62rem;
}

.footer-description {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #888;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #5ba4cf;
  color: #1a2332;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #888;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #5ba4cf;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact svg {
  flex-shrink: 0;
  color: #5ba4cf;
  margin-top: 3px;
}

.footer-contact a {
  color: #a0a0b0;
}

.footer-contact a:hover {
  color: #5ba4cf;
}

/* Footer Bottom */
.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-size: 0.75rem !important;
  color: #555 !important;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════════════════════ */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════════ */
.error-404-content {
  padding: 3rem 0;
}

.error-icon {
  font-size: 5rem;
  color: #5ba4cf;
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.error-404-content h2 {
  margin-bottom: 1rem;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.program-card,
.feature-card,
.testimonial-card:not(.testimonial-card--large),
.location-card,
.approach-step,
.stat-card,
.coach-card,
.step-card {
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

/* Stagger */
.programs-grid> :nth-child(2) {
  transition-delay: 0.1s;
}

.programs-grid> :nth-child(3) {
  transition-delay: 0.2s;
}

.programs-grid> :nth-child(4) {
  transition-delay: 0.3s;
}

.features-grid> :nth-child(2) {
  transition-delay: 0.1s;
}

.features-grid> :nth-child(3) {
  transition-delay: 0.2s;
}

.features-grid> :nth-child(4) {
  transition-delay: 0.3s;
}

.features-grid> :nth-child(5) {
  transition-delay: 0.4s;
}

.features-grid> :nth-child(6) {
  transition-delay: 0.5s;
}

.approach-grid> :nth-child(2) {
  transition-delay: 0.15s;
}

.approach-grid> :nth-child(3) {
  transition-delay: 0.3s;
}

.approach-grid> :nth-child(4) {
  transition-delay: 0.45s;
}

.approach-grid> :nth-child(5) {
  transition-delay: 0.6s;
}

.stats-grid> :nth-child(2) {
  transition-delay: 0.1s;
}

.stats-grid> :nth-child(3) {
  transition-delay: 0.2s;
}

.stats-grid> :nth-child(4) {
  transition-delay: 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   CONTENT-VISIBILITY (Paint Containment for Below-Fold)
   ═══════════════════════════════════════════════════════════════ */
.section--programs,
.section--why,
.section--locations,
.section--testimonials,
.section--faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* ═══════════════════════════════════════════════════════════════
   REDUCE MOTION (Accessibility + Performance)
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  .program-card,
  .feature-card,
  .testimonial-card,
  .location-card,
  .approach-step,
  .stat-card,
  .coach-card,
  .step-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .location-card--primary {
    grid-column: 1 / -1;
  }

  /* Tighten nav on tablet */
  .primary-nav .nav-menu li a {
    padding: 0.5rem 0.35rem;
    font-size: 0.74rem;
  }

  .header-actions .header-cta {
    padding: 0.45rem 0.9rem;
    font-size: 0.78rem;
  }

  /* Coach card responsive — override inline styles */
  .coach-card {
    width: 100% !important;
    max-width: 700px;
  }
}

/* Mobile Large — switch to hamburger nav */
@media (max-width: 900px) {

  .primary-nav,
  .header-actions .btn-whatsapp span {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header-actions .header-cta {
    display: none;
  }

  /* Logo responsive — hide text, shrink emblem on mobile */
  .site-branding .logo-text {
    display: none;
  }

  .site-logo-img {
    height: 44px;
    width: 44px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  /* CTA banner responsive stacking */
  .cta-banner {
    padding: 2.5rem 0;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-content p {
    max-width: 100%;
  }

  .cta-actions {
    justify-content: center;
    width: 100%;
  }

  /* Coach card responsive */
  .coach-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .coaches-grid {
    padding: 1.5rem 0 !important;
  }

  /* Map embed responsive */
  .map-embed iframe {
    height: 350px;
    min-height: 280px;
  }

  #matches-map {
    height: 380px !important;
    min-height: 300px !important;
  }

  /* USA highlights responsive */
  .usa-highlights {
    padding: 1.5rem;
  }

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

  /* Contact sidebar mobile */
  .contact-sidebar {
    margin-top: 2rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-item {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-item div:last-child {
    min-width: 0;
    word-break: break-word;
  }

  .contact-item a {
    word-break: break-all;
  }

  /* Gallery filters mobile */
  .gallery-filters {
    gap: 0.5rem;
    padding: 0 0.5rem;
  }

  .gallery-filter {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

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

  .section-grid--reverse {
    direction: ltr;
  }

  /* Form row responsive */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Location contact info responsive */
  .location-contact-info p {
    word-break: break-word;
  }

  /* Footer contact links responsive */
  .footer-contact li {
    word-break: break-word;
  }

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

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

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

  .testimonials-grid,
  .testimonials-page-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .error-actions {
    flex-direction: column;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  /* Gallery small mobile */
  .gallery-filter {
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
  }

  .gallery-caption {
    font-size: 0.78rem;
  }

  /* Contact sidebar small mobile */
  .contact-info-card {
    padding: 1.25rem;
  }

  .contact-item {
    gap: 0.5rem;
    padding: 0.6rem 0;
  }

  .hours-row {
    flex-direction: column;
    gap: 0.15rem;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

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

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

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

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

  .error-actions {
    flex-direction: column;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  /* CTA banner small mobile */
  .cta-banner {
    padding: 2rem 0;
  }

  .cta-banner-inner {
    gap: 1.25rem;
  }

  .cta-content h2 {
    font-size: 1.3rem;
  }

  /* Map embed small mobile */
  .map-embed iframe {
    height: 280px;
    min-height: 240px;
  }

  #matches-map {
    height: 300px !important;
    min-height: 250px !important;
  }

  /* USA highlights small mobile */
  .usa-stat-grid {
    grid-template-columns: 1fr;
  }

  /* Page hero small mobile */
  .page-hero {
    padding: 2rem 0 1.5rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .page-hero-subtitle {
    font-size: 0.9rem;
  }

  /* Gallery small mobile */
  .gallery-filter {
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
  }

  .gallery-caption {
    font-size: 0.78rem;
  }

  /* Contact sidebar small mobile */
  .contact-info-card {
    padding: 1.25rem;
  }

  .contact-item {
    gap: 0.5rem;
    padding: 0.6rem 0;
  }

  .hours-row {
    flex-direction: column;
    gap: 0.15rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lightbox-image {
    max-width: 90vw;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 1.8rem;
    padding: 0.3rem 0.6rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GRANDMASTER STANDARD & BLOCKQUOTE
   ═══════════════════════════════════════════════════════════════ */
.grandmaster-standard {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(91, 164, 207, 0.05);
  border: 1px solid rgba(91, 164, 207, 0.12);
  border-radius: 12px;
}

.grandmaster-standard h3,
.grandmaster-standard h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1a2332;
  margin-bottom: 0.75rem;
}

.grandmaster-standard ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.grandmaster-standard ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
}

.grandmaster-standard ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #5ba4cf;
  font-weight: 700;
}

.grandmaster-standard ul li strong {
  color: #1a2332;
}

blockquote.why-zero-blunder {
  margin: 1.5rem 0 0 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid #5ba4cf;
  background: rgba(91, 164, 207, 0.04);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}

@media (max-width: 768px) {
  .grandmaster-standard {
    padding: 1rem 1.15rem;
  }

  .grandmaster-standard ul li {
    font-size: 0.85rem;
  }

  blockquote.why-zero-blunder {
    font-size: 0.88rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LOCATION PAGE: AREAS GRID & USA CARDS
   ═══════════════════════════════════════════════════════════════ */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.area-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(91, 164, 207, 0.08);
  color: #5ba4cf;
  border: 1px solid rgba(91, 164, 207, 0.2);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.area-tag:hover {
  background: #5ba4cf;
  color: #ffffff;
  transform: translateY(-2px);
}

.usa-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.usa-location-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.usa-location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(91, 164, 207, 0.15);
  border-color: #5ba4cf;
}

.usa-location-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.usa-state-icon {
  font-size: 2rem;
}

.usa-location-card h3 {
  font-size: 1.25rem;
  color: #243044;
  margin-bottom: 0;
}

.usa-location-card p {
  color: #555;
  margin-bottom: 1rem;
}

.usa-location-card .check-list {
  margin-bottom: 1.5rem;
}

.location-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.usa-highlights {
  background: linear-gradient(180deg, rgba(26, 35, 50, 0.9), rgba(36, 48, 68, 0.95));
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(91, 164, 207, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.usa-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.usa-stat-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.usa-stat-item strong {
  color: #ffffff;
  font-size: 1.35rem;
  display: block;
}

.usa-stat-item span {
  color: #cfd5eb;
  font-size: 0.85rem;
}

.usa-highlights .text-center {
  margin-top: auto;
  color: #e4ebff;
  font-size: 0.95rem;
  line-height: 1.6;
}

.usa-highlights .text-center strong {
  color: #ffffff;
}

@media (max-width: 768px) {
  .usa-stat-grid {
    grid-template-columns: 1fr;
  }
}

.detail-item h4 {
  margin-bottom: 0.5rem;
  color: #5ba4cf;
}

.detail-item p {
  color: #a0a0b0;
  font-size: 0.95rem;
}

.usa-flag-overlay {
  font-size: 4rem;
  text-align: center;
  margin-top: 1rem;
}

.page-hero--location {
  padding-bottom: 3rem;
}

@media (max-width: 768px) {
  .usa-locations-grid {
    grid-template-columns: 1fr;
  }

  .location-details-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ACHIEVEMENTS PAGE
   ═══════════════════════════════════════════════════════════════ */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.achievement-card {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.achievement-card .achievement-badge {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
  background: none;
  padding: 0;
  color: inherit;
  border-radius: 0;
  font-weight: normal;
}

.achievement-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #1a2332;
  margin-bottom: 0.5rem;
}

.achievement-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.achievement-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(91, 164, 207, 0.12);
  color: #3d7fa8;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.achievement-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
}

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

@media (max-width: 640px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════════════════ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}

.gallery-filter {
  padding: 0.6rem 1.5rem;
  background: #f5f7fa;
  border: 2px solid #d8dde4;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.gallery-filter:hover {
  border-color: #5ba4cf;
  color: #5ba4cf;
  background: rgba(91, 164, 207, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(91, 164, 207, 0.15);
}

.gallery-filter.active {
  background: #5ba4cf;
  border-color: #5ba4cf;
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(91, 164, 207, 0.35);
  transform: translateY(-1px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 0.5rem;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.gallery-item.hidden {
  display: none;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

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

.gallery-thumb:hover img {
  transform: scale(1.08);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2332 0%, #243044 50%, #2a3a52 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #a0a0b0;
  gap: 0.5rem;
}

.gallery-placeholder-icon {
  font-size: 2.5rem;
}

.gallery-placeholder-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-thumb:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 300;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #444;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  text-align: center;
  padding: 0.4rem 0.5rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-image-wrap {
  text-align: center;
}

.lightbox-image {
  max-width: 70vw;
  max-height: 80vh;
  border-radius: 8px;
}

.lightbox-caption {
  font-family: 'Inter', sans-serif;
  color: #d0d0d0;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Contact Social Links */
.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION REAL IMAGES
   ═══════════════════════════════════════════════════════════════ */
.section-image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  max-height: 450px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-media .section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   STUDENT SUCCESS STORIES GRID — 3-column card layout
   ═══════════════════════════════════════════════════════════════ */
.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}

.success-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(15, 18, 25, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.success-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(15, 18, 25, 0.09);
}

.success-media {
  width: 100%;
  height: 260px;
  background: #f1f3f5;
  display: block;
}

.success-media img,
.success-media svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.success-content {
  padding: 1rem 1.25rem 1.4rem 1.25rem;
}

.success-card h3 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem 0;
  color: #1a2332;
}

.success-card .success-achievement {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.success-card .success-tag {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: rgba(91, 164, 207, 0.06);
  color: #1a2332;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
  }

  .success-media {
    height: 220px;
  }
}

/* Countries / Global Reach paragraph style */
.global-reach-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  max-width: 900px;
  margin: 0 auto;
}

.global-reach-text strong {
  color: #1a2332;
}

.countries-list {
  font-size: 0.95rem;
  line-height: 2;
  color: #555;
  margin-top: 1rem;
}

.countries-list strong {
  color: #1a2332;
}

@media (max-width: 768px) {
  .success-stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .success-stories-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding: 1.5rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18px;
  width: 3px;
  background: linear-gradient(180deg, #5ba4cf 0%, rgba(91, 164, 207, 0.2) 100%);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-left: 52px;
  margin-bottom: 1.8rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #5ba4cf;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px rgba(91, 164, 207, 0.3);
}

.timeline-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5ba4cf;
  margin-bottom: 0.25rem;
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.timeline-item p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Dark variant */
.section--dark .timeline::before {
  background: linear-gradient(180deg, #5ba4cf 0%, rgba(91, 164, 207, 0.15) 100%);
}

.section--dark .timeline-dot {
  border-color: #1a2332;
}

.section--dark .timeline-year {
  color: #5ba4cf;
}

@media (max-width: 768px) {
  .timeline-item {
    padding-left: 40px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-dot {
    left: 5px;
    width: 18px;
    height: 18px;
  }

  .timeline-year {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .timeline-item {
    padding-left: 36px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-dot {
    left: 3px;
    width: 16px;
    height: 16px;
  }

  .timeline-year {
    font-size: 0.72rem;
    letter-spacing: 0.8px;
  }

  .timeline-item h3 {
    font-size: 0.95rem;
  }

  .timeline-item p {
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GIF / ANIMATED MEDIA
   ═══════════════════════════════════════════════════════════════ */
.gif-showcase {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.gif-showcase img {
  width: 100%;
  height: auto;
  display: block;
}

.gif-showcase {
  margin-bottom: 1.75rem;
}

/* Game details card under GIF on About page */
.game-details {
  max-width: 720px;
  margin: 2rem auto 0 auto;
  background: #f8f8fa;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(36, 48, 68, 0.06);
  box-shadow: 0 10px 30px rgba(16, 24, 36, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  color: #243044;
  font-size: 0.98rem;
  line-height: 1.6;
}

.game-details .game-row {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}

.game-details .game-label {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #243044;
  min-width: 86px;
  text-transform: none;
}

.game-details .game-label::after {
  content: ':';
  margin-left: 0.25rem;
  margin-right: 0.4rem;
  color: rgba(36, 48, 68, 0.8);
}

.game-details .game-value {
  color: #555;
  font-weight: 600;
}

@media (max-width: 768px) {
  .game-details {
    padding: 0.75rem 1rem;
    max-width: 100%;
  }

  .game-details .game-label {
    min-width: 72px;
  }
}

/* Country flag list used on Locations page */
.country-list {
  list-style: none;
  margin: 0.75rem 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.country-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.country-list li img {
  width: 20px;
  height: auto;
  display: inline-block;
}

.country-list li span {
  font-weight: 600;
  color: #243044;
}

.section--dark .country-list li span {
  color: #e4ebff;
}

/* Global reach grid wrapper */
.global-reach-grid {
  max-width: 900px;
  margin: 0 auto;
}

/* No separator between inline country items */

/* ═══════════════════════════════════════════════════════════════
   ELITE CADET PROGRAM — ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */
.elite-cadet-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.elite-cadet-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.elite-cadet-text ul {
  text-align: left;
  padding-left: 1.2rem;
}

.elite-cadet-text ul li {
  margin-bottom: 0.5rem;
}

.elite-cadet-image {
  display: flex;
  align-items: stretch;
}

.elite-cadet-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE FIXES
   ═══════════════════════════════════════════════════════════════ */

/* Tablet — stack 2-col grids and Elite Cadet */
@media (max-width: 768px) {
  .elite-cadet-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .elite-cadet-image img {
    max-height: 400px;
    object-position: top center;
  }

  /* Game details card responsive */
  .game-details {
    font-size: 0.9rem;
  }

  .game-details .game-row {
    flex-direction: column;
    gap: 0.15rem;
  }

  /* Section media — full width images on mobile */
  .section-media {
    padding-top: 0 !important;
  }

  /* Timeline responsive - already handled in timeline section */

  .timeline-item h3,
  .timeline-item h4 {
    font-size: 1rem;
  }

  .timeline-item p {
    font-size: 0.88rem;
  }

  /* Ensure all images fit inside containers */
  .section-image,
  .gif-showcase img {
    max-width: 100%;
    height: auto;
  }

  /* Typography mobile */
  h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
  }

  h3 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
  }

  /* Buttons — full width on mobile */
  .btn-lg {
    width: 100%;
    text-align: center;
  }

  /* Section header text — tighter on mobile */
  .section-header p {
    font-size: 0.92rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .elite-cadet-grid {
    gap: 1rem;
  }

  .elite-cadet-text ul {
    padding-left: 1rem;
    font-size: 0.88rem;
  }

  .elite-cadet-image img {
    max-height: 300px;
    border-radius: 8px;
  }

  /* Game details — compact on small screens */
  .game-details {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  /* GIF showcase */
  .gif-showcase {
    margin-top: 1rem !important;
  }

  /* Section text readability */
  .section-text p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Gallery video thumbnail */
  .gallery-thumb video {
    min-height: 180px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════ */
@media print {

  .site-header,
  .announcement-bar,
  .mobile-nav-overlay,
  .floating-whatsapp,
  .cta-banner,
  .section--cta-alt {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section--dark {
    background: #f5f5f5;
    color: #000;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US SECTION - PREMIUM DESIGN
   ═══════════════════════════════════════════════════════════════ */
.section--why-choose-us {
  position: relative;
  background: linear-gradient(135deg, #131b27 0%, #1a2332 100%);
  color: #f0f0f0;
  overflow: hidden;
  padding: 6rem 0;
}

.section--why-choose-us::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(91, 164, 207, 0.08) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.section--why-choose-us .container {
  position: relative;
  z-index: 1;
}

.section--why-choose-us .section-header h2 {
  color: #ffffff;
}

.section--why-choose-us .section-header p {
  color: #a0a0b0;
}

.why-choose-grid {
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.why-choose-card {
  background: rgba(36, 48, 68, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  background: rgba(36, 48, 68, 0.7);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(91, 164, 207, 0.15);
  border-color: rgba(91, 164, 207, 0.3);
}

.why-choose-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(91, 164, 207, 0.2), rgba(91, 164, 207, 0.05));
  border-radius: 16px;
  color: #5ba4cf;
  border: 1px solid rgba(91, 164, 207, 0.25);
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.05);
}

.why-choose-card h3 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.why-choose-card p {
  color: #b0c0d0;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.why-choose-card strong {
  color: #ffffff;
  font-weight: 600;
}

.why-choose-list {
  margin-top: auto;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-choose-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #c0d0e0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-choose-list li .check-icon {
  color: #10b981;
  font-weight: 800;
  flex-shrink: 0;
  background: rgba(16, 185, 129, 0.15);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  transform: translateY(2px);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.why-choose-cta {
  margin-top: 1rem;
}

.why-choose-cta .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
}