/* Grappling Kerala - Complete Multi-Page Fluid Design & Typography System */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Color Palette */
  --primary-gold: #E3B10E;
  --gold-hover: #F5C21B;
  --primary-navy: #05205C;
  --navy-hover: #093390;
  --navy-dark: #00091C;
  --text-dark: #111827;
  --text-body: #4B5563;
  --text-muted: #6B7280;
  --text-light-muted: #9CA3AF;
  --bg-white: #FFFFFF;
  --bg-light-gray: #F8F9FA;
  --bg-card: #FFFFFF;
  --deadline-red: #DD0606;
  --border-color: #E5E7EB;

  /* Typography Scales (Fluid Responsive) */
  --font-heading: 'Archivo Black', -apple-system, sans-serif;
  --font-body: 'Poppins', -apple-system, sans-serif;

  --fs-hero: clamp(36px, 5vw, 72px);
  --lh-hero: clamp(42px, 5.4vw, 78px);

  --fs-h1: clamp(22px, 2.8vw, 36px);
  --lh-h1: clamp(28px, 3.2vw, 42px);

  --fs-h2: clamp(18px, 2.2vw, 26px);
  --lh-h2: clamp(24px, 2.6vw, 32px);

  --fs-h3: clamp(15px, 1.5vw, 18px);
  --lh-h3: clamp(20px, 1.8vw, 24px);

  --fs-body-lg: 14.5px;
  --fs-body: 13.5px;
  --fs-sm: 12.5px;
  --fs-xs: 11.5px;

  /* Spacing & Effects */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 6px 20px rgba(227, 177, 14, 0.35);

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

*::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar,
div::-webkit-scrollbar,
section::-webkit-scrollbar,
article::-webkit-scrollbar,
main::-webkit-scrollbar,
aside::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

body {
  line-height: 1.6;
  width: 100%;
  font-size: var(--fs-body);
  color: var(--text-body);
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Force all FontAwesome icons across the website to outlined style */
i.fa-solid,
i.fas,
.fa-solid,
.fas {
  font-weight: 400 !important;
  font-family: "Font Awesome 6 Free", "FontAwesome" !important;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

.highlight-gold {
  color: var(--primary-gold);
}

/* Page Transition Animation */
.page-view {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-view.active-page {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInView 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInView {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 2px;
  display: inline-block;
}

.about-page-title,
.featured-title,
.events-main-title,
.clubs-main-title,
.vm-title,
.impact-header-title,
.leadership-main-title,
.gallery-section-title,
.event-reg-title,
.section-title,
.section-heading-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(32px, 3.8vw, 48px) !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.5px !important;
  color: #000000;
}

/* ==========================================
   HEADER / NAVBAR (Frame 10)
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  z-index: 1000;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  height: 76px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.brand-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.logo-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(5, 32, 92, 0.1);
  transition: var(--transition);
}

.brand-container:hover .logo-badge {
  transform: scale(1.05);
}

.header-brand-text {
  display: none;
  flex-direction: column;
  margin-left: 14px;
}

.header-brand-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.2px;
  line-height: 1.1;
}

.header-brand-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #4B5563;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: #05205C;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link.active,
.nav-link:hover {
  font-weight: 600;
  color: #05205C;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-contact {
  width: 130px;
  height: 44px;
  background: #05205C;
  color: #FFFFFF;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(5, 32, 92, 0.2);
  border: none;
}

.btn-contact:hover {
  background: var(--navy-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 32, 92, 0.3);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 2600;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--primary-navy);
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.mobile-menu-toggle.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-toggle.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(0, 9, 28, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: min(90vw, 360px);
  height: 100%;
  background: #FFFFFF;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.22);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 0;
}

.mobile-drawer-overlay.active .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid #F3F4F6;
  padding-bottom: 20px;
  margin-bottom: 4px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.drawer-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(5, 32, 92, 0.12);
}

.drawer-brand-text {
  display: flex;
  flex-direction: column;
}

.drawer-brand-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.drawer-brand-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.mobile-drawer-close-btn {
  background: #F3F4F6;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.mobile-drawer-close-btn:hover {
  background: #FEE2E2;
  color: #DC2626;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  flex: 1;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link .nav-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mobile-nav-link .nav-icon {
  font-size: 16px;
  color: #6B7280;
  transition: color 0.2s ease;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  background: #EEF2FF;
  color: var(--primary-navy);
  font-weight: 700;
  border-left-color: var(--primary-navy);
}

.mobile-nav-link.active .nav-icon-wrap,
.mobile-nav-link:hover .nav-icon-wrap {
  background: var(--primary-navy);
}

.mobile-nav-link.active .nav-icon,
.mobile-nav-link:hover .nav-icon {
  color: var(--primary-gold);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-drawer-cta {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  background: var(--primary-navy) !important;
  color: #FFFFFF !important;
  border-radius: 8px !important;
  border: none !important;
  box-shadow: none !important;
  gap: 8px;
}

.mobile-drawer-cta:hover {
  background: var(--navy-hover) !important;
}

.mobile-drawer-contact-btn {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
  background: #FFFFFF !important;
  color: var(--primary-navy) !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  gap: 8px;
}

.mobile-drawer-contact-btn:hover {
  background: #F9FAFB !important;
}

.mobile-drawer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.mobile-drawer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #F3F4F6;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
  border: 1.5px solid #E5E7EB;
}

.mobile-drawer-socials a:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
  transform: translateY(-2px);
}

/* ==========================================
   HERO SECTIONS
   ========================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 90px);
  margin-top: 90px;
  display: flex;
  align-items: center;
  padding: 60px 60px 80px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.45) 100%) !important;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-subtitle-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: -2px;
}

.hero-subtitle-text br {
  display: none;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  line-height: 0.98;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85);
}

.hero-title .highlight-gold {
  color: #F5C21B;
}

.hero-description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #E5E7EB;
  max-width: 680px;
  margin-top: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-primary {
  width: 220px;
  height: 52px;
  background: var(--primary-navy);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(5, 32, 92, 0.3);
}

.btn-primary:hover {
  background: var(--navy-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 32, 92, 0.4);
}

.btn-secondary {
  width: 240px;
  height: 52px;
  background: #FFFFFF;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #F3F4F6;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
}

/* ==========================================
   EXACT FIGMA GALLERY SECTION (5-PHOTO BENTO)
   ========================================== */
.gallery-section {
  padding: 45px 60px;
  background: var(--bg-white);
  max-width: 1600px;
  margin: 0 auto;
}

.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.gallery-title-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
}

.gallery-subtext {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--text-body);
  margin-top: 8px;
}

.btn-pill-view-all {
  width: 140px;
  height: 48px;
  background: var(--primary-navy);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(5, 32, 92, 0.2);
  margin-left: auto;
}

.btn-pill-view-all:hover {
  background: var(--navy-hover);
  transform: translateX(4px);
}

/* 5-Photo Bento Grid Layout */
.gallery-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}

.bento-left-large {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
}

.bento-left-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.bento-left-large:hover img {
  transform: scale(1.04);
}

.bento-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 248px 248px;
  gap: 24px;
}

.bento-small-item {
  width: 100%;
  height: 248px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
}

.bento-small-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.bento-small-item:hover img {
  transform: scale(1.05);
}

.photo-overlay-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 32, 92, 0.35);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
}

.bento-left-large:hover .photo-overlay-zoom,
.bento-small-item:hover .photo-overlay-zoom {
  opacity: 1;
}

/* ==========================================
   HALL OF CHAMPIONS (PERFECT FIGMA WINNER CARDS)
   ========================================== */
.hall-champions-section {
  padding: 45px 60px;
  background: #FFFFFF;
  text-align: center;
}

.hall-champions-filter-bar {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  max-width: 1400px;
  margin: 40px auto 40px;
  flex-wrap: wrap;
  padding: 0 60px;
}

.hall-winner-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.hall-winner-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.hall-winner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.winner-card-left-box {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 64%;
  border-radius: 10px 0 0 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1;
}

/* Gold Gradient (Card 01) */
.winner-card-left-box.gold-bg {
  background: linear-gradient(90deg, #EAB308 0%, #FACC15 35%, #FEF08A 75%, rgba(255, 255, 255, 0) 100%);
  color: #000000;
}

/* Silver Gradient (Card 02) */
.winner-card-left-box.silver-bg {
  background: linear-gradient(90deg, #4B5563 0%, #6B7280 35%, #D1D5DB 75%, rgba(255, 255, 255, 0) 100%);
  color: #000000;
}

/* Bronze Gradient (Card 03) */
.winner-card-left-box.bronze-bg {
  background: linear-gradient(90deg, #EA580C 0%, #F97316 35%, #FDBA74 75%, rgba(255, 255, 255, 0) 100%);
  color: #000000;
}

.winner-rank-num {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1;
  color: #000000;
  flex: 0 0 40px;
  letter-spacing: -0.5px;
}

.winner-info-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.winner-player-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
}

.winner-club-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: #111827;
  margin-top: 2px;
}

.winner-card-left-box.silver-bg .winner-club-name {
  color: #4B5563;
}

/* Medal Badge with Price Images (price1.png, price2.png, price3.png) */
.winner-medal-ribbon-badge {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 68px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.winner-price-img {
  width: 62px;
  height: 72px;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.14));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.hall-winner-card:hover .winner-price-img {
  transform: scale(1.12);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.22));
}

.medal-3d-coin {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.medal-3d-coin.gold {
  background: radial-gradient(circle at 35% 35%, #FDE047 0%, #EAB308 55%, #CA8A04 100%);
  border: 3px solid #FEF08A;
  color: #713F12;
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.7);
}

.medal-3d-coin.silver {
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #9CA3AF 55%, #4B5563 100%);
  border: 3px solid #F3F4F6;
  color: #1F2937;
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.medal-3d-coin.bronze {
  background: radial-gradient(circle at 35% 35%, #FFEDD5 0%, #F97316 55%, #C2410C 100%);
  border: 3px solid #FED7AA;
  color: #7C2D12;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4), inset 0 2px 4px rgba(255, 255, 255, 0.7);
}

/* Green Ribbon Tails Underneath Medal */
.medal-green-ribbon-tails {
  width: 32px;
  height: 28px;
  margin-top: -12px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.ribbon-tail {
  width: 14px;
  height: 28px;
  background: linear-gradient(180deg, #22C55E 0%, #15803D 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ribbon-tail.left {
  transform: rotate(-12deg);
  margin-right: -2px;
}

.ribbon-tail.right {
  transform: rotate(12deg);
  margin-left: -2px;
}

/* ==========================================
   DISCOVER CLUBS INFINITE MARQUEE (CLEAN PNG EMBLEMS)
   ========================================== */
.clubs-marquee-section {
  padding: 45px 0;
  background: var(--bg-white);
  text-align: center;
  overflow: hidden;
}

.marquee-container {
  width: 100%;
  margin-top: 50px;
  display: flex;
  overflow: hidden;
  position: relative;
  user-select: none;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 70px;
  animation: marqueeScroll 24s linear infinite;
  width: max-content;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Clean PNG Emblem Floating Logo Items (No rectangular cards) */
.marquee-logo-item {
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 150px;
  transition: var(--transition);
  cursor: pointer;
}

.marquee-logo-item img {
  max-width: 120px;
  max-height: 85px;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.08));
}

.marquee-logo-item:hover img {
  transform: scale(1.12);
  filter: drop-shadow(0px 8px 18px rgba(227, 177, 14, 0.3));
}

/* 3D Coverflow Leadership Carousel */
.leadership-carousel-section {
  padding: 45px 40px 50px;
  background: var(--bg-white);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.leadership-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 500px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1400px;
}

.leadership-3d-card {
  position: absolute;
  width: 350px;
  height: 440px;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 14px 36px rgba(0, 0, 0, 0.14);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  user-select: none;
}

.leadership-card-photo {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
}

.leadership-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leadership-card-info {
  height: 100px;
  background: #FFFFFF;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.officer-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  color: #000000;
}

.officer-role {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: #6B7280;
  margin-top: 3px;
}

.leadership-3d-card.pos-center {
  transform: translateX(0) scale(1) translateZ(0);
  z-index: 10;
  opacity: 1;
  filter: grayscale(0%);
  box-shadow: 0px 18px 48px rgba(0, 0, 0, 0.18);
}

.leadership-3d-card.pos-left-1 {
  transform: translateX(-340px) scale(0.88) translateZ(-60px);
  z-index: 5;
  opacity: 0.85;
  filter: brightness(0.88);
}

.leadership-3d-card.pos-right-1 {
  transform: translateX(340px) scale(0.88) translateZ(-60px);
  z-index: 5;
  opacity: 0.85;
  filter: brightness(0.88);
}

.leadership-3d-card.pos-left-2 {
  transform: translateX(-630px) scale(0.76) translateZ(-120px);
  z-index: 2;
  opacity: 0.65;
  filter: brightness(0.72);
}

.leadership-3d-card.pos-right-2 {
  transform: translateX(630px) scale(0.76) translateZ(-120px);
  z-index: 2;
  opacity: 0.65;
  filter: brightness(0.72);
}

.leadership-3d-card.pos-hidden {
  transform: translateX(0) scale(0.5);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1440px) {
  .leadership-carousel-container {
    height: 460px;
  }

  .leadership-3d-card {
    width: 320px;
    height: 400px;
  }

  .leadership-card-photo {
    height: 300px;
  }

  .leadership-card-info {
    height: 100px;
  }

  .leadership-3d-card.pos-left-1 {
    transform: translateX(-300px) scale(0.86) translateZ(-60px);
  }

  .leadership-3d-card.pos-right-1 {
    transform: translateX(300px) scale(0.86) translateZ(-60px);
  }

  .leadership-3d-card.pos-left-2 {
    transform: translateX(-560px) scale(0.74) translateZ(-120px);
  }

  .leadership-3d-card.pos-right-2 {
    transform: translateX(560px) scale(0.74) translateZ(-120px);
  }
}

@media (max-width: 1100px) {
  .leadership-carousel-container {
    height: 430px;
  }

  .leadership-3d-card {
    width: 290px;
    height: 370px;
  }

  .leadership-card-photo {
    height: 275px;
  }

  .leadership-card-info {
    height: 95px;
  }

  .leadership-3d-card.pos-left-1 {
    transform: translateX(-240px) scale(0.84) translateZ(-50px);
  }

  .leadership-3d-card.pos-right-1 {
    transform: translateX(240px) scale(0.84) translateZ(-50px);
  }

  .leadership-3d-card.pos-left-2 {
    transform: translateX(-440px) scale(0.70) translateZ(-100px);
  }

  .leadership-3d-card.pos-right-2 {
    transform: translateX(440px) scale(0.70) translateZ(-100px);
  }
}

@media (max-width: 768px) {
  .leadership-carousel-container {
    height: 410px;
  }

  .leadership-3d-card {
    width: 260px;
    height: 350px;
  }

  .leadership-card-photo {
    height: 260px;
  }

  .leadership-card-info {
    height: 90px;
  }

  .leadership-3d-card.pos-left-1 {
    transform: translateX(-160px) scale(0.80) translateZ(-40px);
  }

  .leadership-3d-card.pos-right-1 {
    transform: translateX(160px) scale(0.80) translateZ(-40px);
  }

  .leadership-3d-card.pos-left-2 {
    transform: translateX(-290px) scale(0.65) translateZ(-80px);
  }

  .leadership-3d-card.pos-right-2 {
    transform: translateX(290px) scale(0.65) translateZ(-80px);
  }
}

/* Lightbox Modal — Glassmorphism Frosted Blur Backdrop */
.lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 9, 28, 0.70);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 20px;
}

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

.lightbox-card-wrapper {
  width: 1040px;
  max-width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.lightbox-image-box {
  width: 100%;
  height: 640px;
  max-height: 74vh;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 48px rgba(0, 9, 28, 0.10), 0 4px 16px rgba(0, 0, 0, 0.04);
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
}

.lightbox-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #FFFFFF;
}

.lightbox-btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DC2626;
  font-size: 20px;
  font-weight: bold;
  border: 1.5px solid #E5E7EB;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.lightbox-btn-close:hover {
  transform: scale(1.08);
  background: #FEF2F2;
  border-color: #FCA5A5;
}

.lightbox-bottom-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.lightbox-nav-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-sq {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 14px;
  border: 1px solid #D1D5DB;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn-nav-sq:hover:not(:disabled) {
  background: #F3F4F6;
  color: #05205C;
  border-color: #05205C;
}

.btn-nav-sq:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #E5E7EB;
}

.counter-pill-sq {
  height: 40px;
  padding: 0 16px;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.btn-download-now {
  height: 40px;
  padding: 0 20px;
  background: #05205C;
  border: 1.5px solid #05205C;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(5, 32, 92, 0.22);
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-download-now:hover {
  background: #0A2E80;
  border-color: #0A2E80;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(5, 32, 92, 0.3);
}

/* Gallery Directory & Cards */
.gallery-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0 60px;
  max-width: 1600px;
  margin: 0 auto 90px;
}

.gallery-event-card {
  width: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.gallery-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.14);
}

.gallery-card-media {
  position: relative;
  height: 260px;
  width: 100%;
  overflow: hidden;
}

.gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-event-card:hover .gallery-card-media img {
  transform: scale(1.05);
}

.gallery-card-pills-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-card-pill {
  background: #FFFFFF;
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.gallery-card-pill i {
  color: var(--primary-navy);
}

.gallery-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  color: var(--text-dark);
}

.btn-view-gallery-action {
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border: 1.5px solid var(--border-color);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-view-gallery-action:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
  border-color: var(--primary-navy);
}

/* Event Gallery Photos Grid View (Screen 2) */
.gallery-detail-header-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.detail-header-pill {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.detail-header-pill i {
  color: #05205C;
  font-size: 14px;
}

.event-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 60px;
  max-width: 1600px;
  margin: 40px auto 70px;
}

.event-photo-item {
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-photo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.event-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 32, 92, 0.40);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 28px;
}

.event-photo-item:hover .photo-overlay-hover {
  opacity: 1;
}

/* Coaches Page */
.coaches-hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  line-height: var(--lh-hero);
  text-transform: uppercase;
  color: #FFFFFF;
}

.coaches-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 60px;
  max-width: 1600px;
  margin: 0 auto 90px;
}

.coach-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  min-width: 0;
}

.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.coach-card-img-box {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  overflow: hidden;
  background: #111827;
}

.coach-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.coach-card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.coach-card-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: #000000;
  margin: 2px 0 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.coach-pills-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.coach-pill-tag {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 4px 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: #374151;
}

.coach-meta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
}

.coach-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coach-icon-sq {
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05205C;
  font-size: 15px;
  flex: 0 0 36px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.coach-icon-sq i {
  font-weight: 400 !important;
}

.coach-meta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.coach-meta-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: #9CA3AF;
}

.coach-meta-val {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: #111827;
}

/* Event Registration Detail */
.event-register-section {
  margin-top: 90px;
  padding: 50px 60px 90px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.event-register-left {
  flex: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.event-reg-subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.event-reg-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.2;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 0.3px;
}

.event-reg-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-body);
}

.eligibility-alert-box {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid #EF4444;
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.06);
}

.eligibility-icon-sq {
  width: 36px;
  height: 36px;
  background: #EF4444;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 16px;
  flex: 0 0 36px;
}

.eligibility-text-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.eligibility-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #9CA3AF;
}

.eligibility-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: #EF4444;
}

.meta-large-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 4px 0;
}

.meta-large-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.meta-large-icon-sq {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05205C;
  font-size: 17px;
  flex: 0 0 40px;
}

.meta-large-text-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.meta-large-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #9CA3AF;
}

.meta-large-val {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #111827;
}

.meta-large-val.urgent {
  color: #EF4444;
  font-weight: 600;
}

.btn-register-action {
  width: 210px;
  height: 46px;
  background: #05205C;
  color: #FFFFFF;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(5, 32, 92, 0.25);
  border: none;
  cursor: pointer;
}

.btn-register-action:hover {
  background: var(--navy-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(5, 32, 92, 0.35);
}

.event-register-right-media {
  width: 460px;
  height: 520px;
  flex: 0 0 460px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 10px 32px rgba(0, 0, 0, 0.12);
}

.event-register-right-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About Page */
.about-section-row {
  padding: 80px 60px;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.about-section-row.reversed {
  flex-direction: row-reverse;
}

.about-img-box {
  flex: 0 0 520px;
  width: 520px;
  height: 540px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text-box {
  flex: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-page-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 0.98;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.about-page-p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
}

/* About — Our Story block */
.about-story-section {
  padding: 80px 60px;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.about-story-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 8px;
}

.about-story-img {
  flex: 0 0 520px;
  width: 520px;
  height: 560px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* About — Vision & Mission block */
.about-vision-mission-section {
  padding: 90px 60px;
  background: #FFFFFF;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1560px;
  margin: 0 auto;
}

.vision-mission-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0 20px;
}

.vision-mission-col:first-child {
  padding-left: 0;
}

.vision-mission-col:last-child {
  padding-right: 0;
}

.vm-divider {
  display: none;
}

.vm-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  margin-bottom: 4px;
}

.vision-mission-col .about-page-p {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.6;
  color: #4B5563;
}

/* Clubs Page */
.clubs-page-header {
  margin-top: 90px;
  padding: 60px 60px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.clubs-main-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  text-transform: uppercase;
  color: var(--text-dark);
  max-width: 1000px;
}

.clubs-header-desc {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  text-align: center;
  color: var(--text-body);
  max-width: 800px;
}

.clubs-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding: 0 60px;
  max-width: 1600px;
  margin: 24px auto 36px;
}

.filter-controls-group {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  flex: 1;
}

.filter-item-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-item-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-left: 14px;
}

.filter-select-pill {
  width: 160px;
  height: 42px;
  padding: 0 38px 0 18px;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  border: 1.5px solid #E5E7EB;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: #111827;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: var(--transition);
}

select.figma-input-field {
  padding-right: 38px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.filter-select-pill:focus {
  border-color: var(--primary-navy);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(5, 32, 92, 0.08);
}

.search-box-pill {
  position: relative;
  width: 260px;
}

.search-box-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
}

.search-input-pill {
  width: 100%;
  height: 44px;
  padding: 0 42px 0 18px;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #111827;
  outline: none;
  transition: var(--transition);
}

.search-input-pill:focus {
  border-color: var(--primary-navy);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(5, 32, 92, 0.08);
}

.search-icon-inside {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #9CA3AF;
  pointer-events: none;
}

/* Club Cards */
.clubs-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 60px;
  max-width: 1600px;
  margin: 0 auto 70px;
}

.detailed-club-card {
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  padding: 22px 22px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 0;
}

.detailed-club-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.club-card-top-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.club-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.club-title-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.club-card-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.25;
  color: #000000;
  letter-spacing: -0.2px;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.club-tags-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.club-pill-tag {
  background: #FFFFFF;
  border: 1px solid #9CA3AF;
  border-radius: 50px;
  padding: 4px 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: #111827;
  line-height: 1.35;
  white-space: nowrap;
}

.club-meta-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.club-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0;
}

.club-icon-sq {
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05205C;
  font-size: 15px;
  flex: 0 0 36px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.club-meta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.club-meta-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.2;
}

.club-meta-val {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  line-height: 1.3;
}

/* Why Grappling Kerala */
.impact-section {
  position: relative;
  background-color: #00091C;
  background-image: linear-gradient(180deg, rgba(0, 9, 28, 0) 0%, rgba(0, 9, 28, 0.05) 20%, rgba(0, 9, 28, 0.55) 45%, rgba(0, 9, 28, 0.92) 60%, #00091C 72%), url('../images/members.png');
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 500px 40px 80px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.watermark-bg {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  height: 620px;
  opacity: 0.08;
  pointer-events: none;
  object-fit: contain;
  z-index: 1;
}

.impact-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.impact-header .section-label {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.impact-main-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.12;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.impact-subtitle {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  text-align: center;
  color: #9CA3AF;
  max-width: 620px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  max-width: 1560px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.feature-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.25;
  text-align: center;
  color: #FFFFFF;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.65;
  text-align: center;
  color: #9CA3AF;
  max-width: 280px;
}

.impact-stats-container {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 30px;
  width: 100%;
}

.watermark-text {
  font-family: var(--font-heading);
  font-size: clamp(76px, 12vw, 160px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  user-select: none;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 4px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(52px, 5.5vw, 76px);
  line-height: 1.0;
  text-align: center;
  color: #E3B10E;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FFFFFF;
}

/* Featured Championship */
.featured-section {
  padding: 80px 60px;
  background: var(--bg-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1600px;
  margin: 0 auto;
}

.featured-content {
  flex: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.1;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 4px;
}

.meta-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 10px 0 14px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.meta-icon-box {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #05205C;
}

.meta-text-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.meta-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: #9CA3AF;
}

.meta-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: #111827;
}

.meta-value.urgent {
  color: #DC2626;
  font-weight: 600;
}

.btn-outlined {
  width: 190px;
  height: 48px;
  background: #FFFFFF;
  color: #111827;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.btn-outlined:hover {
  border-color: #05205C;
  color: #05205C;
}

.featured-media-wrapper {
  width: 560px;
  height: 580px;
  flex: 0 0 560px;
  position: relative;
}

.featured-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.featured-badge-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #FFFFFF;
  padding: 10px 24px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: #B58A24;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}

/* Upcoming Events */
.events-section {
  padding: 45px 60px;
  background: var(--bg-white);
  max-width: 1600px;
  margin: 0 auto;
}

.events-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.events-title-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
}

.events-main-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  text-transform: uppercase;
  color: var(--text-dark);
}

.btn-pill-viewall {
  width: 180px;
  height: 48px;
  background: var(--primary-navy);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  margin-left: auto;
}

.btn-pill-viewall:hover {
  background: var(--navy-hover);
  transform: translateX(4px);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Event Cards (Unified Spec for Home & Events View) */
.event-card,
.directory-event-card {
  width: 100%;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover,
.directory-event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.event-card-media,
.directory-card-media {
  position: relative;
  height: 200px;
  width: 100%;
}

.event-card-media img,
.directory-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-badge-top-left {
  position: absolute;
  top: 12px;
  left: 0;
  height: 32px;
  background: #FFFFFF;
  color: #05205C;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  padding: 0 16px 0 14px;
  border-radius: 0 50px 50px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  z-index: 2;
}

.event-badge-top-right {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 32px;
  background: #FFFFFF;
  color: #111827;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  padding: 0 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.event-badge-top-right i {
  color: #05205C;
  font-size: 12px;
}

.event-card-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: #6B7280;
  margin: 2px 0 4px;
}

.event-location-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 6px;
}

.location-icon-box {
  width: 32px;
  height: 32px;
  background: #F3F4F6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05205C;
  font-size: 13px;
  flex: 0 0 32px;
}

.location-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: #111827;
}

.status-pill-badge {
  position: absolute;
  top: 12px;
  right: 0;
  height: 32px;
  background: #FFFFFF;
  padding: 0 16px 0 14px;
  border-radius: 50px 0 0 50px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.badge-reg-open {
  color: #15803D;
}

.badge-reg-close {
  color: #B91C1C;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.dot-green {
  background: #16A34A;
}

.dot-red {
  background: #DC2626;
}

.event-card-body,
.directory-card-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

.event-card-title,
.directory-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
  color: #000000;
  margin: 0;
}

.directory-meta-stack,
.event-meta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dir-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
}

.dir-meta-icon {
  width: 34px;
  height: 34px;
  background: #FFFFFF;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #05205C;
  font-size: 14px;
  flex: 0 0 34px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.dir-meta-icon i {
  font-weight: 400 !important;
}

.dir-meta-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dir-meta-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.2;
}

.dir-meta-val {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  color: #000000;
  line-height: 1.3;
}

.dir-meta-val.urgent {
  color: #05205C;
  font-weight: 600;
}

.btn-card-action {
  width: 100%;
  height: 42px;
  background: #05205C;
  color: #FFFFFF;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-card-action:hover {
  background: #00091C;
  transform: translateY(-1px);
}

.btn-card-action.disabled-grey,
.btn-card-action.btn-closed {
  background: #9CA3AF !important;
  color: #FFFFFF !important;
  cursor: default !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 60px 60px 30px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.1);
}

.footer-container-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.footer-brand-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  color: #FFFFFF;
}

.footer-brand-p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: #D1D5DB;
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 18px;
  transition: var(--transition);
}

.social-icon-btn:hover {
  background: var(--primary-navy);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.footer-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list-items a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  color: #D1D5DB;
  transition: var(--transition);
  cursor: pointer;
}

.footer-list-items a:hover {
  color: var(--primary-gold);
}

.footer-contact-list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: #D1D5DB;
}

.contact-icon-box {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 16px;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: #9CA3AF;
}

/* Modals */
.registration-modal-card {
  max-width: 1100px !important;
  width: 90vw !important;
  max-height: calc(100vh - 60px) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  padding: 32px 36px !important;
  border-radius: 20px !important;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.25) !important;
  position: relative;
  background: #FFFFFF;
  margin: auto;
}

.registration-modal-card::-webkit-scrollbar,
.modal-box::-webkit-scrollbar,
.modal-backdrop::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.modal-header-red-close {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.modal-header-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.2;
  text-transform: uppercase;
  color: #000000;
  letter-spacing: 0.3px;
}

.form-main-subtitle {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: #6B7280;
  margin-top: 2px;
}

.btn-close-red {
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 1.5px solid #EF4444;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EF4444;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-close-red:hover {
  background: #EF4444;
  color: #FFFFFF;
}

.form-category-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.form-category-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: #111827;
}

.form-fields-flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.figma-input-field {
  flex: 1;
  min-width: 220px;
  height: 50px;
  padding: 10px 16px;
  background: #FFFFFF;
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #111827;
  outline: none;
  transition: var(--transition);
}

select.figma-input-field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.figma-input-field::placeholder {
  color: #9CA3AF;
  font-size: 13.5px;
}

.figma-input-field:focus {
  border-color: #05205C;
  box-shadow: 0 0 0 3px rgba(5, 32, 92, 0.1);
}

.declaration-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 24px;
  cursor: pointer;
}

.declaration-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid #D1D5DB;
  border-radius: 4px;
  cursor: pointer;
  accent-color: #05205C;
  margin: 0;
}

.declaration-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #4B5563;
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.btn-submit-registration {
  width: 100%;
  height: 54px;
  background: #05205C;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(5, 32, 92, 0.25);
  transition: var(--transition);
  margin-top: 24px;
}

.btn-submit-registration:hover {
  background: #093390;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(5, 32, 92, 0.35);
}

.btn-submit-registration i {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.btn-submit-registration:hover i {
  transform: translateX(4px);
}

.form-buttons-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 24px;
  width: 100%;
}

.btn-form-register {
  width: 180px;
  flex: 0 0 180px;
  height: 52px;
  background: #05205C;
  color: #FFFFFF;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(5, 32, 92, 0.22);
  transition: var(--transition);
}

.btn-form-register:hover {
  background: #093390;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(5, 32, 92, 0.35);
}

.btn-form-reset {
  width: 180px;
  flex: 0 0 180px;
  height: 52px;
  background: #FFFFFF;
  border: 1.5px solid #D1D5DB;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-form-reset:hover {
  border-color: #111827;
  background: #F8F9FA;
}

body.modal-open {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 9, 28, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 30px 20px;
  overflow-y: auto;
  overscroll-behavior: contain !important;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 600px;
  width: 90vw;
  box-shadow: var(--shadow-lg);
  position: relative;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.modal-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-dark);
}

.modal-close {
  background: none;
  font-size: 22px;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--deadline-red);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(5, 32, 92, 0.1);
}

.btn-submit {
  width: 100%;
  height: 50px;
  background: var(--primary-navy);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--navy-hover);
}

.success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 10px;
}

/* Registration Success Screen (Exact Figma Spec) */
.registration-success-container {
  min-height: calc(100vh - 120px);
  margin-top: 80px;
  padding: 60px 20px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-navy-circle {
  width: 100px;
  height: 100px;
  background: #05205C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 44px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(5, 32, 92, 0.25);
}

.active-page .success-navy-circle {
  animation: checkZoomIn 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes checkZoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  65% {
    opacity: 1;
    transform: scale(1.12);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.success-figma-title {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #05205C;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.success-figma-desc {
  width: 620px;
  max-width: 90vw;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #4B5563;
  margin-bottom: 32px;
}

.btn-back-events {
  width: 240px;
  max-width: 90vw;
  height: 50px;
  background: #05205C;
  box-shadow: 0px 4px 14px rgba(5, 32, 92, 0.28);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-back-events:hover {
  background: #093390;
  transform: translateY(-2px);
  box-shadow: 0px 6px 20px rgba(5, 32, 92, 0.35);
}

/* ==========================================
   EXECUTIVE RESPONSIVE DESIGN SYSTEM
   ========================================== */

@media (max-width: 1400px) {
  .site-header {
    padding: 10px 40px;
  }

  .hero-section,
  .about-section-row,
  .impact-section,
  .featured-section,
  .events-section,
  .leadership-carousel-section,
  .hall-champions-section,
  .clubs-marquee-section,
  .gallery-section,
  .site-footer,
  .event-register-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-img-box,
  .featured-media-wrapper,
  .event-register-right-media {
    width: 460px;
    flex: 0 0 460px;
    height: 480px;
  }

  .clubs-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 40px;
    gap: 20px;
  }

  .coaches-grid-container {
    grid-template-columns: repeat(4, 1fr);
    padding: 0 40px;
    gap: 18px;
  }

  .gallery-cards-grid,
  .hall-winner-cards-row {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 40px;
    gap: 20px;
  }

  .event-photo-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .site-header {
    padding: 10px 24px;
  }

  .hero-section {
    padding: 40px 24px 60px;
    min-height: calc(100vh - 68px);
    min-height: calc((var(--vh, 1vh) * 100) - 68px);
  }

  .about-section-row,
  .featured-section,
  .event-register-section {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 36px;
    padding: 60px 24px;
  }

  .about-text-box,
  .featured-content,
  .event-register-left {
    max-width: 100%;
    align-items: flex-start;
    width: 100%;
  }

  .about-img-box,
  .featured-media-wrapper,
  .event-register-right-media {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    height: 380px;
  }

  .coaches-grid-container,
  .clubs-cards-grid,
  .features-grid,
  .stats-grid,
  .events-grid,
  .gallery-cards-grid,
  .hall-winner-cards-row,
  .event-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
    gap: 20px;
  }

  .gallery-bento-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bento-left-large {
    height: 360px;
    width: 100%;
  }

  .bento-right-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .bento-small-item {
    height: 200px;
  }

  .leadership-carousel-container {
    height: 440px;
  }

  .leadership-3d-card {
    width: 300px;
    height: 400px;
  }

  .leadership-card-photo {
    height: 300px;
  }
}

/* ==========================================
   DESKTOP HERO STYLING (> 768px)
   Subpage hero sections (About, Events, Coaches) display full uncropped right-side image
   (EXCEPT Home hero section)
   ========================================== */
@media (min-width: 769px) {

  .hero-section.about-hero-bg,
  #about-view .about-hero-bg {
    background-image: linear-gradient(90deg, #000000 0%, #000000 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 80%), url('../images/story_team.png'), url('images/story_team.png') !important;
    background-position: right center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-color: #000000 !important;
    min-height: calc(100vh - 90px) !important;
  }

  .hero-section.hero-right-bg,
  #events-view .hero-right-bg {
    background-image: linear-gradient(90deg, #000000 0%, #000000 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 80%), url('../images/fight.png'), url('images/fight.png') !important;
    background-position: right center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-color: #000000 !important;
    min-height: calc(100vh - 90px) !important;
  }

  #coaches-view .hero-right-bg {
    background-image: linear-gradient(90deg, #000000 0%, #000000 40%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 80%), url('../images/aji.png'), url('images/aji.png') !important;
    background-position: right center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-color: #000000 !important;
    min-height: calc(100vh - 90px) !important;
  }
}

@media (max-width: 768px) {

  /* Prevent horizontal scroll globally */
  html,
  body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden !important;
  }

  /* Header & Navigation Bar */
  .site-header {
    padding: 0 16px;
    height: 68px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }

  .site-header.scrolled {
    height: 62px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .logo-badge {
    height: 40px;
    width: auto;
  }

  .header-brand-text {
    display: flex;
    margin-left: 10px;
  }

  .header-brand-title {
    font-size: 16px;
  }

  .header-brand-sub {
    font-size: 11px;
  }

  .nav-menu,
  .btn-contact {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }



  .events-section,
  .gallery-section {
    display: flex !important;
    flex-direction: column !important;
  }

  .events-header-row,
  .gallery-header-row {
    display: contents !important;
  }

  .events-title-box,
  .gallery-title-box {
    order: 1 !important;
    margin-bottom: 32px !important;
    width: 100% !important;
  }

  .events-grid,
  .gallery-bento-grid {
    order: 2 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
  }

  .btn-pill-viewall,
  .btn-pill-view-all {
    order: 3 !important;
    align-self: flex-end !important;
    margin-left: auto !important;
    margin-top: 24px !important;
    margin-bottom: 0 !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-pill) !important;
    box-shadow: 0 4px 12px rgba(5, 32, 92, 0.2) !important;
  }

  /* Force Left Alignment on Mobile */
  .section-label,
  .section-title,
  .about-page-title,
  .impact-main-title,
  .events-main-title,
  .featured-title,
  .clubs-main-title,
  .leadership-main-title,
  .gallery-section-title,
  .about-page-p,
  .about-p,
  .hero-description,
  .form-main-heading,
  .form-main-subtitle,
  .impact-header {
    text-align: left !important;
  }

  .leadership-carousel-section,
  .hall-champions-section,
  .clubs-marquee-section,
  .gallery-section,
  .events-section {
    text-align: left;
    align-items: flex-start;
  }

  /* Hero Section Mobile Overlay & Background (Tall & Full Hero Height) */
  .hero-section {
    margin-top: 68px;
    padding: 96px 20px 64px !important;
    min-height: calc(88vh - 68px) !important;
    min-height: 720px !important;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative !important;
  }

  #home-view #home,
  #home.hero-section {
    min-height: calc(95vh - 68px) !important;
    min-height: 780px !important;
    padding: 104px 20px 72px !important;
  }

  .hero-overlay,
  .hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 25%,
        rgba(0, 0, 0, 0.4) 45%,
        rgba(0, 0, 0, 0.85) 68%,
        rgba(0, 0, 0, 0.98) 88%,
        #000000 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 2;
    gap: 0 !important;
  }

  .hero-subtitle-text {
    font-size: 13.5px !important;
    letter-spacing: 1.2px !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.4 !important;
    padding: 0 !important;
    text-align: left !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .hero-subtitle-text br {
    display: block;
  }

  .hero-title {
    font-size: clamp(36px, 10.5vw, 60px) !important;
    line-height: 0.95 !important;
    letter-spacing: -1.2px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    margin: 4px 0 12px 0 !important;
    text-align: left !important;
    font-weight: 900 !important;
  }

  .home-hero-title {
    font-size: clamp(40px, 11.5vw, 68px) !important;
    line-height: 0.93 !important;
    letter-spacing: -1.4px !important;
  }

  .hero-line {
    display: block !important;
    max-width: 100% !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .hero-description {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: left !important;
  }

  .hero-cta-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 12px !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 100 !important;
    pointer-events: auto !important;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-secondary,
  .hero-cta-group .btn-outlined {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 14px 24px !important;
    min-height: 52px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 101 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  }

  /* Clean background images for mobile hero sections with refined zoom & smooth dark fade */
  #home-view #home,
  #home.hero-section {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.82) 65%, #000000 88%, #000000 100%), url('../images/hero_bg.png') !important;
    background-position: center top !important;
    background-size: 150% auto !important;
    background-repeat: no-repeat !important;
    background-color: #000000 !important;
    min-height: calc(95vh - 68px) !important;
    min-height: 780px !important;
    padding: 104px 20px 72px !important;
  }

  #about-view .about-hero-bg {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.82) 65%, #000000 88%, #000000 100%), url('../images/story_team.png') !important;
    background-position: center top !important;
    background-size: 115% auto !important;
    background-repeat: no-repeat !important;
    background-color: #000000 !important;
    min-height: calc(88vh - 68px) !important;
    min-height: 720px !important;
    padding: 96px 20px 64px !important;
  }

  #events-view .hero-right-bg {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.82) 65%, #000000 88%, #000000 100%), url('../images/fight.png') !important;
    background-position: center top !important;
    background-size: 140% auto !important;
    background-repeat: no-repeat !important;
    background-color: #000000 !important;
    min-height: calc(88vh - 68px) !important;
    min-height: 720px !important;
    padding: 96px 20px 64px !important;
  }

  #coaches-view .hero-right-bg {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.82) 65%, #000000 88%, #000000 100%), url('../images/aji.png') !important;
    background-position: center top !important;
    background-size: 115% auto !important;
    background-repeat: no-repeat !important;
    background-color: #000000 !important;
    min-height: calc(88vh - 68px) !important;
    min-height: 720px !important;
    padding: 96px 20px 64px !important;
  }



  /* All Page Sections Fluid Width & Unified 20px Side Padding */
  .about-section-row,
  .impact-section,
  .featured-section,
  .events-section,
  .leadership-carousel-section,
  .hall-champions-section,
  .clubs-marquee-section,
  .gallery-section,
  .site-footer,
  .event-register-section,
  .about-story-section,
  .about-vision-mission-section {
    padding: 28px 16px !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  /* About Section Rows — Stack vertically */
  .about-section-row {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: flex-start !important;
    padding: 28px 14px !important;
  }

  .about-section-row.reversed {
    flex-direction: column !important;
  }

  /* About image box responsive */
  .about-img-box {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    height: 200px !important;
    border-radius: 12px !important;
    box-sizing: border-box;
  }

  /* About story section */
  .about-story-section {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: flex-start !important;
    padding: 28px 14px !important;
  }

  .about-story-img {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    height: 200px !important;
    border-radius: 12px !important;
    box-sizing: border-box;
    order: -1;
  }

  .about-story-text {
    gap: 16px !important;
    padding-top: 0 !important;
  }

  /* About text box */
  .about-text-box {
    max-width: 100% !important;
    width: 100% !important;
    gap: 12px !important;
  }

  /* About page title */
  .about-page-title {
    font-size: clamp(28px, 8vw, 40px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 4px !important;
  }

  .about-page-p {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  /* Vision & Mission — stack vertically */
  .about-vision-mission-section {
    flex-direction: column !important;
    gap: 0 !important;
    padding: 28px 14px !important;
    align-items: stretch !important;
  }

  .vision-mission-col {
    align-items: flex-start !important;
    text-align: left !important;
    padding: 28px 0 !important;
    border-bottom: 1px solid #E5E7EB;
    gap: 10px !important;
  }

  .vision-mission-col:last-child {
    border-bottom: none;
    padding-bottom: 0 !important;
  }

  .vision-mission-col .about-page-p {
    text-align: left !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .vm-title {
    font-size: clamp(22px, 7vw, 32px) !important;
    line-height: 1.15 !important;
    text-align: left !important;
  }

  /* All Card Grids -> Single Column Fluid Stack (Unified 20px Side Padding Alignment) */
  .clubs-cards-grid,
  .coaches-grid-container,
  .gallery-cards-grid,
  .event-photo-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 40px !important;
    gap: 20px !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hall-winner-cards-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Events grid: single column on mobile */
  .events-grid {
    grid-template-columns: 1fr !important;
    padding: 0 20px 40px !important;
    gap: 20px !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* When inside Home section wrapper which already has 20px padding */
  #home-view .events-grid,
  #home-view .clubs-cards-grid,
  #home-view .coaches-grid-container {
    padding: 0 !important;
  }

  /* Restore normal event card sizes for single column */
  .event-card,
  .directory-event-card {
    border-radius: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .event-card-media,
  .directory-card-media {
    height: 200px !important;
  }

  .event-card-body,
  .directory-card-body {
    padding: 20px 20px 18px !important;
    gap: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .event-card-title,
  .directory-card-title {
    font-size: 15px !important;
    line-height: 1.3 !important;
  }

  .directory-meta-stack,
  .event-meta-stack {
    gap: 10px !important;
  }

  .dir-meta-row {
    gap: 12px !important;
    align-items: center !important;
  }

  .dir-meta-icon {
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }

  .dir-meta-label {
    font-size: 10px !important;
  }

  .dir-meta-val {
    font-size: 12.5px !important;
    line-height: 1.3 !important;
  }

  .btn-card-action {
    height: 44px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
  }

  .event-badge-top-left {
    font-size: 12px !important;
    height: 30px !important;
    padding: 0 14px !important;
  }

  /* ── Vertical card stack for events on mobile ── */
  .events-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 0 20px 40px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .events-grid::-webkit-scrollbar {
    display: none !important;
  }

  /* Each card takes full width now */
  .events-grid .directory-event-card,
  .events-grid .event-card {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    height: auto !important;
  }

  /* Card image - vertical */
  .events-grid .directory-card-media,
  .events-grid .event-card-media {
    width: 100% !important;
    height: 170px !important;
    flex: none !important;
    border-radius: 0 !important;
  }

  .events-grid .directory-card-media img,
  .events-grid .event-card-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }

  /* Card body */
  .events-grid .directory-card-body,
  .events-grid .event-card-body {
    padding: 14px 14px 14px !important;
    gap: 10px !important;
    flex: 1 !important;
    min-width: 0 !important;
  }

  .events-grid .directory-card-title,
  .events-grid .event-card-title {
    font-size: 15px !important;
    line-height: 1.3 !important;
  }

  .events-grid .event-card-desc {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    color: #6B7280 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .events-grid .event-location-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .events-grid .location-text {
    font-size: 12.5px !important;
  }

  .events-grid .btn-card-action {
    height: 40px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
  }

  .events-grid .event-badge-top-left {
    font-size: 11px !important;
    height: 26px !important;
    padding: 0 12px !important;
  }

  .events-grid .event-badge-top-right {
    font-size: 11px !important;
    padding: 5px 10px !important;
  }

  /* 2-Column Mobile Grids for Impact & Stats */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    padding: 0;
    gap: 20px 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-bottom: 32px !important;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .feature-card {
    padding: 0;
    border: none;
    background: transparent;
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .feature-title {
    font-size: 15px;
    line-height: 1.3;
    text-align: center;
  }

  .watermark-text {
    font-size: clamp(48px, 16vw, 76px) !important;
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1 !important;
    margin-bottom: 24px !important;
  }

  .feature-desc {
    font-size: 12.5px;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
  }

  .stat-number {
    font-size: clamp(32px, 9vw, 44px);
  }

  .stat-label {
    font-size: 10px;
  }

  /* Improve Impact Section Readability on Mobile */
  .impact-section {
    padding: 60px 20px 60px !important;
    background-size: cover !important;
    background-position: center top !important;
    background-image: linear-gradient(180deg, rgba(0, 9, 28, 0.72) 0%, rgba(0, 9, 28, 0.85) 40%, rgba(0, 9, 28, 0.97) 70%, #00091C 100%), url('../images/members.png') !important;
  }

  .impact-header {
    margin-bottom: 32px !important;
    gap: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .impact-header .section-label,
  .impact-main-title,
  .impact-subtitle {
    text-align: center !important;
  }

  .impact-main-title {
    font-size: clamp(26px, 8vw, 38px) !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
  }

  .impact-subtitle {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    max-width: 100% !important;
    padding: 0 4px !important;
  }

  .detailed-club-card,
  .coach-card,
  .directory-event-card,
  .gallery-event-card,
  .hall-winner-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .detailed-club-card {
    padding: 20px !important;
    border-radius: 16px !important;
    gap: 16px !important;
  }

  /* ── Winner card: clean mobile layout ── */
  .hall-winner-card {
    height: 88px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 1.5px solid #E5E7EB !important;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.05) !important;
    background: #FFFFFF !important;
  }

  /* Left gradient box stretches to 100% with right padding reserved for medal */
  .winner-card-left-box {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 12px 76px 12px 16px !important;
    gap: 12px !important;
    border-radius: 12px 0 0 12px !important;
    box-sizing: border-box !important;
  }

  .winner-rank-num {
    font-size: 28px !important;
    flex: 0 0 36px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
  }

  .winner-player-name {
    font-size: 15px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .winner-club-name {
    font-size: 12px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin-top: 2px !important;
  }

  /* Medal badge anchored clean at right, vertically centred */
  .winner-medal-ribbon-badge {
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 52px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 5 !important;
  }

  .winner-price-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.16)) !important;
  }


  /* Image wrappers fluid aspect ratio */
  .about-img-box,
  .event-register-right-media {
    width: 100%;
    max-width: 100%;
    flex: 1 1 auto;
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 320px;
    border-radius: 14px;
    box-sizing: border-box;
  }

  .featured-media-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    max-height: none !important;
    flex: none !important;
    position: relative !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-sizing: border-box;
  }

  .featured-media-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    display: block !important;
  }

  .featured-section {
    flex-direction: column !important;
    padding: 32px 16px !important;
    gap: 24px !important;
    align-items: stretch !important;
  }

  .featured-content {
    max-width: 100% !important;
    width: 100% !important;
    order: 2;
  }

  .featured-title {
    font-size: clamp(26px, 8vw, 38px) !important;
    line-height: 1.1 !important;
  }

  .featured-badge-overlay {
    top: 14px !important;
    left: 14px !important;
    font-size: 13px !important;
    padding: 8px 16px !important;
  }

  /* Clubs Filter Bar - Full Reset for Mobile with Clean Tight Spacing */
  .clubs-filter-bar,
  .hall-champions-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 12px !important;
    align-items: stretch;
    padding: 0 16px !important;
    margin: 4px 0 16px !important;
    width: 100%;
    box-sizing: border-box;
  }

  /* Clubs page header padding for mobile */
  .clubs-page-header {
    margin-top: 56px !important;
    padding: 16px 16px 8px !important;
    text-align: left !important;
    align-items: flex-start !important;
    gap: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .clubs-main-title {
    font-size: clamp(22px, 6.5vw, 32px) !important;
    line-height: 1.1 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .clubs-header-desc {
    font-size: 13px !important;
    line-height: 1.5 !important;
    text-align: left !important;
    max-width: 100% !important;
    margin-top: 2px !important;
  }

  /* Grid containers tight bottom margin on mobile */
  .clubs-cards-grid,
  .events-grid,
  .coaches-grid-container,
  .gallery-cards-grid {
    margin-bottom: 24px !important;
    padding-bottom: 0 !important;
  }

  /* Search box standalone (below filter controls group) */
  .clubs-filter-bar>.filter-item-box {
    width: 100% !important;
    padding: 0 !important;
  }

  .clubs-filter-bar>.filter-item-box .search-box-pill {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Generic filter-controls-group: scrollable row (default) */
  .filter-controls-group {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 10px;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  /* Clubs filter-controls-group: 2-column grid (override) */
  .clubs-filter-bar .filter-controls-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 12px !important;
    overflow-x: visible !important;
    white-space: normal !important;
    padding-bottom: 0 !important;
    flex: none;
  }

  .filter-controls-group::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  /* Compact & Refined Mobile Filter Select Dropdowns */
  .filter-select-pill,
  select.filter-select-pill {
    flex: 0 0 auto;
    font-size: 13px !important;
    height: 38px !important;
    min-height: 38px !important;
    padding: 0 30px 0 14px !important;
    border-radius: 50px !important;
    border: 1.5px solid #E5E7EB !important;
    background-color: #FFFFFF !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    color: #111827 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    box-sizing: border-box !important;
  }

  .filter-select-pill option {
    background-color: #FFFFFF !important;
    color: #111827 !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
  }

  .filter-select-pill:focus,
  .filter-select-pill:active {
    border-color: #05205C !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 0 0 3px rgba(5, 32, 92, 0.08) !important;
    outline: none !important;
  }

  /* Specific overrides for Hall of Champions Mobile Layout */
  .hall-champions-section .section-label,
  .hall-champions-section .section-title,
  .hall-champions-section .about-p {
    text-align: left !important;
    margin-left: 0 !important;
  }

  /* 2-column grid for filter controls in clubs + hall of champions */
  .hall-champions-filter-bar,
  .clubs-filter-bar .filter-controls-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px 14px !important;
    overflow-x: visible !important;
    white-space: normal !important;
    padding: 0 !important;
    padding-bottom: 0 !important;
  }

  /* Filter item box label spacing */
  .filter-item-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
  }

  /* Clubs filter items inside grid: full width */
  .clubs-filter-bar .filter-controls-group .filter-item-box {
    width: 100% !important;
    align-items: flex-start !important;
    min-width: 0;
  }

  /* Clubs filter selects full width */
  .clubs-filter-bar .filter-controls-group .filter-select-pill {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }

  /* Hall of champions filter items */
  .hall-champions-filter-bar .filter-item-box {
    width: 100% !important;
    align-items: flex-start !important;
  }

  .hall-champions-filter-bar .filter-item-box:last-child {
    grid-column: 1 / -1;
    margin-top: 8px !important;
  }

  .hall-champions-filter-bar .filter-select-pill,
  .hall-champions-filter-bar .search-box-pill {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Search Club box — standalone below grid — full width */
  .clubs-filter-bar>.filter-item-box {
    width: 100% !important;
  }

  .clubs-filter-bar>.filter-item-box .search-box-pill,
  .clubs-filter-bar .search-box-pill {
    width: 100% !important;
    max-width: 100% !important;
  }

  .search-box-pill {
    width: 100%;
  }

  .search-box-pill input {
    font-size: 13px !important;
    padding: 10px 36px 10px 14px !important;
    width: 100%;
    box-sizing: border-box;
  }

  .filter-item-label {
    font-size: 10.5px !important;
    letter-spacing: 0.8px !important;
    padding-left: 14px !important;
    margin-bottom: 2px !important;
    color: #6B7280 !important;
  }

  /* 3D Coverflow Carousel on Mobile */
  .leadership-carousel-container {
    height: 300px;
    margin-top: 16px;
    perspective: 1000px;
  }

  .leadership-3d-card {
    width: min(70vw, 220px);
    height: 280px;
    border-radius: 12px;
  }

  .leadership-card-photo {
    height: 210px;
  }

  .leadership-card-info {
    height: 70px;
    padding: 8px 12px;
  }

  .officer-name {
    font-size: 14px;
  }

  .officer-role {
    font-size: 11px;
  }

  /* Gallery Bento Grid Mobile */
  .gallery-bento-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: auto !important;
    width: 100%;
  }

  .bento-left-large {
    width: 100%;
    height: 220px !important;
  }

  .bento-right-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: auto !important;
    width: 100%;
  }

  .bento-small-item {
    height: 130px !important;
    width: 100%;
  }

  /* Hall of Fame Mobile Card Stacking */
  .hall-winner-card {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 0;
  }

  .winner-card-left-box {
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 16px;
  }

  .winner-medal-ribbon-badge {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 10px auto 0;
    width: 60px;
    height: 68px;
  }

  .winner-card-right-box {
    padding: 16px;
    width: 100%;
  }

  /* Mobile Sheet Modals for ALL modal cards */
  .modal-backdrop {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  /* Mobile Lightbox Modal — Glassmorphism Frosted Blur Backdrop */
  .lightbox-backdrop {
    padding: 16px 12px !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 9, 28, 0.70) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  }

  .lightbox-card-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    gap: 12px !important;
  }

  .lightbox-image-box {
    height: clamp(280px, 55vh, 480px) !important;
    max-height: 60vh !important;
    border-radius: 14px !important;
    background: #FFFFFF !important;
    border: 1.5px solid #E5E7EB !important;
    box-shadow: 0 16px 36px rgba(0, 9, 28, 0.10) !important;
  }

  .lightbox-image-box img {
    background: #FFFFFF !important;
  }

  .lightbox-btn-close {
    top: 12px !important;
    right: 12px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 18px !important;
    border-radius: 8px !important;
    background: #FFFFFF !important;
    border: 1.5px solid #E5E7EB !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  }

  .lightbox-bottom-controls {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  .lightbox-nav-group {
    gap: 8px !important;
  }

  .btn-nav-sq {
    width: 36px !important;
    height: 36px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
    background: #FFFFFF !important;
    border: 1.5px solid #E5E7EB !important;
    color: #05205C !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
  }

  .counter-pill-sq {
    height: 36px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 8px !important;
    background: #FFFFFF !important;
    border: 1.5px solid #E5E7EB !important;
    color: #111827 !important;
  }

  .btn-download-now {
    height: 36px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
    background: #05205C !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(5, 32, 92, 0.22) !important;
  }

  /* Gallery Detail Header Pills Responsive Formatting (2 top, 1 bottom) */
  .gallery-detail-header-pills {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 14px !important;
    padding: 0 12px !important;
    width: 100% !important;
  }

  .detail-header-pill {
    padding: 6px 14px !important;
    font-size: 12px !important;
    border-radius: 30px !important;
    border: 1px solid #E5E7EB !important;
    gap: 6px !important;
    background: #F8F9FA !important;
    box-shadow: none !important;
    text-align: center !important;
    line-height: 1.3 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .detail-header-pill:nth-child(1),
  .detail-header-pill:nth-child(2) {
    flex: 0 1 auto !important;
    max-width: calc(50% - 6px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .detail-header-pill:nth-child(3) {
    flex: 0 0 100% !important;
    max-width: fit-content !important;
    margin: 2px auto 0 !important;
  }

  .detail-header-pill i {
    font-size: 12px !important;
    flex-shrink: 0 !important;
  }

  .modal-box,
  .registration-modal-card,
  .contact-modal-card,
  .details-modal-card {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 24px 24px 0 0 !important;
    padding: 24px 20px 48px !important;
    max-height: 92vh !important;
    max-height: calc((var(--vh, 1vh) * 92)) !important;
    max-height: 92dvh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3) !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .modal-backdrop.active .modal-box,
  .modal-backdrop.active .registration-modal-card,
  .modal-backdrop.active .contact-modal-card,
  .modal-backdrop.active .details-modal-card {
    transform: translateY(0);
  }

  /* Universal 16px input size on Mobile to eliminate iOS Auto Zoom */
  .form-input,
  .form-textarea,
  .figma-input-field,
  .form-select,
  select,
  input {
    font-size: 16px !important;
    padding: 12px 14px;
    min-height: 46px;
    border-radius: var(--radius-md);
    width: 100%;
    box-sizing: border-box;
  }

  .form-fields-flex-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  /* Footer Layout */
  .footer-container-row {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
  }

  /* Form Buttons 2-Column Row on Mobile */
  .form-buttons-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    margin-top: 20px !important;
    width: 100% !important;
  }

  .btn-form-register,
  .btn-form-reset {
    flex: 1 !important;
    width: 50% !important;
    min-width: 0 !important;
    height: 48px !important;
    min-height: 48px !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
  }

  /* Full-width Responsive Action Buttons */
  .btn-primary,
  .btn-secondary,
  .btn-outlined,
  .btn-card-action,
  .btn-register-action,
  .btn-view-gallery-action,
  .btn-submit-registration,
  .btn-submit {
    width: 100% !important;
    min-height: 48px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 64px 16px 40px !important;
    min-height: 560px !important;
  }

  .home-hero-title {
    font-size: clamp(32px, 9.5vw, 48px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.8px !important;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 42px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.6px !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
}

@media (max-width: 452px) {
  .home-hero-title {
    font-size: clamp(30px, 9vw, 44px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.8px !important;
  }

  .hero-title {
    font-size: clamp(26px, 7.5vw, 38px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.5px !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .bento-right-grid {
    grid-template-columns: 1fr;
  }

  .bento-small-item {
    height: 160px !important;
  }

  .detailed-club-card,
  .coach-card,
  .directory-event-card {
    border-radius: var(--radius-lg);
  }

  .coach-card-img-box {
    height: 210px;
  }

  .club-logo-img {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
  }

  .section-label {
    font-size: 10.5px;
  }

  .section-title-large {
    font-size: 21px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .btn-pill-viewall,
  .btn-pill-view-all {
    padding: 10px 16px !important;
    min-height: 44px !important;
    font-size: 13.5px !important;
  }

  /* Eligibility Image Topper */
  .event-register-right-media {
    order: -1;
    margin-bottom: 0px;
  }

  /* Registration Success Mobile Fixes */
  .registration-success-container {
    padding: 40px 16px;
    min-height: 60vh;
    margin-top: 68px;
  }

  .success-navy-circle {
    width: 76px !important;
    height: 76px !important;
    font-size: 32px !important;
    margin-bottom: 18px !important;
  }

  .success-figma-title {
    font-size: 22px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 10px !important;
  }

  .success-figma-desc {
    font-size: 13.5px !important;
    line-height: 21px !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
  }

  .btn-back-events {
    width: 100% !important;
    max-width: 280px !important;
    height: 44px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    background: #05205C !important;
    color: #FFFFFF !important;
    margin: 0 auto;
  }
}

@media (max-width: 360px) {
  .hero-section {
    padding: 48px 12px 32px !important;
    min-height: 500px !important;
  }

  .home-hero-title {
    font-size: 28px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.5px !important;
  }

  .hero-title {
    font-size: 26px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.4px !important;
  }

  .coach-card-img-box {
    height: 175px;
  }
}

/* ==========================================
   PAGINATION SYSTEM STYLES (FIGMA MATCHING)
   ========================================== */
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  max-width: 1600px;
  width: 100%;
  margin: -40px auto 80px auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.pagination-info {
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body, #4B5563);
  margin-right: auto;
}

.pagination-btn-group {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  min-width: 130px;
  height: 48px;
  background-color: #FFFFFF;
  border: 2px solid var(--primary-navy, #05205C);
  border-radius: 10px;
  color: var(--primary-navy, #05205C);
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(5, 32, 92, 0.06);
  outline: none;
  user-select: none;
}

.pagination-btn:hover:not(:disabled) {
  background-color: var(--primary-navy, #05205C);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(5, 32, 92, 0.22);
}

.pagination-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(5, 32, 92, 0.15);
}

.pagination-btn:disabled,
.pagination-btn.disabled {
  opacity: 0.45;
  border-color: #CBD5E1;
  color: #94A3B8;
  background-color: #F8FAFC;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

@media (max-width: 992px) {
  .pagination-container {
    padding: 0 30px;
    margin: -20px auto 60px auto;
  }
}

@media (max-width: 640px) {
  .pagination-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    margin: 10px auto 40px auto;
  }

  .pagination-info {
    margin-right: 0;
    text-align: center;
  }

  .pagination-btn-group {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .pagination-btn {
    flex: 1;
    max-width: 160px;
    min-width: 100px;
    height: 44px;
    padding: 8px 16px;
    font-size: 14px;
  }
}

.impact-stats-container .stats-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}


.search-btn-pill {
  height: 42px;
  padding: 0 24px;
  background: var(--primary-navy);
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn-pill:hover {
  background: var(--navy-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 32, 92, 0.2);
}