/* 
  Bahçelievler Spor Kulübü & Yetenekli Çocuklar Spor Akademisi
  Main Stylesheet (Custom Premium Design)
*/

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

:root {
  /* Color System */
  --academy-yellow: #fcbe13;
  --academy-yellow-hover: #e5a900;
  --academy-yellow-light: #fef8e7;
  
  --club-blue: #0c3c84;
  --club-blue-hover: #072a5e;
  --club-blue-gradient: linear-gradient(135deg, #0c3c84, #001f4c);
  
  --dark-navy: #001533;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  
  /* Fonts */
  --font-main: 'Montserrat', sans-serif;
  --font-script: 'Caveat', cursive;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(12, 60, 132, 0.06);
  --shadow-lg: 0 16px 40px rgba(12, 60, 132, 0.12);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

li {
  list-style: none;
}

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

/* --- Utility Components --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  letter-spacing: 0.5px;
}

/* --- Header & Top Bar --- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  z-index: 1000;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: 1500px;
  margin: 0 auto;
  gap: 20px;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none !important;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--club-blue);
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.menu-toggle:hover {
  color: var(--academy-yellow-hover);
}

/* Mobile Bottom Navigation Bar (Hidden on desktop) */
.mobile-bottom-nav {
  display: none !important;
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

.nav-link i {
  margin-right: 8px;
  font-size: 0.95em;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover i, .nav-link.active i {
  opacity: 1;
  transform: scale(1.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--academy-yellow);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link.active, .nav-link:hover {
  color: var(--club-blue);
}

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

/* Helper Class for Vertical Navigation Stack */
.main-nav.vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.main-nav.vertical .nav-link {
  width: 100%;
  padding: 6px 0;
}

/* Actions (Phone & Pre-register Button) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-box {
  display: flex;
  align-items: center;
  background-color: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 8px 16px;
  border-radius: 50px;
  gap: 10px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.01);
}

.phone-icon {
  color: var(--club-blue);
  font-size: 0.9rem;
}

.phone-number {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
}

.whatsapp-link:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-pre-register {
  background-color: var(--club-blue);
  color: var(--white);
  border: 2px solid var(--club-blue);
  gap: 8px;
  box-shadow: 0 4px 12px rgba(12, 60, 132, 0.15);
}

.btn-pre-register:hover {
  background-color: var(--club-blue-hover);
  border-color: var(--club-blue-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(12, 60, 132, 0.25);
}

.btn-pre-register .user-icon {
  font-size: 0.9rem;
}

/* --- Hero Section (Pixel-Perfect Mockup Background) --- */
.hero-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 2px auto 30px auto;
  aspect-ratio: 1024 / 571;
  background-image: url('img/hero_mockup_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  z-index: 10;
}

.mobile-hero-poster {
  display: none;
}

/* Visually-hidden utility for SEO & Screen Readers (A11y compliance) */
.hero-sr-content {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* --- Benefits Bar --- */
.benefits-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px 40px;
  max-width: 1400px;
  margin: -40px auto 40px auto;
  position: relative;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(12, 60, 132, 0.05);
  border: 1px solid rgba(12, 60, 132, 0.03);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

/* Divider lines between benefits items */
.benefit-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #e2e8f0;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--bg-light);
  color: var(--club-blue);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  background-color: var(--club-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.benefit-info {
  display: flex;
  flex-direction: column;
}

.benefit-title {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--dark-navy);
  line-height: 1.2;
}

.benefit-desc {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.2;
  margin-top: 1px;
}


/* --- Services Section & Cards Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 10px auto;
  padding: 0 10px;
}

.service-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(12, 60, 132, 0.1);
}

.card-image-box {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

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

.service-card:hover .card-img {
  transform: scale(1.08);
}

.card-details {
  padding: 24px 20px;
  text-align: center;
  background-color: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--club-blue);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.card-subtitle {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* --- Footer Section --- */
.site-footer {
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 40px 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1fr 1fr 1.2fr 0.8fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-col {
  display: flex;
  gap: 15px;
}

/* Vertical dividers on desktop */
.footer-col:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 25px;
}

.footer-col-social {
  flex-direction: column;
  gap: 15px;
}

.footer-icon {
  font-size: 1.6rem;
  color: var(--academy-yellow);
  margin-top: 2px;
}

.footer-info {
  display: flex;
  flex-direction: column;
}

.footer-info h5 {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--academy-yellow);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.footer-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  font-weight: 500;
}

.footer-info p span {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-right: 5px;
}

.footer-col-hours p {
  white-space: nowrap;
}

/* WhatsApp special style in footer */
.whatsapp-action {
  font-weight: 700 !important;
  color: #25D366 !important;
}

.whatsapp-sub {
  font-size: 0.8rem !important;
  opacity: 0.8;
}

/* Social media follow column */
.footer-col-social h5 {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--academy-yellow);
  letter-spacing: 0.3px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.95rem;
}

.social-links a:hover {
  background-color: var(--academy-yellow);
  color: var(--dark-navy);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(252, 190, 19, 0.3);
}

/* QR Code Box in footer */
.footer-col-qr {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.qr-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  max-width: 250px;
}

.qr-card {
  background-color: var(--white);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.qr-card-link:hover .qr-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  border-color: var(--academy-yellow);
}

.qr-code-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-text {
  display: flex;
  flex-direction: column;
}

.qr-title {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--club-blue);
  line-height: 1.2;
}

.qr-subtitle {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-dark);
  line-height: 1.2;
  margin-top: 2px;
}
/* --- About Us Section --- */
.about-section {
  padding: 80px 40px;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

/* Left Column: Image Box */
.about-image-box {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: visible;
}

.about-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-badge-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--academy-yellow);
  color: var(--dark-navy);
  padding: 20px 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(252, 190, 19, 0.35);
  border: 2px solid var(--white);
  z-index: 5;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.exp-years {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Right Column: Details Box */
.about-details-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-badge {
  display: inline-block;
  background-color: var(--academy-yellow-light);
  color: var(--club-blue);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid rgba(12, 60, 132, 0.1);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--club-blue);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Bullet Points */
.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
  width: 100%;
}

.about-points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.point-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: var(--academy-yellow-light);
  color: var(--club-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid rgba(252, 190, 19, 0.2);
}

.point-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.point-content strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--club-blue);
}

.point-content span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA */
.btn-about-cta {
  background-color: var(--club-blue) !important;
  color: var(--white) !important;
  box-shadow: var(--shadow-md) !important;
  gap: 8px;
  padding: 14px 28px !important;
  font-size: 0.9rem !important;
  border: 1px solid var(--club-blue) !important;
}

.btn-about-cta:hover {
  background-color: var(--club-blue-hover) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-lg) !important;
}


/* --- Academy Sections (Kreş & Club) --- */
.academy-section {
  padding: 80px 40px;
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

/* Alternate background color for Spor Kulübü to make page look premium and distinct */
#club.academy-section {
  background-color: var(--bg-light);
}

.section-header-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.section-main-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--club-blue);
  line-height: 1.25;
  margin-top: 10px;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* Statistics Bar */
.club-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  background: var(--club-blue-gradient);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Dividing line between stats items */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  font-size: 2rem;
  color: var(--academy-yellow);
  margin-bottom: 12px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* --- Gallery Section --- */
.gallery-section {
  padding: 80px 40px;
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: var(--bg-light);
  border: 1px solid #e2e8f0;
  color: var(--text-dark);
  padding: 10px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
}

.filter-btn:hover {
  border-color: var(--academy-yellow);
  background-color: var(--academy-yellow-light);
  color: var(--club-blue);
}

.filter-btn.active {
  background-color: var(--academy-yellow) !important;
  border-color: var(--academy-yellow) !important;
  color: var(--dark-navy) !important;
  box-shadow: 0 4px 12px rgba(252, 190, 19, 0.25);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  aspect-ratio: 4 / 3;
}

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

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

/* Zoom Hover & Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 60, 132, 0.85); /* Club Blue brand overlay with opacity */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.overlay-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overlay-icon {
  font-size: 2rem;
  color: var(--academy-yellow);
  margin-bottom: 12px;
}

.overlay-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.overlay-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
}

/* Hover effects */
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}


/* --- News & Announcements Section --- */
.news-section {
  padding: 80px 40px;
  background-color: var(--bg-light); /* Alternate background */
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.news-card {
  background-color: var(--white);
  border-radius: 20px;
  overflow: visible; /* to allow badge to stick out of bounds slightly */
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.news-card-header {
  position: relative;
  height: 40px; /* Spacer for the absolute positioned date badge */
}

/* Calendar Date Badge */
.news-date-badge {
  position: absolute;
  top: -20px;
  left: 24px;
  background: var(--academy-yellow);
  color: var(--dark-navy);
  padding: 8px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(252, 190, 19, 0.2);
  z-index: 5;
  border: 1px solid var(--white);
}

.date-day {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.date-month {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* News Body */
.news-card-body {
  padding: 10px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-category {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--club-blue);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--club-blue);
  line-height: 1.4;
  margin-bottom: 12px;
}

.news-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Details Link */
.news-detail-link {
  font-size: 0.82rem;
  font-weight: 850;
  color: var(--club-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  width: fit-content;
}

.news-detail-link i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.news-detail-link:hover {
  color: var(--academy-yellow-hover);
}

.news-detail-link:hover i {
  transform: translateX(4px);
}

/* Hover effects */
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(12, 60, 132, 0.08);
}


/* --- Contact Section --- */
.contact-section {
  padding: 80px 40px;
  background-color: var(--bg-light); /* Soft gray background to alternate with white register-section */
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-section .input-wrapper input,
.contact-section .input-wrapper select,
.contact-section .input-wrapper textarea {
  background-color: var(--white);
}

.contact-split-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-form-box {
  background-color: var(--white);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 750;
  color: var(--club-blue);
  letter-spacing: 0.3px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper.align-start {
  align-items: flex-start;
}

.input-icon {
  position: absolute;
  left: 18px;
  color: var(--text-muted);
  font-size: 1.05rem;
  pointer-events: none;
  transition: color 0.3s ease;
}

/* Custom alignment for textarea icon */
.mt-2 {
  margin-top: 14px;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 14px 18px 14px 48px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-size: 0.92rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.input-wrapper select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

/* Focus and hover states */
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  border-color: var(--club-blue);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(12, 60, 132, 0.08);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper select:focus + .input-icon,
.input-wrapper textarea:focus + .input-icon {
  color: var(--club-blue);
}

/* Form Submit Button */
.btn-submit {
  align-self: flex-start;
  background: var(--academy-yellow);
  color: var(--dark-navy);
  border: none;
  padding: 14px 32px;
  font-size: 0.92rem;
  font-weight: 850;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(252, 190, 19, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  background: var(--academy-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(252, 190, 19, 0.3);
}

.btn-submit:hover i {
  transform: translate(2px, -2px); /* fly effect */
}

/* Google Maps Iframe Box */
.contact-map-box {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 450px;
  position: relative;
}

.contact-map-box iframe {
  display: block;
}


/* --- Pre-Registration Section --- */
.register-section {
  padding: 80px 40px;
  background-color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.register-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 24px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(12, 60, 132, 0.06);
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.register-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
}

/* Let child birth date input have a clean layout */
.input-wrapper input[type="date"] {
  padding-right: 14px; /* date picker has its own arrow */
}

/* Submit Row */
.register-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.btn-register-submit {
  background: var(--academy-yellow-gradient);
  color: var(--dark-navy);
  border: none;
  padding: 16px 48px;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 14px rgba(252, 190, 19, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
}

.btn-register-submit i {
  font-size: 1.05rem;
  transition: transform 0.3s ease;
}

.btn-register-submit:hover {
  background: var(--academy-yellow-gradient-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(252, 190, 19, 0.35);
}

.btn-register-submit:hover i {
  transform: scale(1.15) rotate(-5deg);
}

/* --- Registration Split Grid Layout --- */
.register-split-container {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.register-form-column {
  min-width: 0;
}

.register-info-column {
  min-width: 0;
}

.register-info-card {
  background-color: var(--white);
  border-radius: 24px;
  padding: 35px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(12, 60, 132, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.register-info-title {
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--club-blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.register-info-title i {
  color: var(--academy-yellow);
}

.register-info-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* QR wrapper positioning & badging */
.register-qr-wrapper {
  position: relative;
  background-color: var(--bg-light);
  padding: 24px;
  border-radius: 20px;
  border: 2px dashed rgba(12, 60, 132, 0.12);
  margin-bottom: 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.register-qr-box {
  background-color: var(--white);
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 10px;
}

.register-qr-scan-badge {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--club-blue);
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
}

/* Checklist items inside the card */
.register-info-benefits {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.info-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.info-benefit-item i {
  color: #28a745;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-benefit-item span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Support line */
.register-info-support {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.support-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 800;
  color: #25D366;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.support-whatsapp-link:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

@media (max-width: 992px) {
  .register-split-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .register-info-column {
    display: none !important;
  }
}


/* Floating Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--club-blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(12, 60, 132, 0.25);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background-color: var(--academy-yellow);
  color: var(--dark-navy);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(252, 190, 19, 0.35);
}


/* --- Responsive Adjustments (Media Queries) --- */

/* Laptops & Desktops (max-width: 1400px) */
@media (max-width: 1400px) {
  .top-bar {
    padding: 15px 20px;
  }
  .hero-container, .benefits-bar, .services-grid, .footer-grid {
    max-width: 95%;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1.2fr 0.9fr 0.9fr 1.1fr 0.8fr;
    gap: 20px;
  }
}

/* Tablets & Small Laptops (max-width: 1200px) */
@media (max-width: 1200px) {
  .top-bar {
    position: relative !important;
    background-color: var(--white) !important;
    padding: 15px 20px !important;
    width: 100% !important;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }
  .contact-box {
    background-color: var(--bg-light) !important;
    border: none !important;
    color: var(--text-dark) !important;
  }
  .phone-number, .phone-icon {
    color: var(--text-dark) !important;
  }
  .btn-pre-register {
    background-color: var(--club-blue) !important;
    color: var(--white) !important;
    border-color: var(--club-blue) !important;
  }
  .btn-pre-register:hover {
    background-color: var(--club-blue-hover) !important;
    color: var(--white) !important;
  }

  /* Benefits bar */
  .benefits-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .benefit-item:not(:last-child)::after {
    display: none;
  }
  
  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-col:not(:last-child):not(.footer-col-social-qr) {
    border-right: none;
    padding-right: 0;
  }
}

/* Small Tablets (max-width: 768px) */
@media (max-width: 768px) {
  /* Sticky header at the very top (top: 0) on mobile */
  .site-header {
    display: block !important;
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;
    background-color: var(--white) !important;
    border-bottom: 1px solid #e2e8f0 !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
  }

  .top-bar {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 16px !important;
    position: relative !important;
    height: 56px !important;
  }
  
  .menu-toggle {
    display: flex !important;
    order: 1 !important;
  }

  .main-nav {
    display: none !important;
    position: absolute !important;
    top: 56px !important;
    left: 16px !important;
    right: 16px !important;
    background-color: var(--bg-light) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    box-shadow: var(--shadow-lg) !important;
    z-index: 9999 !important;
    padding: 12px 8px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }

  .main-nav.open {
    display: flex !important;
  }

  .main-nav .nav-link {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    border-bottom: none !important;
    transition: all 0.2s ease !important;
  }

  .main-nav .nav-link i {
    font-size: 1rem !important;
    color: var(--club-blue) !important;
    width: 20px !important;
    text-align: center !important;
  }

  .main-nav .nav-link:hover {
    background-color: rgba(12, 60, 132, 0.05) !important;
  }

  .main-nav .nav-link.active {
    color: var(--club-blue) !important;
    background-color: transparent !important;
    border-left: none !important;
    border-bottom: none !important;
  }

  .main-nav .nav-link.active i {
    color: var(--club-blue) !important;
  }

  .header-actions {
    order: 2 !important;
    width: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
  }

  /* Always display contact-box centered horizontally and vertically in top-bar on mobile */
  .contact-box {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--bg-light) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    padding: 6px 12px !important;
    border-radius: 50px !important;
    gap: 12px !important;
    box-shadow: none !important;
    z-index: 10 !important;
  }

  .phone-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .phone-icon {
    color: var(--club-blue) !important;
    font-size: 0.85rem !important;
  }

  /* Always hide text on mobile, showing only clickable icons centered */
  .phone-number {
    display: none !important;
  }

  .whatsapp-link {
    width: 22px !important;
    height: 22px !important;
    font-size: 0.85rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .btn-pre-register {
    width: auto !important;
    padding: 6px 12px !important;
    font-size: 0.72rem !important;
    background-color: var(--club-blue) !important;
    color: var(--white) !important;
    border: 1px solid var(--club-blue) !important;
    box-shadow: none !important;
  }

  /* Hide word FORMU in button on mobile to save space */
  .btn-formu-text {
    display: none !important;
  }

  /* Body padding to make room for bottom navigation */
  body {
    padding-bottom: 75px !important;
  }

  /* Mobile Hero Container: holds the poster and the cards */
  .desktop-hero-overlay {
    display: none !important;
  }

  .hero-container {
    aspect-ratio: none !important;
    background-image: none !important;
    background-color: var(--dark-navy) !important;
    border-radius: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-shadow: none !important;
    height: auto !important;
    display: block !important; /* Force block layout to fix Safari flexbox padding bug */
    position: relative !important;
  }

  /* Disable pseudo-element poster */
  .hero-container::before {
    display: none !important;
  }

  /* Display the physical poster image on mobile */
  .mobile-hero-poster {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  /* Make mobile features section visible below the poster */
  .hero-sr-content {
    position: relative !important;
    width: calc(100% - 32px) !important;
    height: auto !important;
    padding: 24px 20px !important;
    margin: 20px auto 35px auto !important; /* Positive margin to prevent covering the poster */
    background-color: var(--white) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(12, 60, 132, 0.08) !important;
    z-index: 20 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    box-sizing: border-box !important;
  }

  .mobile-hero-slogan {
    text-align: center !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding-bottom: 14px !important;
  }

  .mobile-hero-slogan h2 {
    font-size: 1.1rem !important;
    font-weight: 850 !important;
    color: var(--club-blue) !important;
    line-height: 1.4 !important;
    margin: 0 0 6px 0 !important;
    text-align: center !important;
  }

  .mobile-slogan-sub {
    font-size: 0.72rem !important;
    color: var(--text-muted) !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    text-align: center !important;
  }

  .mobile-card {
    background-color: var(--bg-light) !important;
    border-radius: 16px !important;
    padding: 20px 16px !important;
    border: 1px solid rgba(12, 60, 132, 0.04) !important;
    display: block !important;
    text-align: left !important;
  }

  .card-badge {
    display: inline-block !important;
    font-size: 0.62rem !important;
    font-weight: 850 !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
  }

  .academy-card .card-badge {
    background-color: rgba(252, 190, 19, 0.15) !important;
    color: #d97706 !important;
  }

  .club-card .card-badge {
    background-color: rgba(12, 60, 132, 0.1) !important;
    color: var(--club-blue) !important;
  }

  .mobile-card h3 {
    font-size: 0.95rem !important;
    font-weight: 850 !important;
    color: var(--dark-navy) !important;
    margin: 0 0 14px 0 !important;
    letter-spacing: 0.2px !important;
    text-transform: uppercase !important;
  }

  .card-script-text {
    display: none !important;
  }

  /* List layout inside cards */
  .mobile-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 18px 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 10px !important;
  }

  .mobile-list li {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 6px !important;
    white-space: normal !important;
    line-height: 1.35 !important;
  }

  .mobile-list li .check-icon {
    color: #28a745 !important;
    font-weight: 900 !important;
    font-size: 0.8rem !important;
    margin-top: 1px !important;
  }

  /* CTA Buttons */
  .btn-mobile-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.75rem !important;
    font-weight: 850 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
  }

  .cta-yellow {
    background: var(--academy-yellow-gradient) !important;
    color: var(--dark-navy) !important;
    box-shadow: 0 4px 10px rgba(252, 190, 19, 0.15) !important;
  }

  .cta-blue {
    background-color: var(--club-blue) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(12, 60, 132, 0.15) !important;
  }

  /* Mobile Bottom Navigation Bar */
  .mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 70px !important;
    background-color: var(--white) !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
    z-index: 9999 !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  }

  .bottom-nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--text-muted) !important;
    flex: 1 !important;
    transition: color 0.2s ease !important;
    padding: 10px 0 !important;
  }

  .bottom-nav-link i {
    font-size: 1.55rem !important;
    transition: transform 0.2s ease !important;
  }

  .bottom-nav-link span {
    display: none !important;
  }

  .bottom-nav-link.active {
    color: var(--academy-yellow) !important;
  }

  .bottom-nav-link.active i {
    transform: translateY(-2px);
    color: var(--academy-yellow) !important;
  }

  .btn-bottom-cta {
    background-color: var(--academy-yellow) !important;
    color: var(--dark-navy) !important;
    font-weight: 800 !important;
    font-size: 0.75rem !important;
    padding: 10px 18px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 10px rgba(252, 190, 19, 0.2) !important;
    white-space: nowrap !important;
    margin-left: 6px !important;
    text-align: center !important;
    transition: all 0.2s ease !important;
  }

  .btn-bottom-cta:hover {
    background-color: var(--academy-yellow-hover) !important;
    transform: translateY(-1px) !important;
  }

  .benefits-bar {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    padding: 20px 15px !important;
    margin: 20px auto !important; /* Positive margin to sit cleanly below the hero cards */
  }

  .benefit-item {
    flex: 1 1 calc(50% - 6px) !important; /* 2 sütun düzeni (Safari uyumlu) */
    box-sizing: border-box !important;
    padding: 10px !important;
    gap: 8px !important;
    border-radius: 12px !important;
  }

  .benefit-icon {
    font-size: 1.25rem !important;
  }

  .benefit-title {
    font-size: 0.72rem !important;
  }

  .benefit-desc {
    font-size: 0.62rem !important;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    padding: 0 15px 15px 15px !important;
    max-width: 100% !important;
  }

  .service-card {
    border-radius: 16px !important;
  }

  .card-image-box {
    height: 110px !important;
  }

  .card-details {
    padding: 12px 8px !important;
  }

  .card-title {
    font-size: 0.78rem !important;
    margin-bottom: 3px !important;
  }

  .card-subtitle {
    font-size: 0.68rem !important;
  }

  /* Reduce space above footer on mobile */
  .site-footer {
    padding: 30px 0 20px 0 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px 20px !important;
  }

  .footer-col {
    grid-column: span 1 !important;
    gap: 10px !important;
    border-right: none !important;
    padding-right: 0 !important;
  }

  /* Optimize vertical dividers padding on mobile */
  .footer-col:nth-child(even) {
    padding-left: 20px !important;
  }

  /* Optimize horizontal dividers padding on mobile */
  .footer-col:nth-child(-n+4) {
    padding-bottom: 25px !important;
  }

  .footer-icon {
    font-size: 1.2rem !important;
  }

  .footer-info h5 {
    font-size: 0.85rem !important;
    margin-bottom: 8px !important;
  }

  .footer-info p {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }

  .footer-info p span {
    font-size: 0.72rem !important;
  }

  /* Align social column */
  .footer-col-social {
    grid-column: span 1 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }

  .footer-col-social h5 {
    margin-bottom: 4px !important;
    text-align: left !important;
  }

  .social-links {
    gap: 8px !important;
  }

  .social-links a {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.85rem !important;
  }

  /* QR Code Box mobile fit */
  .footer-col-qr {
    grid-column: span 1 !important;
    justify-content: flex-start !important;
  }

  .qr-card {
    padding: 6px 10px !important;
    gap: 8px !important;
    border-radius: 12px !important;
    max-width: 100% !important;
  }

  .qr-code-svg svg {
    width: 40px !important;
    height: 40px !important;
  }

  .qr-text {
    line-height: 1.2 !important;
  }

  .qr-title {
    font-size: 0.68rem !important;
    font-weight: 750 !important;
  }

  .qr-subtitle {
    font-size: 0.58rem !important;
  }

  /* About Us Section Mobile Adjustments */
  .about-section {
    padding: 40px 15px !important;
    position: relative !important;
    z-index: 5 !important;
  }

  .about-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
  }

  .about-image-box {
    max-width: 100% !important;
    padding-right: 10px !important;
    position: relative !important;
    z-index: 5 !important;
    display: block !important;
  }

  .about-img {
    border-radius: 16px !important;
  }

  .about-badge-experience {
    padding: 10px 16px !important;
    bottom: -10px !important;
    right: 0 !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 20px rgba(252, 190, 19, 0.25) !important;
    z-index: 10 !important;
  }

  .exp-years {
    font-size: 1.6rem !important;
  }

  .exp-text {
    font-size: 0.6rem !important;
    letter-spacing: 0.5px !important;
  }

  .section-badge {
    font-size: 0.7rem !important;
    padding: 4px 10px !important;
    margin-bottom: 12px !important;
  }

  .section-title {
    font-size: 1.6rem !important;
    margin-bottom: 14px !important;
    line-height: 1.3 !important;
  }

  .about-lead {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  .about-text {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  .about-points {
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  .point-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
  }

  .point-content strong {
    font-size: 0.88rem !important;
  }

  .point-content span {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
  }

  .about-cta-row {
    width: 100% !important;
  }

  .btn-about-cta {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.8rem !important;
  }

  /* Academy Sections Mobile Adjustments */
  .academy-section {
    padding: 50px 15px !important;
  }

  .section-header-box {
    margin: 0 auto 30px auto !important;
  }

  .section-main-title {
    font-size: 1.6rem !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
  }

  .section-subtitle {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  /* Club Statistics Bar Mobile Adjustments */
  .club-stats-bar {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    padding: 24px 16px !important;
    margin: 0 auto 30px auto !important;
    border-radius: 16px !important;
  }

  .stat-item:not(:last-child)::after {
    display: none !important;
  }

  .stat-icon {
    font-size: 1.5rem !important;
    margin-bottom: 8px !important;
  }

  .stat-number {
    font-size: 1.6rem !important;
    margin-bottom: 4px !important;
  }

  .stat-label {
    font-size: 0.72rem !important;
  }

  /* Gallery Section Mobile Adjustments */
  .gallery-section {
    padding: 50px 15px !important;
  }

  .gallery-filter-bar {
    margin-bottom: 25px !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
  }

  .filter-btn {
    padding: 8px 16px !important;
    font-size: 0.78rem !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .gallery-item {
    border-radius: 14px !important;
  }

  .overlay-icon {
    font-size: 1.25rem !important;
    margin-bottom: 6px !important;
  }

  .overlay-title {
    font-size: 0.85rem !important;
  }

  .overlay-category {
    font-size: 0.6rem !important;
  }

  .gallery-overlay {
    padding: 10px !important;
  }

  /* News & Announcements Section Mobile Adjustments */
  .news-section {
    padding: 55px 15px !important;
  }

  .news-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .news-card {
    border-radius: 16px !important;
  }

  .news-card-body {
    padding: 10px 18px 24px 18px !important;
  }

  .news-date-badge {
    left: 18px !important;
    padding: 6px 12px !important;
    border-radius: 10px !important;
    top: -15px !important;
  }

  .date-day {
    font-size: 1.1rem !important;
  }

  .date-month {
    font-size: 0.6rem !important;
  }

  .news-title {
    font-size: 1.05rem !important;
    margin-bottom: 8px !important;
    line-height: 1.35 !important;
  }

  .news-text {
    font-size: 0.82rem !important;
    margin-bottom: 14px !important;
    line-height: 1.5 !important;
  }

  .news-detail-link {
    font-size: 0.78rem !important;
  }

  /* Contact Section Mobile Adjustments */
  .contact-section {
    padding: 50px 15px !important;
  }

  .contact-split-container {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .contact-map-box {
    min-height: 320px !important;
    border-radius: 16px !important;
  }

  .btn-submit {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
  }

  .input-wrapper input, 
  .input-wrapper select, 
  .input-wrapper textarea {
    padding: 12px 14px 12px 42px !important; 
    font-size: 0.88rem !important;
  }

  .input-icon {
    left: 14px !important; 
    font-size: 0.95rem !important;
  }

  /* Pre-Registration Section Mobile Adjustments */
  .register-section {
    padding: 50px 15px !important;
  }

  .register-card {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }

  .register-form-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .btn-register-submit {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 0.9rem !important;
  }

  /* Back to Top Mobile Spacing Adjustments */
  .back-to-top-btn {
    bottom: 85px !important; /* Float above the mobile bottom nav bar */
    right: 20px !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1rem !important;
  }
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .qr-card {
    max-width: 100%;
  }
}

/* --- Desktop & Mobile Hero Overlay --- */
.hero-container {
  container-type: inline-size;
}

.desktop-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  pointer-events: none;
}

.hero-overlay-list {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55cqw;
  pointer-events: auto; /* Active pointer events for hover animations */
}

.hero-overlay-list li {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  display: list-item;
  align-items: center;
  gap: 0.8cqw;
  white-space: nowrap;
  color: #ffffff;
  letter-spacing: 0.03em;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  margin-left: 0;
}

/* Elegant Glowing Pulsing Dot styling */
.hero-overlay-list li::before {
  display: none;
}

/* Pulsing keyframes */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(204, 164, 59, 0.7), 0 0 6px rgba(204, 164, 59, 0.5);
  }
  70% {
    box-shadow: 0 0 0 5px rgba(204, 164, 59, 0), 0 0 10px rgba(204, 164, 59, 0.7);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(204, 164, 59, 0), 0 0 6px rgba(204, 164, 59, 0.5);
  }
}

/* Hover Micro-Animations */
.hero-overlay-list.left-list li:hover {
  transform: translateX(8px);
  color: #cca43b; /* Turn gold on hover */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-overlay-list.right-list li:hover {
  transform: translateX(-8px);
  color: #cca43b; /* Turn gold on hover */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Hover Dot Expansion */
.hero-overlay-list li:hover::before {
  transform: scale(1.3);
  background-color: #cca43b; /* Dot turns gold on hover */
  color: #cca43b;
  box-shadow: 0 0 12px #cca43b;
}

/* --- Desktop Layout Specifics (Screen width > 768px) --- */
@media (min-width: 769px) {
  .hero-overlay-list {
    font-size: 1.3cqw;
  }
  
  /* Left List (Kreş) - White text floating on image */
  .hero-overlay-list.left-list {
    left: 2.2%;
    top: 21%;
  }
  
  .hero-overlay-list.left-list li {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.4);
  }

  /* Right List (Spor) - White text floating on image */
  .hero-overlay-list.right-list {
    right: 2.2%;
    top: 19.5%;
    align-items: flex-end;
  }
  
  .hero-overlay-list.right-list li {
    flex-direction: row-reverse;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.4);
  }
}

/* --- Mobile Layout Specifics (Screen width <= 768px) --- */
@media (max-width: 768px) {
  .hero-overlay-list {
    font-size: 2.5cqw;
    font-size: 14px;
    gap: 0.6cqw 1.5cqw;
    gap: 8px 12px;
  }
  
  /* Left List (Kreş) */
  .hero-overlay-list.left-list {
    left: 50%;
    top: 90%;
    transform: translateX(-50%) translateY(-30px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6cqw 1.5cqw;
    gap: 8px 12px;
    width: max-content;
    list-style: disc;
    padding-left: 1.5cqw;
    padding-left: 18px;
  }
  
  .hero-overlay-list.left-list li {
    text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -1px 0 3px rgba(0,0,0,0.5), 1px 0 3px rgba(0,0,0,0.5);
    color: #ff0000;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .hero-overlay-list.left-list li:hover {
    text-decoration: line-through;
  }

  /* Right List (Spor) */
  .hero-overlay-list.right-list {
    right: auto;
    left: 50%;
    top: 15%;
    transform: translateX(-50%) translateY(20px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6cqw 1.5cqw;
    gap: 8px 12px;
    width: max-content;
    list-style: disc;
    padding-left: 1.5cqw;
    padding-left: 18px;
  }
  
  .hero-overlay-list.right-list li {
    flex-direction: row-reverse;
    text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -1px 0 3px rgba(0,0,0,0.5), 1px 0 3px rgba(0,0,0,0.5);
    color: #ff0000;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .hero-overlay-list.right-list li:hover {
    text-decoration: line-through;
  }
}

