/* 
  Bright Future Golden Soccer Academy (BFG) - Premium Style System
  Colors: Deep Midnight Navy, Crimson Red, Royal Blue, Crisp White
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  /* Brand Colors: Red, Blue, White */
  --color-sand-light: #F8FAFC;
  --color-sand-dark: #EDF2F7;
  --color-obsidian: #0B132B;
  --color-slate-card: #131C31;
  --color-slate-border: rgba(255, 255, 255, 0.1);
  
  --color-terracotta: #E11D48;
  --color-terracotta-hover: #BE123C;
  --color-gold: #3B82F6;
  --color-gold-hover: #2563EB;
  --color-pitch: #080D1A;
  --color-green-glow: #38BDF8;

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 8rem;

  /* Transitions */
  --transition-smooth: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Shadows & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.04);
  --shadow-deep: 0 30px 60px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 10px 30px rgba(225, 29, 72, 0.25);
}

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

html {
  background-color: var(--color-sand-light);
  color: var(--color-obsidian);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-sand-dark);
}
::-webkit-scrollbar-thumb {
  background: #C4C0B5;
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: #A8A499;
}

/* Custom Cursor Follower */
.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-terracotta);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
  transition-timing-function: var(--transition-fast);
  opacity: 0;
}

@media (max-width: 768px) {
  .cursor-follower {
    display: none;
  }
}

.cursor-follower.hovering {
  width: 60px;
  height: 60px;
  background-color: rgba(222, 93, 63, 0.05);
  border-color: var(--color-gold);
}

/* Premium Page Wipe Curtain */
.page-curtain {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-obsidian) 0%, var(--color-pitch) 100%);
  z-index: 9999;
  transform: translate3d(0,0,0);
  pointer-events: none;
}

.page-curtain.wipe-active {
  left: 0;
  transition: left 0.75s cubic-bezier(0.76, 0, 0.24, 1);
}

.page-curtain.wipe-out {
  left: 100%;
  transition: left 0.75s cubic-bezier(0.76, 0, 0.24, 1);
}

/* General Layout Elements */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
}

/* Headings & Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
  margin-bottom: var(--space-xl);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.section-subtitle {
  color: var(--color-terracotta);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  text-align: center;
  margin-bottom: var(--space-xs);
  display: block;
}

p {
  line-height: 1.6;
  font-size: 1.05rem;
  color: #4A4D4A;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  gap: var(--space-xs);
  outline: none;
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--color-terracotta-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(222, 93, 63, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-obsidian);
  border: 2px solid var(--color-obsidian);
}

.btn-secondary:hover {
  background-color: var(--color-obsidian);
  color: var(--color-sand-light);
  transform: translateY(-3px);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-obsidian);
  box-shadow: 0 8px 24px rgba(232, 185, 67, 0.1);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 185, 67, 0.25);
}

/* Header & Navbar */
.site-header {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: calc(100% - var(--space-xl));
  max-width: 1200px;
  z-index: 100;
  padding: 1.1rem var(--space-md);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-full);
  background-color: rgba(250, 247, 240, 0.7);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.02);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.site-header.sticky {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: calc(100% - var(--space-xl));
  background-color: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(25px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  padding: 0.8rem var(--space-md);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.site-header.dark-header {
  background-color: rgba(11, 19, 43, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.site-header.dark-header .logo,
.site-header.dark-header .logo-text,
.site-header.dark-header .nav-link {
  color: #FFFFFF;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--color-obsidian);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-symbol {
  color: var(--color-terracotta);
}

.logo-text span {
  color: var(--color-gold);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  color: var(--color-obsidian);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-terracotta);
  transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: var(--space-md);
}

/* Sections */
section {
  padding: var(--space-xxl) 0;
  position: relative;
}

/* Dark Mode Sections */
.dark-section {
  background-color: var(--color-obsidian);
  color: var(--color-sand-light);
}

.dark-section p {
  color: #9AA09C;
}

.dark-section .btn-secondary {
  color: var(--color-sand-light);
  border-color: var(--color-sand-light);
}

.dark-section .btn-secondary:hover {
  background-color: var(--color-sand-light);
  color: var(--color-obsidian);
}

/* 3D-Tilt Scroll Reveal Animations */
.reveal-item {
  opacity: 0;
  transform: translate3d(0, 60px, 0) scale(0.96) rotateX(4deg);
  transform-origin: bottom center;
  transition: opacity var(--transition-smooth), 
              transform var(--transition-smooth);
  will-change: transform, opacity;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
}

/* Staggered lists */
.pillars-grid, .programs-wrapper, .facilities-grid, .about-stats-grid, .gallery-grid {
  display: grid;
}

.pillars-grid > *:nth-child(1) { transition-delay: 0.05s; }
.pillars-grid > *:nth-child(2) { transition-delay: 0.15s; }
.pillars-grid > *:nth-child(3) { transition-delay: 0.25s; }

.facility-details-list > *:nth-child(1) { transition-delay: 0.1s; }
.facility-details-list > *:nth-child(2) { transition-delay: 0.2s; }
.facility-details-list > *:nth-child(3) { transition-delay: 0.3s; }

.about-stats-grid > *:nth-child(1) { transition-delay: 0.1s; }
.about-stats-grid > *:nth-child(2) { transition-delay: 0.2s; }
.about-stats-grid > *:nth-child(3) { transition-delay: 0.3s; }
.about-stats-grid > *:nth-child(4) { transition-delay: 0.4s; }

/* 1. Hero Section — Full-Viewport Cinematic */
.hero {
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--color-obsidian);
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  overflow: hidden;
}

.hero-img-bg,
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 19, 43, 0.45) 0%,
    rgba(11, 19, 43, 0.72) 50%,
    rgba(11, 19, 43, 0.92) 100%
  );
}

/* Centered editorial block */
.hero-center-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-md);
  padding-top: 2rem; /* perfectly centered in full-screen hero */
  animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Eyebrow line treatment */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-eyebrow-line {
  display: block;
  height: 1px;
  width: 60px;
  background-color: var(--color-gold);
  opacity: 0.7;
}

.hero-eyebrow-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
}

.hero-title {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
  color: white;
  line-height: 1.1;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  max-width: 560px;
  margin: 0 auto var(--space-lg) auto;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background-color: white;
  color: var(--color-obsidian);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1.1rem 2.4rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-hero-primary:hover {
  background-color: var(--color-gold);
  color: var(--color-obsidian);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(232, 185, 67, 0.35);
}

.btn-hero-secondary {
  background-color: transparent;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1.1rem 2.4rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

/* Bottom stats bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: stretch;
  background: rgba(11, 14, 12, 0.7);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: heroFadeUp 1.4s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.6rem var(--space-md);
  gap: 0.3rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  align-self: stretch;
  margin: 1rem 0;
}

/* Scroll indicator (right side) */
.hero-scroll-indicator {
  position: absolute;
  right: 2.5rem;
  bottom: 7rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: heroFadeUp 1.6s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.about-quote-box {
  border-left: 4px solid var(--color-terracotta);
  background: rgba(0, 0, 0, 0.02);
  padding: var(--space-md);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: var(--space-md);
}

.about-quote-box p {
  font-size: 1rem;
  color: #3C3E3C;
}

.about-stats-grid {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

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

.about-stat-card {
  background: white;
  border: 1px solid #E8E5DF;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.about-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border-color: var(--color-gold);
}

.about-card-icon {
  font-size: 1.5rem;
  color: var(--color-terracotta);
  margin-bottom: 0.5rem;
}

.about-stat-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  color: var(--color-obsidian);
}

.about-stat-card p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: #7A7D7A;
}

/* 2. Pillars Section */
.pillars-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

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

.pillar-card {
  background: var(--color-slate-card);
  border: 1px solid var(--color-slate-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--pillar-color, var(--color-terracotta));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-fast);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
  border-color: rgba(255, 255, 255, 0.15);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--pillar-color, var(--color-terracotta));
  margin-bottom: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.pillar-card:hover .pillar-icon {
  background: var(--pillar-color, var(--color-terracotta));
  color: white;
  transform: scale(1.1);
}

.pillar-title {
  font-size: 1.6rem;
  margin-bottom: var(--space-xs);
  color: white;
}

.pillar-tagline {
  font-size: 0.85rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
  display: block;
}

.pillar-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.pillar-list {
  list-style: none;
  margin-top: var(--space-sm);
}

.pillar-list li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  color: #B5BDB7;
}

.pillar-list li::before {
  content: '→';
  color: var(--pillar-color, var(--color-terracotta));
  position: absolute;
  left: 0;
  top: 0;
}

/* 3. Programs Section */
.programs-wrapper {
  margin-top: var(--space-xl);
}

.program-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.04);
  margin-bottom: var(--space-md);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  transition: var(--transition-smooth);
}

@media (max-width: 768px) {
  .program-card {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

.program-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.program-info-column h3 {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.program-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: rgba(222,93,63,0.1);
  color: var(--color-terracotta);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.program-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
  list-style: none;
  margin-top: var(--space-md);
}

.program-highlights li {
  font-size: 0.9rem;
  color: #606460;
  padding-left: 1.2rem;
  position: relative;
}

.program-highlights li::before {
  content: '✓';
  color: var(--color-green-glow);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.program-action-column {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .program-action-column {
    justify-content: flex-start;
  }
}

/* 4. Public Training Calendar Section */
.calendar-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.calendar-tab-btn {
  padding: 0.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-slate-border);
  color: #B5BDB7;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.calendar-tab-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.calendar-tab-btn.active {
  background-color: var(--color-gold);
  color: var(--color-obsidian);
  border-color: var(--color-gold);
}

.calendar-display {
  background-color: var(--color-obsidian);
  border: 1px solid var(--color-slate-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.calendar-table th, .calendar-table td {
  padding: 1.2rem var(--space-md);
  border-bottom: 1px solid var(--color-slate-border);
}

.calendar-table th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.01);
}

.calendar-table tr:last-child td {
  border-bottom: none;
}

.calendar-time-col {
  font-family: var(--font-display);
  font-weight: 800;
  color: white;
  width: 180px;
}

.calendar-activity-col h4 {
  font-size: 1.1rem;
  color: white;
}

.calendar-activity-col p {
  font-size: 0.85rem;
  color: #9AA09C;
  margin-top: 0.2rem;
}

.calendar-badge-type {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-football { background: rgba(222,93,63,0.15); color: var(--color-terracotta); }
.badge-academic { background: rgba(232,185,67,0.15); color: var(--color-gold); }
.badge-character { background: rgba(16,185,129,0.15); color: var(--color-green-glow); }

/* 5. Facilities Section */
.facilities-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
}

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

.facility-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.facility-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: none;
}

.facility-image-card:hover .facility-photo {
  transform: scale(1.05);
}

.facility-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: var(--space-lg);
  color: white;
}

.facility-img-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--color-gold);
}

.facility-img-overlay p {
  color: #DFDFDF;
  font-size: 0.9rem;
}

.facility-details-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.facility-item-row {
  border-bottom: 1px solid #E8E5DF;
  padding-bottom: var(--space-md);
}

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

.facility-item-row h4 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

/* 6. Media Gallery Section */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 0.6rem 1.4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #B5BDB7;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-filter-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
}

.gallery-filter-btn.active {
  background-color: var(--color-terracotta);
  color: white;
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-glow);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 245px;
  gap: 0;
}

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

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-card.span-col-2 {
    grid-column: span 1 !important;
  }
  .gallery-card.span-row-2 {
    grid-row: span 1 !important;
  }
}

.gallery-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  border: none;
  background-color: transparent;
  box-shadow: none;
  animation: bentoReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.gallery-card.span-col-2 {
  grid-column: span 2;
}

.gallery-card.span-row-2 {
  grid-row: span 2;
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

@keyframes bentoReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(0.97) rotate(0.5deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
}

/* 7. Dreamers Section */
.dreamers-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
}

@media (max-width: 991px) {
  .dreamers-container {
    grid-template-columns: 1fr;
  }
}

.dreamers-showcase {
  background: var(--color-slate-card);
  border: 1px solid var(--color-slate-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.dreamer-slide {
  display: none;
  animation: fadeScale var(--transition-fast) forwards;
}

.dreamer-slide.active {
  display: block;
}

.dreamer-slide-layout {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-md);
}

@media (max-width: 576px) {
  .dreamer-slide-layout {
    flex-direction: column;
    text-align: center;
  }
}

.dreamer-avatar-box {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(232, 185, 67, 0.2);
}

.dreamer-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dreamer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.dreamer-name {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 0.2rem;
}

.dreamer-club {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.dreamer-meta {
  text-align: right;
}

@media (max-width: 576px) {
  .dreamer-meta {
    text-align: left;
  }
}

.dreamer-origin {
  color: #B5BDB7;
  font-size: 0.9rem;
}

.dreamer-year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-terracotta);
}

.dreamer-bio {
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  line-height: 1.6;
}

.dreamer-radar-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.dreamer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
}

.dreamer-nav-dots {
  display: flex;
  gap: 0.5rem;
}

.dreamer-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dreamer-dot.active {
  background-color: var(--color-terracotta);
  transform: scale(1.3);
}

.dreamer-btn-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-fast);
}

.dreamer-btn-circle:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
}

/* Radar Chart Styling */
.radar-chart {
  max-width: 250px;
  max-height: 250px;
  width: 100%;
}

.radar-grid {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 1;
}

.radar-axis {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
}

.radar-labels {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  fill: #9AA09C;
  text-anchor: middle;
}

.radar-area {
  fill: rgba(222, 93, 63, 0.25);
  stroke: var(--color-terracotta);
  stroke-width: 2;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.radar-point {
  fill: var(--color-gold);
  stroke: white;
  stroke-width: 1.5;
  r: 4;
}

/* 7. Sign Up View & Slider Wizard */
.view-panel {
  display: none;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.view-panel.active {
  display: block;
}

.signup-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  background: radial-gradient(circle at 10% 90%, #FAF0EE 0%, var(--color-sand-light) 60%);
}

.signup-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.02);
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.signup-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: var(--space-xl);
}

.signup-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-sand-dark);
  z-index: 1;
}

.signup-progress-bar {
  position: absolute;
  top: 15px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-terracotta);
  z-index: 2;
  transition: var(--transition-smooth);
}

.progress-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-sand-dark);
  color: #7A7D7A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 3;
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.progress-step.active {
  background-color: white;
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  box-shadow: 0 0 15px rgba(222,93,63,0.2);
}

.progress-step.completed {
  background-color: var(--color-terracotta);
  color: white;
}

/* Signup Form Slides */
.signup-slides {
  display: flex;
  transition: var(--transition-smooth);
}

.signup-slide {
  flex-shrink: 0;
  padding: 0 var(--space-xs);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-obsidian);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #D0CCD3;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  outline: none;
  background-color: #FAF9F6;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--color-terracotta);
  background-color: white;
  box-shadow: 0 0 10px rgba(222,93,63,0.1);
}

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

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

.program-cards-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

@media (max-width: 768px) {
  .program-cards-select {
    grid-template-columns: 1fr;
  }
}

.select-card {
  border: 2px solid #E8E5DF;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.select-card:hover {
  border-color: var(--color-terracotta);
  transform: translateY(-2px);
}

.select-card.selected {
  border-color: var(--color-terracotta);
  background-color: rgba(222,93,63,0.02);
}

.select-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.select-card p {
  font-size: 0.8rem;
}

/* Custom Scheduler Grid */
.scheduler-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  max-height: 250px;
  overflow-y: auto;
  padding: 0.5rem;
  border: 1px solid #E8E5DF;
  border-radius: var(--radius-md);
  background-color: #FAF9F6;
}

.scheduler-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid #E8E5DF;
  border-radius: var(--radius-md);
  cursor: pointer;
  background-color: white;
  transition: var(--transition-fast);
}

.scheduler-item:hover {
  border-color: var(--color-gold);
  transform: translateX(4px);
}

.scheduler-item.selected {
  border-color: var(--color-terracotta);
  background-color: rgba(222,93,63,0.02);
}

.scheduler-details h5 {
  font-size: 0.95rem;
}

.scheduler-details p {
  font-size: 0.8rem;
  color: #7A7D7A;
}

.scheduler-meta {
  text-align: right;
}

.spots-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  background-color: rgba(16,185,129,0.1);
  color: var(--color-green-glow);
}

.form-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid #E8E5DF;
}

/* 8. Success Email Dispatch Overlay */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 14, 12, 0.8);
  backdrop-filter: blur(15px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  padding: var(--space-md);
}

.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  max-width: 550px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-deep);
  position: relative;
}

.mail-animation-container h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-top: var(--space-md);
  color: var(--color-obsidian);
}

.plane-icon-wrapper {
  font-size: 3rem;
  color: var(--color-terracotta);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.animate-plane {
  animation: flyPlane 1.6s ease-in-out infinite;
}

.success-badge {
  font-size: 4rem;
  color: var(--color-green-glow);
  margin-bottom: var(--space-sm);
}

.receipt-card {
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-sand-dark);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  text-align: left;
}

.receipt-card h4 {
  font-size: 1.25rem;
  color: var(--color-obsidian);
  margin-bottom: 0.2rem;
}

.receipt-card p {
  font-size: 0.9rem;
  color: #606460;
}

.success-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* Premium Lightbox Modal Styling */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 14, 12, 0.92);
  backdrop-filter: blur(25px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img-wrapper {
  max-width: 85%;
  max-height: 72vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.lightbox-overlay.active .lightbox-img-wrapper {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--color-obsidian);
}

.lightbox-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 10001;
}

.lightbox-nav-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev-btn {
  left: 2rem;
}

.lightbox-nav-btn.next-btn {
  right: 2rem;
}

@media (max-width: 768px) {
  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .lightbox-nav-btn.prev-btn { left: 1rem; }
  .lightbox-nav-btn.next-btn { right: 1rem; }
}

.lightbox-caption {
  margin-top: var(--space-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  color: white;
  font-family: var(--font-display);
  font-size: 0.95rem;
  max-width: 600px;
  text-align: center;
}

/* Footer */
.site-footer {
  background-color: #FAF7F0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: var(--space-sm);
}

.footer-copy {
  font-size: 0.85rem;
  color: #7A7D7A;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  border-left: 4px solid var(--color-green-glow);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  color: var(--color-obsidian);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-bounce);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Keyframes */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes flyPlane {
  0% { transform: translate(-20px, 20px) rotate(0deg) scale(0.8); opacity: 0; }
  30% { opacity: 1; }
  70% { transform: translate(30px, -30px) rotate(-15deg) scale(1.1); opacity: 1; }
  100% { transform: translate(50px, -50px) rotate(-20deg) scale(0.8); opacity: 0; }
}

/* Sub-page Banners */
.page-banner {
  padding: 12rem 0 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  margin-top: 0.5rem;
  letter-spacing: -0.03em;
}

/* Coaches Directory Section */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

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

.coach-card {
  background: var(--color-slate-card);
  border: 1px solid var(--color-slate-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition-smooth);
}

.coach-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-deep);
}

.coach-license-badge {
  display: inline-block;
  background: rgba(232, 185, 67, 0.15);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(232, 185, 67, 0.2);
}

.coach-card h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.2rem;
}

.coach-role {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-terracotta);
  margin-bottom: var(--space-sm);
}

.coach-specialty {
  font-size: 0.85rem;
  color: #B5BDB7;
  line-height: 1.5;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Dark Header Legibility Adjustments (Absolute top position on dark banners) */
.site-header.dark-header:not(.sticky) {
  background-color: rgba(11, 14, 12, 0.65);
  backdrop-filter: blur(25px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.dark-header:not(.sticky) .logo {
  color: white;
}

.site-header.dark-header:not(.sticky) .nav-link {
  color: rgba(255, 255, 255, 0.75);
}

.site-header.dark-header:not(.sticky) .nav-link:hover,
.site-header.dark-header:not(.sticky) .nav-link.active {
  color: white;
}

.site-header.dark-header:not(.sticky) .nav-link::after {
  background-color: var(--color-gold);
}

.site-header.dark-header:not(.sticky) .btn-secondary {
  color: white;
  border-color: white;
}

.site-header.dark-header:not(.sticky) .btn-secondary:hover {
  background-color: white;
  color: var(--color-obsidian);
}

/* 8. Pillars Editorial Split Layout */
.pillars-section {
  padding: 8rem 0;
}

.pillars-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 991px) {
  .pillars-split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.pillars-intro-col {
  padding-right: var(--space-md);
}

.pillars-items-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Dynamically styled pillar cards inside the right column */
.pillars-items-col .pillar-card {
  background: var(--color-slate-card);
  border: 1px solid var(--color-slate-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  padding-left: calc(var(--space-lg) + 8px);
}

.pillars-items-col .pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-deep);
}

.pillars-items-col .pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  background-color: var(--pillar-color);
}

.pillars-items-col .pillar-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pillar-color);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.pillars-items-col .pillar-title {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.2rem;
}

.pillars-items-col .pillar-tagline {
  display: block;
  font-size: 0.8rem;
  color: var(--pillar-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.pillars-items-col .pillar-desc {
  font-size: 0.9rem;
  color: #B5BDB7;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.pillars-items-col .pillar-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}

.pillars-items-col .pillar-list li {
  font-size: 0.85rem;
  color: #8E9690;
  position: relative;
  padding-left: 1.2rem;
}

.pillars-items-col .pillar-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pillar-color);
  font-weight: 700;
}

/* Floating WhatsApp Action Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition-bounce);
}

.whatsapp-float-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--color-obsidian);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.1);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
  opacity: 1;
}

@media (max-width: 768px) {
  .ceo-card {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .ceo-contact-chips {
    justify-content: center;
  }
}

/* ==================== GLOBAL FOOTER STYLING ==================== */
.site-footer {
  background: var(--color-pitch);
  border-top: 1px solid var(--color-slate-border);
  padding: 5rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.footer-col-brand .logo {
  justify-content: flex-start;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  text-decoration: none;
  color: #FFFFFF !important;
}

.site-footer .logo-text {
  color: #FFFFFF !important;
}

.site-footer .logo-symbol {
  color: var(--color-terracotta);
}

.site-footer .logo-text span {
  color: var(--color-gold);
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: #9AA09C;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  max-width: 320px;
}

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

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
}

.footer-col-heading {
  color: white;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--color-gold);
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: #9AA09C;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.footer-link i {
  font-size: 0.7rem;
  color: var(--color-gold);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

.footer-link:hover i {
  color: var(--color-terracotta);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-icon.wa-icon {
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.2);
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7A7D7A;
  margin-bottom: 0.15rem;
}

.contact-val {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-link {
  color: #B5BDB7;
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-link:hover {
  color: white;
  text-decoration: underline;
}

.contact-link.wa-link {
  color: #34D399;
  font-weight: 600;
}

.contact-link.wa-link:hover {
  color: #6EE7B7;
}

/* Address Card */
.address-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.address-icon {
  font-size: 1.3rem;
  color: var(--color-terracotta);
  margin-bottom: var(--space-xs);
}

.addr-line {
  font-size: 0.88rem;
  color: #B5BDB7;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.addr-badge {
  display: inline-block;
  margin-top: 0.6rem;
  background: rgba(225, 29, 72, 0.12);
  color: #F43F5E;
  border: 1px solid rgba(225, 29, 72, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-copy {
  font-size: 0.85rem;
  color: #7A7D7A;
}

.footer-copy strong {
  color: white;
}

.tagline-copy {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

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

/* ==========================================================================
   EDGE-TO-EDGE SINGLE LONG ROW GALLERY SLIDER (NO LABELS & NO BORDER RADIUS)
   ========================================================================== */

.gallery-slider-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;
  overflow: hidden;
}

/* Single long row track touching screen edges on left & right */
.gallery-onerow-track {
  display: grid;
  grid-template-rows: 380px; /* 1 single constant row height */
  grid-auto-flow: column;
  grid-auto-columns: 440px; /* constant width per image */
  gap: 0; /* 0 gap: images touch flush against each other and screen edges */
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-onerow-track::-webkit-scrollbar {
  display: none;
}

/* Square/landscape images touching edges with 0 border radius & 0 margins */
.gallery-card-clean {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 0 !important; /* NO border radius */
  overflow: hidden;
  background: var(--color-obsidian);
  border: none !important;
  outline: none;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.gallery-card-clean img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important; /* NO border radius */
  transition: transform 0.5s ease;
  pointer-events: none;
}

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

/* Slider Navigation Buttons */
.gallery-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(11, 19, 43, 0.92);
  backdrop-filter: blur(12px);
  border: 2px solid var(--color-gold);
  color: white;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.gallery-slider-btn i {
  pointer-events: none;
}

.gallery-slider-btn:hover {
  background: var(--color-crimson);
  border-color: var(--color-crimson);
  color: white;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 14px 40px rgba(225, 29, 72, 0.6);
}

.gallery-slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-slider-btn.prev-btn {
  left: 2rem;
}

.gallery-slider-btn.next-btn {
  right: 2rem;
}
