/* ============================================================
   K.B SPORTS FOUNDATION — Complete Stylesheet
   Theme: Fresh Sky Blue & Navy — Clean, Airy, Modern Sports
   ============================================================ */

/* ======================== CSS VARIABLES ======================== */
:root {
  /* Primary — Sky Blue (from reference, slightly deeper) */
  --primary: #3B8DD6;
  --primary-light: #5DA8E8;
  --primary-dark: #2A6FAF;

  /* Accent — Dark Navy (buttons, headings) */
  --accent: #1A1F36;
  --accent-light: #2D3352;
  --accent-dark: #0F1222;

  /* Gradient System */
  --gradient-primary: linear-gradient(135deg, #3B8DD6, #2A6FAF);
  --gradient-hero: linear-gradient(135deg, #3B8DD6, #5DA8E8, #7CC0ED);
  --gradient-accent: linear-gradient(135deg, #1A1F36, #2D3352);
  --gradient-sport-1: linear-gradient(135deg, #34D399, #10B981);
  --gradient-sport-2: linear-gradient(135deg, #FBBF24, #F59E0B);
  --gradient-sport-3: linear-gradient(135deg, #60A5FA, #3B82F6);
  --gradient-sport-4: linear-gradient(135deg, #F87171, #EF4444);
  --gradient-card: linear-gradient(145deg, #ffffff, #f8fafe);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
  --gradient-sky: linear-gradient(180deg, #3B8DD6 0%, #7CC0ED 40%, #AEDAF3 70%, #E4F1FB 100%);

  /* Neutrals */
  --white: #ffffff;
  --off-white: #FAFBFE;
  --gray-50: #F5F6FA;
  --gray-100: #ECEEF5;
  --gray-200: #E0E3ED;
  --gray-300: #C8CCD9;
  --gray-400: #9399AB;
  --gray-500: #6B7185;
  --gray-600: #4A4F63;
  --gray-700: #353949;
  --gray-800: #1A1F36;
  --gray-900: #0F1222;
  --dark: #0a0d1a;

  /* Text */
  --text-primary: #1A1F36;
  --text-secondary: #4A4F63;
  --text-muted: #9399AB;

  /* Fonts */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-padding: 5rem 0;
  --container-width: 1200px;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 100px;

  /* Shadows — softer, more diffused like the screenshot */
  --shadow-sm: 0 2px 12px rgba(26,31,54,0.04);
  --shadow-md: 0 8px 30px rgba(26,31,54,0.06);
  --shadow-lg: 0 16px 48px rgba(26,31,54,0.08);
  --shadow-glow: 0 0 40px rgba(59,141,214,0.14);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: light only;
}

body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ======================== FLOATING BUTTONS ======================== */
.float-whatsapp, .float-phone {
  position: fixed;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
}

.float-whatsapp {
  bottom: 100px;
  right: 24px;
  background: #25d366;
}

.float-phone {
  bottom: 36px;
  right: 24px;
  background: var(--accent);
}

.float-whatsapp:hover, .float-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0,0,0,0.35);
}

.float-whatsapp svg, .float-phone svg {
  width: 22px;
  height: 22px;
}

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(26,31,54,0.06);
  border-bottom: 1px solid rgba(26,31,54,0.04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 1001;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(26,31,54,0.12);
  transition: var(--transition);
}

.navbar.scrolled .logo-img {
  border-color: rgba(59,141,214,0.2);
}

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

.logo-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  transition: var(--transition);
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(26,31,54,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar.scrolled .logo-tagline {
  color: var(--primary);
}

.navbar.scrolled .logo-name {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(26,31,54,0.7);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(255,255,255,0.35);
}

.navbar.scrolled .nav-link {
  color: var(--gray-600);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary);
  background: rgba(59,141,214,0.06);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--gray-800);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ======================== HERO ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-sky);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 30% 40%, rgba(255,255,255,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 70% 60%, rgba(255,255,255,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 50% 90%, rgba(255,255,255,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, var(--off-white));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 0 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--white), rgba(255,255,255,0.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(26,31,54,0.7);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.hero-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(26,31,54,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26,31,54,0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll span {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(26,31,54,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(26,31,54,0.35), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,31,54,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-light);
  box-shadow: 0 8px 24px rgba(26,31,54,0.25);
}

.btn-outline {
  background: rgba(255,255,255,0.7);
  color: var(--accent);
  border: 1.5px solid rgba(26,31,54,0.15);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  border-color: rgba(26,31,54,0.25);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ======================== SECTIONS COMMON ======================== */
.section {
  padding: var(--section-padding);
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  background: rgba(59,141,214,0.06);
  border: 1px solid rgba(59,141,214,0.12);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 1rem auto 0;
}

/* ======================== SPORTS STRIP ======================== */
.sports-strip {
  background: var(--accent);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.sports-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 400px 300px at 10% 50%, rgba(59,141,214,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 90% 50%, rgba(59,141,214,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sports-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.sport-chip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.sport-chip:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(59,141,214,0.4);
  transform: translateY(-3px);
}

.sport-chip-icon {
  font-size: 2rem;
  line-height: 1;
}

.sport-chip-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.sport-chip-info p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}

/* ======================== ABOUT ======================== */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(26,31,54,0.2);
}

.about-image-badge svg {
  width: 18px;
  height: 18px;
}

.about-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.about-content > p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(59,141,214,0.08);
  color: var(--primary);
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ======================== SERVICES ======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(59,141,214,0.08);
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ======================== TOURNAMENTS ======================== */
.tournaments-section {
  background: var(--off-white);
}

.board-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.board-bar-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.board-bar-label svg {
  width: 18px;
  height: 18px;
}

.board-bar-members {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  opacity: 0.85;
}

.board-bar-members strong {
  font-weight: 600;
}

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

.tournament-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.tournament-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.tournament-card-header {
  padding: 2rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tournament-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
}

.badminton-gradient { background: linear-gradient(135deg, #34D399, #10B981); }
.kabaddi-gradient { background: linear-gradient(135deg, #F87171, #EF4444); }
.volleyball-gradient { background: linear-gradient(135deg, #60A5FA, #3B82F6); }
.cricket-gradient { background: linear-gradient(135deg, #FBBF24, #F59E0B); }

.tournament-sport-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.tournament-card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.tournament-format {
  font-size: 0.8rem;
  opacity: 0.85;
  font-weight: 500;
}

.tournament-card-body {
  padding: 1.5rem 2rem 2rem;
}

.tournament-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.tournament-detail:last-of-type {
  border-bottom: none;
  margin-bottom: 1.25rem;
}

.tournament-detail svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.detail-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

.detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.detail-value.fee {
  color: var(--primary);
}

.tournament-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: rgba(59,141,214,0.05);
  border: 1px solid rgba(59,141,214,0.12);
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.tournament-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ======================== TEAM ======================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card-img {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-card:hover .team-card-img {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(59,141,214,0.15);
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card-info h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(59,141,214,0.08);
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-block;
}

/* ======================== GALLERY ======================== */
.gallery-section {
  background: var(--white);
}

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

.gallery-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-item-wide {
  grid-column: span 2;
}

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

.testimonial-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(59,141,214,0.06);
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59,141,214,0.15);
}

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

.testimonial-card > p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(59,141,214,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.testimonial-avatar svg {
  width: 20px;
  height: 20px;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ======================== FAQ ======================== */
.faq-section {
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: rgba(59,141,214,0.2);
  box-shadow: 0 4px 20px rgba(59,141,214,0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.15rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ======================== CONTACT ======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  border-color: rgba(59,141,214,0.2);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--white);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
}

.contact-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.15rem;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.contact-card a {
  color: var(--primary);
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59,141,214,0.1);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ======================== FOOTER ======================== */
.footer {
  background: var(--accent);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer .logo-name {
  color: var(--white);
}

.footer .logo-tagline {
  color: rgba(255,255,255,0.6);
}

.footer .logo-img {
  border-color: rgba(255,255,255,0.15);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-links-group h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-group a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links-group a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-links-group li:not(:has(a)) {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

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

.footer-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

/* ======================== BACK TO TOP ======================== */
.back-to-top {
  position: fixed;
  bottom: 36px;
  left: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26,31,54,0.2);
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26,31,54,0.3);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ======================== ANIMATIONS ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5.5rem 1.25rem 2rem;
    gap: 0.35rem;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links .nav-link {
    color: var(--accent);
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    width: 100%;
    display: block;
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-links .nav-link:last-child {
    border-bottom: none;
  }

  .nav-links .nav-link:hover, .nav-links .nav-link.active {
    color: var(--primary);
    background: rgba(59,141,214,0.06);
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .board-bar {
    flex-direction: column;
    text-align: center;
  }

  .board-bar-members {
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.75rem;
  }

  .hero-content {
    padding: 6rem 0.5rem 3rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .hero-stat-divider {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-content {
    padding: 5.5rem 0.25rem 2.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding: 0 0.25rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.5rem;
  }

  .btn {
    justify-content: center;
  }

  .sports-strip-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery-item-wide {
    grid-column: span 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .tournament-card-body {
    padding: 1.25rem;
  }

  .team-card-img {
    width: 120px;
    height: 120px;
  }

  .board-bar {
    padding: 0.85rem 1rem;
  }

  .tournament-note {
    padding: 0.85rem 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

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

  .contact-form {
    padding: 1.5rem 1.25rem;
  }

  .float-whatsapp, .float-phone {
    width: 46px;
    height: 46px;
    right: 16px;
  }

  .float-whatsapp {
    bottom: 80px;
  }

  .float-phone {
    bottom: 24px;
  }
}
