/* ===================================
   HARVARD HOUSE SPORTS - MODERN CORPORATE THEME
   =================================== */

/* CSS Variables - Updated Color Scheme */
:root {
  --primary-color: #f26a36;
  --primary-dark: #d64619;
  --primary-light: #ff8a66;
  --secondary-color: #2d2e6e;
  --secondary-dark: #1e1f4a;
  --secondary-light: #4a4b8e;
  --accent-color: #efc161;
  --accent-dark: #e0b550;
  --accent-light: #f5d97a;
  --text-dark: #000000;
  --text-light: #FFFFFF;
  --text-muted: #666666;
  --border-color: #E5E5E5;
  --success-color: #28A745;
  --warning-color: #ffc107;
  --error-color: #dc3545;
  --dark-bg: #2d2e6e;
  --dark-bg-light: #4a4b8e;
  --light-bg: #FAFAFA;
  
  /* Modern Gradients */
  --gradient-primary: linear-gradient(135deg, #f26a36 0%, #d64619 100%);
  --gradient-secondary: linear-gradient(135deg, #2d2e6e 0%, #1e1f4a 100%);
  --gradient-accent: linear-gradient(135deg, #efc161 0%, #e0b550 100%);
  --gradient-hero: linear-gradient(135deg, rgba(45, 46, 110, 0.95) 0%, rgba(242, 106, 54, 0.9) 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(45, 46, 110, 0.8) 0%, rgba(242, 106, 54, 0.6) 100%);
  
  /* Enhanced Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 32px rgba(242, 106, 54, 0.3);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.25);
  
  /* Enhanced Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #FFFFFF;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Enhanced Typography Hierarchy */
h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  font-size: 3.5rem;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  font-size: 2.5rem;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 2rem;
}

h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

p {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

/* Body Text Variants */
.text-large {
  font-size: 1.25rem;
  line-height: 1.6;
}

.text-small {
  font-size: 0.95rem;
  line-height: 1.5;
}

.text-micro {
  font-size: 0.85rem;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(45, 46, 110, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 80px;
  overflow: visible;
}

.navbar.scrolled {
  background: rgba(45, 46, 110, 0.98);
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  opacity: 0.8;
  pointer-events: none;
}

.navbar > * {
  position: relative;
  z-index: 1;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 12px;
  position: relative;
  min-height: 80px;
}

/* Navigation Menus */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.6rem;
  align-items: center;
  margin: 0;
  padding: 0;
  min-width: 0; /* Allow flex shrinking */
}

.nav-menu-left {
  flex: 1;
  justify-content: flex-start;
  padding-left: 2rem;
  padding-right: 0;
  max-width: calc(50vw - 140px);
  /* Ensure minimum clearance from logo */
  overflow: visible;
  position: relative;
  z-index: 20;
  min-width: 0; /* Allow flex shrinking */
}

.nav-menu-right {
  flex: 1;
  justify-content: flex-end;
  padding-right: 2rem;
  padding-left: 0;
  max-width: calc(50vw - 140px);
  /* Ensure minimum clearance from logo */
  overflow: visible;
  position: relative;
  z-index: 20;
  min-width: 0; /* Allow flex shrinking */
}

/* Fix for mobile menu dropdown indicators */
@media (max-width: 768px) {
  .nav-menu-left,
  .nav-menu-right {
    display: none;
  }
}

/* Enhanced Centered Logo */
.nav-brand-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  margin-top: 20px; /* Extend logo downward beyond the navigation bar */
  /* Add protective padding around logo to prevent text overlap */
  padding: 0 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Add invisible barriers to prevent text overlap with logo */
.nav-brand-center::before,
.nav-brand-center::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 140px;
  height: 80px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.nav-brand-center::before {
  left: -140px;
}

.nav-brand-center::after {
  right: -140px;
}

.logo-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
}

.logo-large {
  width: 140px !important;
  height: 140px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 3px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow:
    0 8px 32px rgba(242, 106, 54, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transition: all var(--transition-base) !important;
  transform: translateY(15px) !important; /* Extend downward beyond the bar */
  animation: logoFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 5;
}

/* Add a subtle glow effect around the logo */
.logo-large::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: radial-gradient(circle, rgba(242, 106, 54, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(-8px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}

/* Ensure text elements are significantly smaller than logo */
.nav-link {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  padding: 0.4rem 0.8rem !important;
  border-radius: 8px !important;
  transition: all var(--transition-base) !important;
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.9) !important;
  position: relative !important;
  z-index: 10 !important;
  text-align: center !important;
  display: inline-block !important;
  line-height: 1.4 !important;
  /* Prevent text from extending beyond container */
  white-space: nowrap !important;
  max-width: 120px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  text-rendering: optimizeLegibility !important;
}

.nav-link:hover {
  background: rgba(242, 106, 54, 0.1) !important;
  color: var(--secondary-color) !important;
  transform: translateY(-2px) !important;
}

/* Modern Dropdown Indicator */
.nav-dropdown-indicator {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
  line-height: 1;
  opacity: 0.8;
}

.nav-link:hover .nav-dropdown-indicator {
  opacity: 1;
  transform: translateY(-1px);
  color: var(--secondary-color);
}

/* Mobile responsive dropdown indicators */
@media (max-width: 768px) {
  .nav-dropdown-indicator {
    font-size: 0.9rem;
    margin-left: 0.4rem;
  }
  
  .nav-menu-mobile .nav-dropdown-indicator {
    font-size: 1rem;
    margin-left: 0.5rem;
  }
}

/* Mobile menu toggle button positioning */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 25;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
  }

  .mobile-menu-toggle.active {
    background: rgba(242, 106, 54, 0.2);
    border-color: rgba(242, 106, 54, 0.4);
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
  }
}

.nav-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  transition: var(--transition-base);
}

.nav-brand .logo:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(242, 106, 54, 0.3));
}

.logo-image {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  object-fit: contain;
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.nav-item {
  position: relative;
}


/* Dropdown Menus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-base);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
  background: var(--gradient-primary);
  color: white;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-light);
  border-radius: 3px;
  transition: var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content Offset */
#main-content {
  margin-top: 80px;
}

/* ===================================
   HERO SLIDER
   =================================== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(242, 106, 54, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(239, 193, 97, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(45, 46, 110, 0.4) 0%, transparent 50%);
  animation: floatGradient 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatGradient {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide:nth-child(1) {
  background-image:
    linear-gradient(135deg, rgba(45, 46, 110, 0.95) 0%, rgba(242, 106, 54, 0.85) 100%),
    radial-gradient(circle at 30% 20%, rgba(242, 106, 54, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(239, 193, 97, 0.2) 0%, transparent 50%),
    linear-gradient(45deg, #2d2e6e 25%, transparent 25%),
    linear-gradient(-45deg, #2d2e6e 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #2d2e6e 75%),
    linear-gradient(-45deg, transparent 75%, #2d2e6e 75%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px, 40px 40px, 40px 40px;
  background-position: 0 0, 0 0, 0 0, 0 0, 0 20px, 20px -20px, -20px 0px;
}

.hero-slide:nth-child(2) {
  background-image:
    linear-gradient(135deg, rgba(242, 106, 54, 0.95) 0%, rgba(239, 193, 97, 0.85) 100%),
    radial-gradient(circle at 20% 80%, rgba(45, 46, 110, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(45, 46, 110, 0.1) 30deg, transparent 60deg, rgba(239, 193, 97, 0.1) 90deg, transparent 120deg);
}

.hero-slide:nth-child(3) {
  background-image:
    linear-gradient(135deg, rgba(239, 193, 97, 0.95) 0%, rgba(242, 106, 54, 0.85) 100%),
    radial-gradient(circle at 40% 40%, rgba(45, 46, 110, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(242, 106, 54, 0.3) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0px, rgba(255, 255, 255, 0.03) 1px, transparent 2px, transparent 20px);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
  z-index: 10;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(242, 106, 54, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 8px 32px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffffff 0%, #efc161 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transform: scaleX(0);
  animation: underlineReveal 1s ease-out 0.5s forwards;
}

@keyframes underlineReveal {
  to { transform: scaleX(1); }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.slider-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1 {
  animation-delay: 0.2s;
  opacity: 0;
}

.fade-in-up.delay-2 {
  animation-delay: 0.4s;
  opacity: 0;
}

.fade-in-up.delay-3 {
  animation-delay: 0.6s;
  opacity: 0;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.4s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.6s;
}

/* ===================================
   MODERN CORPORATE ANIMATIONS
   =================================== */

/* Floating Particles Background */
.hero-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(242, 106, 54, 0.1) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(239, 193, 97, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100px 100px, 150px 150px, 200px 200px;
  animation: particleFloat 20s linear infinite;
  pointer-events: none;
}

@keyframes particleFloat {
  0% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-20px) translateX(10px); }
  66% { transform: translateY(10px) translateX(-5px); }
  100% { transform: translateY(0px) translateX(0px); }
}

/* Modern Card Hover Effects */
.highlight-card,
.program-card,
.team-card,
.tour-card,
.why-card,
.csr-card {
  position: relative;
  overflow: hidden;
}

.highlight-card::before,
.program-card::before,
.team-card::before,
.tour-card::before,
.why-card::before,
.csr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(242, 106, 54, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.highlight-card:hover::before,
.program-card:hover::before,
.team-card:hover::before,
.tour-card:hover::before,
.why-card:hover::before,
.csr-card:hover::before {
  left: 100%;
}

/* Parallax Background Elements */
.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(242, 106, 54, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(239, 193, 97, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 80%, rgba(45, 46, 110, 0.1) 0%, transparent 50%);
  animation: parallaxFloat 30s ease-in-out infinite;
  pointer-events: none;
}

@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.02); }
}

/* Modern Loading Animation */
.loading-dots {
  display: inline-block;
}

.loading-dots::after {
  content: '';
  animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
  0%, 20% { content: ''; }
  40% { content: '.'; }
  60% { content: '..'; }
  80%, 100% { content: '...'; }
}

/* Enhanced Scroll Animations */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Animation Delays */
.animate-stagger-1.visible { animation-delay: 0.1s; }
.animate-stagger-2.visible { animation-delay: 0.2s; }
.animate-stagger-3.visible { animation-delay: 0.3s; }
.animate-stagger-4.visible { animation-delay: 0.4s; }
.animate-stagger-5.visible { animation-delay: 0.5s; }

/* Modern Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-secondary {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Glass Morphism */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

/* Modern Border Animations */
.border-animation {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--primary-color), var(--accent-color)) border-box;
}

.border-animation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: var(--transition-base);
  z-index: -1;
}

.border-animation:hover::before {
  opacity: 1;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-bounce);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
  left: 100%;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(242, 106, 54, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(242, 106, 54, 0.4), 0 0 20px rgba(242, 106, 54, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--gradient-accent);
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(239, 193, 97, 0.3);
  border: 2px solid transparent;
}

.btn-secondary:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(239, 193, 97, 0.4), 0 0 20px rgba(239, 193, 97, 0.2);
  border-color: rgba(242, 106, 54, 0.3);
  filter: brightness(1.1);
}

.btn-lg {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

.btn-link {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

/* ===================================
   SECTIONS
   =================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-lg {
  padding: 8rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--dark-bg);
  position: relative;
  display: block;
  width: 100%;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
}

.intro-text {
  font-size: 1.25rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 400;
}

/* ===================================
   INTRO SECTION
   =================================== */
.intro-section {
  background: linear-gradient(to bottom, #FFFFFF, #F8F9FA);
}

/* ===================================
   HIGHLIGHTS SECTION
   =================================== */
.highlights-section {
  background: white;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 1200px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
  }
}

.highlight-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(242, 106, 54, 0.05);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.highlight-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(242, 106, 54, 0.1),
    0 0 0 2px rgba(242, 106, 54, 0.2);
  border-color: var(--primary-color);
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 25px rgba(242, 106, 54, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  transition: all 0.4s ease;
}

.highlight-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 12px 35px rgba(242, 106, 54, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.highlight-card:hover .icon-wrapper::before {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
}

.highlight-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--dark-bg);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

.highlight-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  text-align: center;
  font-weight: 400;
}

.card-link {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition-fast);
}

.card-link:hover {
  transform: translateX(5px);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  background: var(--gradient-secondary);
  color: white;
}

.cta-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-box h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   MISSION SECTION
   =================================== */
.mission-section {
  background: white;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-list {
  list-style: none;
  margin-top: 2rem;
}

.mission-list li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mission-list i {
  color: var(--success-color);
  font-size: 1.2rem;
}

.mission-image .image-placeholder {
  background: var(--gradient-primary);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: white;
  box-shadow: var(--shadow-xl);
}

/* ===================================
   MENTOR & ENDORSEMENT SECTIONS
   =================================== */
.mentor-section, .endorsement-section {
  background: #F8F9FA;
}

.mentor-card, .endorsement-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.mentor-photo, .endorsement-photo {
  .image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    box-shadow: var(--shadow-lg);
  }
}

.mentor-content h3, .endorsement-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.mentor-title, .endorsement-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 4px solid var(--primary-color);
  padding-left: 2rem;
  margin: 1rem 0;
}

/* ===================================
   VIDEO ANALYSIS SECTION
   =================================== */
.video-analysis-section {
  background: white;
}

.video-analysis-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.video-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #F8F9FA;
  border-radius: 10px;
  transition: var(--transition-base);
}

.feature-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(10px);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
}

.feature-item:hover i {
  color: white;
}

.video-image .image-placeholder {
  background: var(--gradient-primary);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: white;
  box-shadow: var(--shadow-xl);
}

/* ===================================
   COACHING SECTION
   =================================== */
.coaching-section {
  background: var(--gradient-secondary);
  color: white;
}

.coaching-section .section-title {
  color: white;
}

.coaching-section .section-title::after {
  background: var(--gradient-secondary);
}

.coaching-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coaching-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition-base);
}

.coaching-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary-color);
  transform: translateY(-10px);
}

.coaching-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dark-bg);
}

.coaching-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.coaching-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ===================================
   SOCIAL SECTION
   =================================== */
.social-section {
  background: white;
  padding: 3rem 0;
}

.social-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
}

.final-cta h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
  background: var(--gradient-secondary);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.page-title {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-breadcrumb {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.page-breadcrumb a {
  color: var(--secondary-color);
  transition: var(--transition-fast);
}

.page-breadcrumb a:hover {
  color: white;
}

/* ===================================
   CONTENT SECTION
   =================================== */
.content-section {
  background: white;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 2.5rem;
  margin: 2rem 0 1rem;
  color: var(--dark-bg);
}

.content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-list li {
  padding: 1rem 0;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: var(--success-color);
  font-size: 1.3rem;
}

/* ===================================
   WHY GRID
   =================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-base);
  border: 2px solid transparent;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dark-bg);
}

/* ===================================
   TEAM GRID
   =================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.team-photo {
  .image-placeholder {
    width: 100%;
    height: 320px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
  }
}

.team-info {
  padding: 2rem;
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-highlights {
  list-style: none;
  margin: 1.5rem 0;
}

.team-highlights li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-highlights i {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* ===================================
   PROGRAMS GRID
   =================================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 1200px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
  }
}

.program-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(45, 46, 110, 0.05);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.program-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(45, 46, 110, 0.1),
    0 0 0 2px rgba(45, 46, 110, 0.2);
  border-color: var(--secondary-color);
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.program-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ===================================
   TOUR GRID
   =================================== */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tour-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-base);
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.tour-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

/* ===================================
   GOOGLE MAPS SECTION
   =================================== */
.map-section {
  background: #F8F9FA;
  padding: 6rem 0;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
}

.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 0;
  font-weight: 400;
}

.map-wrapper {
  position: relative;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}

.google-map-iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  transition: var(--transition-base);
}

.google-map-iframe:hover {
  filter: brightness(1.05);
}

/* Map Loading States */
.map-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  text-align: center;
  color: var(--primary-color);
}

.loading-spinner i {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.loading-spinner p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}

/* Map Fallback */
.map-fallback {
  padding: 4rem 2rem;
  text-align: center;
  background: white;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fallback-content {
  max-width: 400px;
}

.fallback-content i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.fallback-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.fallback-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Map Info Section */
.map-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.map-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.map-features .feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.map-features .feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 40px;
  text-align: center;
}

.map-features .feature-item span {
  font-weight: 500;
  color: var(--text-dark);
}

.map-directions {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.map-directions h4 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dark-bg);
}

.map-directions p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.map-directions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

/* Map Error States */
.map-error {
  padding: 3rem 2rem;
  text-align: center;
  background: #FFF5F5;
  border: 2px solid #FED7D7;
  border-radius: 15px;
  color: #C53030;
}

.map-error i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #FC8181;
}

.map-error h4 {
  margin-bottom: 1rem;
  color: #C53030;
}

.map-error p {
  margin-bottom: 2rem;
  color: #742A2A;
}

/* Responsive Design for Map */
@media (max-width: 1024px) {
  .map-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .google-map-iframe {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 4rem 0;
  }
  
  .map-wrapper {
    border-radius: 15px;
    margin-bottom: 2rem;
  }
  
  .google-map-iframe {
    height: 350px;
  }
  
  .map-features .feature-item {
    padding: 0.875rem;
  }
  
  .map-directions {
    padding: 2rem;
  }
  
  .fallback-content {
    padding: 2rem 1rem;
  }
  
  .fallback-content i {
    font-size: 3rem;
  }
  
  .fallback-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .google-map-iframe {
    height: 300px;
  }
  
  .map-directions h4 {
    font-size: 1.5rem;
  }
  
  .map-features .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .map-features .feature-item i {
    width: auto;
  }
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-hours {
  background: #F8F9FA;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.contact-hours h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.contact-hours i {
  color: var(--primary-color);
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===================================
   SPONSORSHIP
   =================================== */
.sponsorship-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.sponsor-tier {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 3px solid transparent;
  transition: var(--transition-base);
}

.sponsor-tier:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.sponsor-tier.platinum {
  border-color: #E5E4E2;
}

.sponsor-tier.platinum:hover {
  border-color: #B9B8B5;
}

.sponsor-tier.gold {
  border-color: var(--secondary-color);
}

.sponsor-tier.silver {
  border-color: #C0C0C0;
}

.tier-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.sponsor-tier.platinum .tier-badge {
  background: linear-gradient(135deg, #E5E4E2, #B9B8B5);
}

.sponsor-tier.gold .tier-badge {
  background: var(--gradient-secondary);
  color: var(--dark-bg);
}

.sponsor-tier.silver .tier-badge {
  background: linear-gradient(135deg, #C0C0C0, #A0A0A0);
}

.tier-benefits {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.tier-benefits li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.tier-benefits i {
  color: var(--success-color);
}

.sponsor-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: #F8F9FA;
  border-radius: 20px;
}

/* ===================================
   CSR PAGE
   =================================== */
.csr-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.csr-initiatives {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.csr-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition-base);
}

.csr-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.csr-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--dark-bg);
}

.csr-impact {
  background: var(--gradient-secondary);
  color: white;
  padding: 4rem 3rem;
  border-radius: 20px;
  margin-top: 4rem;
  text-align: center;
}

.csr-impact h3 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-family: 'Rajdhani', sans-serif;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   GALLERY
   =================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.gallery-item .image-placeholder {
  width: 100%;
  height: 250px;
  background: var(--gradient-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  gap: 1rem;
}

.gallery-item .image-placeholder p {
  font-size: 1rem;
  margin: 0;
}

/* ===================================
   NEWS
   =================================== */
.news-list {
  max-width: 900px;
  margin: 0 auto;
}

.news-item {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  transition: var(--transition-base);
}

.news-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(10px);
}

.news-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.news-item h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.news-item p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===================================
   BOOKING PAGES
   =================================== */
.booking-content {
  max-width: 900px;
  margin: 0 auto;
}

.facility-features {
  margin: 3rem 0;
}

.facility-features h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.booking-info {
  background: #F8F9FA;
  padding: 2.5rem;
  border-radius: 15px;
  margin: 3rem 0;
}

.booking-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-details {
  margin: 1.5rem 0;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1.1rem;
}

.contact-details i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

/* ===================================
   SIMPLE CLEAN FOOTER DESIGN
   =================================== */
.footer {
  background: #2d2e6e;
  color: #ffffff;
  padding: 1.5rem 0 1rem;
  border-top: 3px solid #f26a36;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: #efc161;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  padding: 0.625rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}

.footer-logo-image {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  object-fit: contain;
  background: white;
  padding: 3px;
}

.footer-section p {
  color: #e0e0e0;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.875rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #f26a36;
  border-color: #f26a36;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 106, 54, 0.3);
}

.footer-social a.facebook:hover { background: #1877f2; border-color: #1877f2; }
.footer-social a.instagram:hover { background: #e4405f; border-color: #e4405f; }
.footer-social a.twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.footer-social a.youtube:hover { background: #ff0000; border-color: #ff0000; }
.footer-social a.linkedin:hover { background: #0077b5; border-color: #0077b5; }

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.3;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 0.5rem;
}

.footer-links a:hover {
  color: #efc161;
  border-left-color: #f26a36;
  padding-left: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
}

.footer-links a i {
  color: #f26a36;
  font-size: 0.7rem;
  width: 12px;
  text-align: center;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  color: #e0e0e0;
  line-height: 1.4;
  font-size: 0.875rem;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-contact li:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.footer-contact i {
  color: #f26a36;
  margin-top: 0.125rem;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #efc161;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: #cccccc;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer-bottom-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-bottom-links a:hover {
  color: #ffffff;
  background: #f26a36;
  border-color: #f26a36;
  transform: translateY(-1px);
}

/* ===================================
   ULTRA COMPACT FOOTER RESPONSIVE DESIGN
   =================================== */

/* Ultra Large Desktop (2560px and above) - Enhanced for large screens */
@media (min-width: 2560px) {
  .footer {
    padding: 1.75rem 0 1.25rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
  }
  
  .footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 0.875rem;
  }
  
  .footer-section p {
    font-size: 0.95rem;
  }
  
  .footer-social a {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
  
  .footer-bottom {
    padding-top: 1.25rem;
  }
  
  .footer-bottom p {
    font-size: 0.875rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.8rem;
  }
}

/* Extra Large Desktop (1921px - 2559px) */
@media (min-width: 1921px) and (max-width: 2559px) {
  .footer {
    padding: 1.625rem 0 1.125rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.625rem;
  }
  
  .footer-section h4 {
    font-size: 1.15rem;
  }
  
  .footer-section p {
    font-size: 0.925rem;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
  }
}

/* Large Desktop (1441px - 1920px) */
@media (min-width: 1441px) and (max-width: 1920px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-section h4 {
    font-size: 1.1rem;
  }
}

/* Medium Desktop (1201px - 1440px) */
@media (min-width: 1201px) and (max-width: 1440px) {
  .footer {
    padding: 1.5rem 0 1rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
}

/* Small Desktop / Large Tablet (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .footer {
    padding: 1.375rem 0 0.875rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.375rem;
    margin-bottom: 0.875rem;
  }
  
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }
  
  .footer-section p {
    font-size: 0.85rem;
  }
  
  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    padding-top: 0.875rem;
    gap: 0.875rem;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
  }
  
  .footer-bottom-links {
    gap: 1rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Tablet / Small Desktop (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer {
    padding: 1.25rem 0 0.75rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-section p {
    font-size: 0.8rem;
  }
  
  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .footer-contact li {
    font-size: 0.8rem;
  }
  
  .footer-contact i {
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    padding-top: 0.75rem;
    gap: 0.75rem;
  }
  
  .footer-bottom p {
    font-size: 0.75rem;
  }
  
  .footer-bottom-links {
    gap: 0.875rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
}

/* Large Mobile / Small Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .footer {
    padding: 1.125rem 0 0.75rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-section {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .footer-section h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.375rem;
  }
  
  .footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: #f26a36;
    border-radius: 1px;
  }
  
  .footer-logo {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0.75rem;
  }
  
  .footer-logo-image {
    width: 35px;
    height: 35px;
    margin-bottom: 0.5rem;
  }
  
  .footer-section p {
    text-align: center;
    font-size: 0.8rem;
  }
  
  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.625rem;
  }
  
  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links a {
    justify-content: center;
    padding: 0.375rem 0.5rem;
    font-size: 0.8rem;
    border-radius: 3px;
    border: 1px solid transparent;
  }
  
  .footer-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #f26a36;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .footer-contact li {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
  }
  
  .footer-contact i {
    margin-top: 0;
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
  }
  
  .footer-bottom-links a {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }
}

/* Mobile Phones (320px - 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 0.875rem 0 0.625rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-bottom: 0.625rem;
  }
  
  .footer-section {
    padding: 0.625rem;
  }
  
  .footer-section h4 {
    font-size: 0.85rem;
    margin-bottom: 0.375rem;
  }
  
  .footer-section p {
    font-size: 0.75rem;
  }
  
  .footer-logo {
    padding: 0.5rem;
  }
  
  .footer-logo-image {
    width: 30px;
    height: 30px;
  }
  
  .footer-social {
    gap: 0.5rem;
  }
  
  .footer-social a {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .footer-links a {
    font-size: 0.75rem;
    padding: 0.25rem 0.375rem;
    gap: 0.375rem;
  }
  
  .footer-contact li {
    padding: 0.375rem;
    font-size: 0.75rem;
  }
  
  .footer-contact i {
    font-size: 0.8rem;
    width: 14px;
  }
  
  .footer-bottom {
    padding-top: 0.625rem;
    gap: 0.625rem;
  }
  
  .footer-bottom p {
    font-size: 0.7rem;
  }
  
  .footer-bottom-links {
    gap: 0.5rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.65rem;
    padding: 0.2rem 0.375rem;
  }
}

/* Extra Small Mobile Phones (below 320px) */
@media (max-width: 320px) {
  .footer {
    padding: 0.75rem 0 0.5rem;
  }
  
  .footer-content {
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-section {
    padding: 0.5rem;
  }
  
  .footer-section h4 {
    font-size: 0.8rem;
  }
  
  .footer-section p {
    font-size: 0.7rem;
  }
  
  .footer-social a {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  
  .footer-links a {
    font-size: 0.7rem;
    padding: 0.2rem 0.375rem;
  }
  
  .footer-contact li {
    font-size: 0.7rem;
    padding: 0.375rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.6rem;
    padding: 0.15rem 0.25rem;
  }
}

/* ===================================
   COMPREHENSIVE RESPONSIVE DESIGN
   =================================== */

/* Ultra Large Desktop (2560px and above) - 4K and larger displays */
@media (min-width: 2560px) {
  .nav-menu-left,
  .nav-menu-right {
    max-width: calc(50vw - 200px);
  }
  
  .nav-container {
    padding: 1rem 40px;
  }
  
  .nav-link {
    font-size: 1rem !important;
    padding: 0.5rem 1rem !important;
  }
  
  .nav-brand-center::before,
  .nav-brand-center::after {
    width: 140px !important;
    height: 80px !important;
  }
  
  .nav-brand-center::before {
    left: -140px !important;
  }
  
  .nav-brand-center::after {
    right: -140px !important;
  }
}

/* Extra Large Desktop (1921px - 2559px) */
@media (min-width: 1921px) and (max-width: 2559px) {
  .nav-menu-left,
  .nav-menu-right {
    max-width: calc(50vw - 180px);
  }
  
  .nav-container {
    padding: 1rem 30px;
  }
  
  .nav-link {
    font-size: 0.9rem !important;
    padding: 0.45rem 0.9rem !important;
  }
  
  .nav-brand-center::before,
  .nav-brand-center::after {
    width: 130px !important;
    height: 80px !important;
  }
  
  .nav-brand-center::before {
    left: -130px !important;
  }
  
  .nav-brand-center::after {
    right: -130px !important;
  }
}

/* Large Desktop (1441px - 1920px) */
@media (min-width: 1441px) and (max-width: 1920px) {
  .nav-menu-left,
  .nav-menu-right {
    max-width: calc(50vw - 165px);
  }
  
  .nav-container {
    padding: 1rem 25px;
  }
  
  .nav-link {
    font-size: 0.85rem !important;
    padding: 0.4rem 0.8rem !important;
  }
  
  .nav-brand-center::before,
  .nav-brand-center::after {
    width: 125px !important;
    height: 80px !important;
  }
  
  .nav-brand-center::before {
    left: -125px !important;
  }
  
  .nav-brand-center::after {
    right: -125px !important;
  }
}

/* Extra Large Desktop (1761px - 1920px) - Specific fix for text overlap issue */
@media (min-width: 1761px) and (max-width: 1920px) {
  .nav-menu-left,
  .nav-menu-right {
    max-width: calc(50vw - 185px);
  }
  
  .nav-container {
    padding: 1rem 30px;
  }
  
  .nav-link {
    font-size: 0.8rem !important;
    padding: 0.35rem 0.7rem !important;
  }
  
  .nav-brand-center::before,
  .nav-brand-center::after {
    width: 140px !important;
    height: 80px !important;
  }
  
  .nav-brand-center::before {
    left: -140px !important;
  }
  
  .nav-brand-center::after {
    right: -140px !important;
  }
}

/* Medium Desktop (1201px - 1440px) */
@media (min-width: 1201px) and (max-width: 1440px) {
  .nav-menu-left,
  .nav-menu-right {
    max-width: calc(50vw - 150px);
  }
  
  .nav-container {
    padding: 1rem 20px;
  }
  
  .nav-link {
    font-size: 0.8rem !important;
    padding: 0.35rem 0.7rem !important;
  }
  
  .nav-brand-center::before,
  .nav-brand-center::after {
    width: 120px !important;
    height: 80px !important;
  }
  
  .nav-brand-center::before {
    left: -120px !important;
  }
  
  .nav-brand-center::after {
    right: -120px !important;
  }
}

/* Small Desktop / Large Tablet (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .nav-menu-left,
  .nav-menu-right {
    max-width: calc(50vw - 130px);
  }
  
  .nav-container {
    padding: 1rem 18px;
  }
  
  .nav-link {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.6rem !important;
  }
  
  .nav-brand-center::before,
  .nav-brand-center::after {
    width: 110px !important;
    height: 80px !important;
  }
  
  .nav-brand-center::before {
    left: -110px !important;
  }
  
  .nav-brand-center::after {
    right: -110px !important;
  }
}

/* Tablet / Small Desktop (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-menu-left,
  .nav-menu-right {
    max-width: calc(50vw - 135px);
  }

  .nav-container {
    padding: 1rem 15px;
  }

  /* Navigation gaps for tablet */
  .nav-menu {
    gap: 0.5rem !important;
  }

  .nav-link {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.5rem !important;
    white-space: nowrap !important;
    max-width: 100px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .nav-brand-center::before,
  .nav-brand-center::after {
    width: 115px !important;
    height: 80px !important;
  }

  .nav-brand-center::before {
    left: -115px !important;
  }

  .nav-brand-center::after {
    right: -115px !important;
  }
  
  .highlights-grid,
  .programs-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
}

/* Large Mobile / Small Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .nav-container {
    padding: 0.75rem 12px;
  }
  
  /* Hide desktop navigation on large mobile */
  .nav-menu-left,
  .nav-menu-right {
    display: none;
  }
  
  /* Mobile Logo - reduced size */
  .logo-large {
    width: 100px !important;
    height: 100px !important;
    transform: translateY(10px) !important;
    animation: none !important;
  }
  
  .nav-brand-center::before,
  .nav-brand-center::after {
    width: 95px !important;
    height: 80px !important;
  }

  .nav-brand-center::before {
    left: -95px !important;
  }

  .nav-brand-center::after {
    right: -95px !important;
  }
}

/* Mobile Phones (320px - 480px) */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.5rem 8px;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 20;
  }
  
  /* Hide desktop navigation on mobile */
  .nav-menu-left,
  .nav-menu-right {
    display: none;
  }
  
  /* Mobile Logo - increased size for 330px+ screens */
  .logo-large {
    width: 100px !important;
    height: 100px !important;
    transform: translateY(10px) !important;
    animation: none !important;
  }
  
  /* Mobile Navigation Menu */
  .nav-menu-mobile {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(45, 46, 110, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    padding: 1rem 0;
    transform: translateX(-100%);
    transition: var(--transition-base);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: 15;
    display: none;
    border-radius: 0 0 20px 20px;
  }
  
  .nav-menu-mobile.active {
    display: flex;
    transform: translateX(0);
  }
  
  .nav-menu-mobile .nav-item {
    width: 100%;
  }
  
  .nav-menu-mobile .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
    white-space: normal;
    margin: 0.125rem 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .nav-menu-mobile .nav-link:hover {
    background: rgba(242, 106, 54, 0.15);
    border-color: rgba(242, 106, 54, 0.3);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(242, 106, 54, 0.2);
  }
}

/* Extra Small Mobile Phones (below 330px) */
@media (max-width: 330px) {
  .nav-container {
    padding: 0.5rem 6px;
  }

  .logo-large {
    width: 70px !important;
    height: 70px !important;
    transform: translateY(6px) !important;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 20;
  }
  
  .nav-menu-mobile .nav-link {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Container responsive adjustments */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .highlights-grid,
  .programs-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
}

@media (max-width: 1024px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.6rem; }
  
  .hero-title { font-size: 2.8rem; }
  .page-title { font-size: 2.8rem; }
  
  .mission-content,
  .video-analysis-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mentor-card,
  .endorsement-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .mentor-photo,
  .endorsement-photo {
    margin: 0 auto;
  }
  
  .highlights-grid,
  .programs-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  #main-content {
    margin-top: 70px;
  }
  
  .nav-container {
    padding: 0.75rem 16px;
    position: relative;
  }
  
  .logo-image {
    width: 45px;
    height: 45px;
  }
  
  .logo-text {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 20;
  }
  
  /* Adjust menu spacing for mobile */
  .nav-menu-left,
  .nav-menu-right {
    display: none;
  }
  
  /* Mobile Navigation Menu */
  .nav-menu-mobile {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(45, 46, 110, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    padding: 2rem 0;
    transform: translateX(-100%);
    transition: var(--transition-base);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: 15;
    display: none;
    border-radius: 0 0 20px 20px;
  }
  
  .nav-menu-mobile.active {
    display: flex;
    transform: translateX(0);
  }
  
  .nav-menu-mobile .nav-item {
    width: 100%;
  }
  
  .nav-menu-mobile .nav-link {
    padding: 1rem 2rem;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
  }
  
  .nav-menu-mobile .nav-link:hover {
    background: rgba(242, 106, 54, 0.2);
    transform: none;
  }
  
  
  .nav-menu-mobile .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0;
  }
  
  .nav-menu-mobile .dropdown.active .dropdown-menu {
    max-height: 500px;
  }
  
  /* Mobile Logo - increased size for larger mobile screens */
  .logo-large {
    width: 120px !important;
    height: 120px !important;
    transform: translateY(12px) !important; /* Extend downward beyond the bar */
    animation: none !important;
  }
  
.logo-large:hover {
  transform: translateY(15px) scale(1.05) !important;
}
  
  .hero-slider {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
    word-wrap: break-word;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .highlights-grid,
  .why-grid,
  .team-grid,
  .programs-grid,
  .tour-grid,
  .sponsor-tiers,
  .csr-initiatives,
  .coaching-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .highlight-card,
  .program-card,
  .team-card {
    padding: 2rem 1.5rem;
    margin-bottom: 0;
  }
  
  .highlight-card h3,
  .program-card h3 {
    font-size: 1.4rem;
  }
  
  .highlight-card p,
  .program-card p {
    font-size: 1rem;
  }
  
  .slider-nav {
    bottom: 80px;
  }
  
  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .icon-wrapper {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  blockquote {
    padding-left: 1rem;
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-logo-image {
    width: 40px;
    height: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  /* Enhanced Mobile Touch Interactions */
  .btn {
    min-height: 48px;
    touch-action: manipulation;
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
  
  .highlight-card,
  .program-card,
  .team-card,
  .tour-card {
    transform: none;
    transition: all var(--transition-base);
  }
  
  .highlight-card:active,
  .program-card:active,
  .team-card:active,
  .tour-card:active {
    transform: scale(0.98);
  }
  
  /* Better mobile typography */
  p {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .intro-text {
    font-size: 1.1rem;
  }
  
  /* Mobile-specific typography improvements */
  h4 {
    font-size: 1.3rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-box h2 {
    font-size: 2rem;
  }
  
  .mentor-content h3,
  .endorsement-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  h4 {
    font-size: 1.2rem;
  }
  
  .btn {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
  
  .btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
  
  .highlights-grid,
  .programs-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .impact-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .highlight-card,
  .program-card {
    padding: 1.5rem 1.25rem;
  }
  
  .highlight-card h3,
  .program-card h3 {
    font-size: 1.3rem;
  }
  
  .cta-box h2 {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  p {
    font-size: 0.95rem;
  }
  
  .intro-text {
    font-size: 1rem;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }
.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

/* Image Placeholder Utility */
.image-placeholder {
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  border-radius: 10px;
}

/* ===================================
   FLOATING WHATSAPP BUTTON
   =================================== */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  pointer-events: none;
}

.whatsapp-button {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(242, 106, 54, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
  overflow: hidden;
  transform: scale(1);
}

.whatsapp-button:hover {
  transform: scale(1.15);
  box-shadow:
    0 16px 48px rgba(242, 106, 54, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: var(--gradient-primary);
  filter: brightness(1.1);
}

.whatsapp-button:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

.whatsapp-button:focus {
  outline: none;
  box-shadow:
    0 8px 32px rgba(242, 106, 54, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 3px rgba(242, 106, 54, 0.3);
}

.whatsapp-icon {
  font-size: 2.2rem;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.whatsapp-button:hover .whatsapp-icon {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* Pulsing Animation Effect */
.whatsapp-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  animation: whatsappPulse 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Ripple Effect for Click */
.whatsapp-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 1;
}

.whatsapp-button:active .whatsapp-ripple {
  width: 100px;
  height: 100px;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-5px);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .whatsapp-button {
    width: 60px;
    height: 60px;
    box-shadow:
      0 6px 24px rgba(242, 106, 54, 0.4),
      0 3px 12px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .whatsapp-icon {
    font-size: 1.8rem;
  }
  
  .whatsapp-button:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-tooltip {
    right: 70px;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }
  
  .whatsapp-button {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-icon {
    font-size: 1.6rem;
  }
  
  .whatsapp-tooltip {
    display: none; /* Hide tooltip on very small screens */
  }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
  .whatsapp-button {
    width: 65px;
    height: 65px;
  }
  
  .whatsapp-icon {
    font-size: 2rem;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .whatsapp-tooltip {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .whatsapp-tooltip::before {
    border-left-color: rgba(0, 0, 0, 0.9);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .whatsapp-button,
  .whatsapp-icon,
  .whatsapp-tooltip {
    animation: none !important;
    transition: none !important;
  }
  
  .whatsapp-button::before {
    animation: none !important;
  }
  
  .whatsapp-button:hover {
    transform: scale(1.05);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .whatsapp-button {
    border: 2px solid white;
  }
  
  .whatsapp-tooltip {
    background: black;
    border: 2px solid white;
  }
  
  .whatsapp-tooltip::before {
    border-left-color: black;
  }
}

/* Additional CSS to fix navbar text visibility issues */

/* ===================================
   NAVBAR TEXT VISIBILITY FIXES
   =================================== */

/* Ensure navbar text is always visible regardless of screen size */
.nav-menu-left,
.nav-menu-right {
  /* Prevent text from being hidden by padding or overflow */
  overflow: visible !important;
  position: relative;
  z-index: 20;
}

/* Force navigation links to be fully visible */
.nav-link {
  /* Ensure text is never clipped */
  overflow: visible !important;
  min-width: auto !important;
  flex-shrink: 0 !important;
  /* Make sure padding doesn't hide text */
  box-sizing: border-box !important;
  /* Ensure proper text rendering */
  text-rendering: optimizeLegibility !important;
}

/* Ensure nav container doesn't clip text */
.nav-container {
  /* Allow content to overflow visibility */
  overflow: visible !important;
}

/* Responsive text visibility for all screen sizes */
@media (min-width: 769px) {
  .nav-menu-left,
  .nav-menu-right {
    overflow: visible !important;
    position: relative;
    z-index: 20;
  }
  
  .nav-link {
    overflow: visible !important;
    white-space: nowrap !important;
    text-overflow: clip !important;
  }
}

/* Specific fix for small screens */
@media (max-width: 1024px) {
  .nav-menu-left,
  .nav-menu-right {
    overflow: visible !important;
    position: relative;
    z-index: 20;
  }
  
  .nav-link {
    overflow: visible !important;
    white-space: nowrap !important;
    text-overflow: clip !important;
    flex-shrink: 0 !important;
  }

/* Enhanced Mobile Footer Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
  }

  .footer-section {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
  }

  .footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #f26a36;
    border-radius: 1px;
  }

  .footer-logo {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .footer-logo-image {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .footer-section p {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .footer-social a {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links a {
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 1px solid transparent;
    margin: 0.25rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #f26a36;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    margin-bottom: 0.75rem;
  }

  .footer-contact i {
    margin-top: 0;
    font-size: 1.4rem;
  }

  .footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
  }

  .footer-contact a:hover {
    color: #efc161;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding-top: 1.75rem;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-bottom-links a {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-section {
    padding: 1.25rem;
  }
  
  .footer-section h4 {
    font-size: 1.1rem;
  }
  
  .footer-section p {
    font-size: 0.9rem;
  }
  
  .footer-logo {
    padding: 1rem;
  }
  
  .footer-logo-image {
    width: 45px;
    height: 45px;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }
  
  .footer-contact li {
    padding: 0.875rem;
  }
  
  .footer-contact li {
    font-size: 0.9rem;
  }
  
  .footer-bottom-links a {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
}

/* ===================================
   RETURN TO TOP BUTTON
   =================================== */

.scroll-to-top {
  position: fixed;
  bottom: 7.5rem;
  right: 2.5rem;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-to-top-button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 8px 32px rgba(242, 106, 54, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  transform: scale(1);
  opacity: 0.7;
}

.scroll-to-top-button:hover {
  transform: scale(1.1);
  box-shadow:
    0 16px 48px rgba(242, 106, 54, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: var(--gradient-primary);
  filter: brightness(1.1);
  opacity: 1;
}

.scroll-to-top-button:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

.scroll-to-top-button:focus {
  outline: none;
  box-shadow:
    0 8px 32px rgba(242, 106, 54, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 0 3px rgba(242, 106, 54, 0.3);
}

.scroll-to-top-icon {
  font-size: 1.5rem;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.scroll-to-top-button:hover .scroll-to-top-icon {
  animation: bounceUp 0.6s ease;
}

@keyframes bounceUp {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* Floating Animation */
.scroll-to-top-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  animation: floatPulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
}

/* Progress Indicator */
.scroll-to-top-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--secondary-color) 0deg,
    var(--secondary-color) var(--progress, 0deg),
    transparent var(--progress, 0deg),
    transparent 360deg
  );
  z-index: 1;
  transition: all 0.3s ease;
}

.scroll-to-top-button::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 50%;
  background: var(--gradient-primary);
  z-index: 0;
}

/* Ripple Effect */
.scroll-to-top-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 1;
}

.scroll-to-top-button:active .scroll-to-top-ripple {
  width: 80px;
  height: 80px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 5.5rem;
    right: 1.75rem;
  }
  
  .scroll-to-top-button {
    width: 50px;
    height: 50px;
    box-shadow:
      0 6px 24px rgba(242, 106, 54, 0.3),
      0 3px 12px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  
  .scroll-to-top-icon {
    font-size: 1.3rem;
  }
  
  .scroll-to-top-button:hover {
    transform: scale(1.05);
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 5rem;
    right: 1.35rem;
  }
  
  .scroll-to-top-button {
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top-icon {
    font-size: 1.2rem;
  }
  
  .scroll-to-top-button:active .scroll-to-top-ripple {
    width: 60px;
    height: 60px;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .scroll-to-top-button {
    box-shadow:
      0 8px 32px rgba(242, 106, 54, 0.4),
      0 4px 16px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  
  .scroll-to-top-button:hover {
    box-shadow:
      0 16px 48px rgba(242, 106, 54, 0.5),
      0 8px 24px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .scroll-to-top,
  .scroll-to-top-button,
  .scroll-to-top-icon {
    animation: none !important;
    transition: none !important;
  }
  
  .scroll-to-top-button::before {
    animation: none !important;
  }
  
  .scroll-to-top-button:hover {
    transform: scale(1.05);
  }
  
  .scroll-to-top-button:active .scroll-to-top-ripple {
    width: 60px;
    height: 60px;
    transition: width 0.1s, height 0.1s;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .scroll-to-top-button {
    border: 2px solid white;
  }
  
  .scroll-to-top-progress {
    background: conic-gradient(
      from 0deg,
      yellow 0deg,
      yellow var(--progress, 0deg),
      transparent var(--progress, 0deg),
      transparent 360deg
    );
  }
}

/* Ensure proper z-index stacking with other floating elements */
.scroll-to-top {
  z-index: 9998;
}

.whatsapp-float {
  z-index: 9999;
}

/* Performance optimizations */
.scroll-to-top {
  will-change: opacity, visibility, transform;
}

.scroll-to-top-button {
  will-change: transform, box-shadow, filter;
}

.scroll-to-top-icon {
  will-change: transform;
}

/* ===================================
   ENHANCED CRICKET BALL ANIMATION
   =================================== */

/* Cricket Ball Container - Same size as button */
.cricket-ball-container {
  position: fixed;
  bottom: 0rem; /* At the very bottom edge (0px) */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9997;
  pointer-events: none;
  display: none; /* Hidden by default, shown on mobile only */
  /* Match button dimensions exactly */
  width: 60px !important;
  height: 60px !important;
  /* Complete border/margin/padding reset */
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  outline: none !important;
  background: transparent !important;
}

/* Show cricket ball on mobile devices only */
@media (max-width: 768px) {
  .cricket-ball-container {
    display: block;
  }
}

/* Cricket Ball Button - Complete Border/Padding/Margin Elimination */
.cricket-ball-button {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* Complete border elimination - all variations */
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  /* Complete margin elimination */
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Complete padding elimination */
  padding: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* Complete outline elimination */
  outline: none !important;
  outline-offset: 0 !important;
  outline-width: 0 !important;
  outline-color: transparent !important;
  cursor: pointer;
  /* Enhanced shadow without any border artifacts - removed shadow effects */
  /* box-shadow removed to make ball appear flat */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
  overflow: hidden;
  transform: scale(1);
  animation: cricketBallEnhancedBounce 4s ease-in-out infinite, cricketBallContinuousRotate 25s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  /* Performance optimizations */
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
  /* Touch interaction optimizations */
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  /* Ensure no inherited styles */
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  /* Remove glass effect */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Cricket Ball Image - Complete Border/Padding/Margin Elimination */
.cricket-ball-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  /* Complete border elimination - all variations */
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  /* Complete margin elimination */
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Complete padding elimination */
  padding: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* Complete outline elimination */
  outline: none !important;
  outline-offset: 0 !important;
  outline-width: 0 !important;
  outline-color: transparent !important;
  transition: all 0.3s ease;
  /* filter: drop-shadow removed to eliminate shadow effect */
  will-change: transform;
  backface-visibility: hidden;
  /* Ensure no inherited styles */
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: transparent !important;
}

/* Enhanced Smooth Bounce Animation - Significantly Higher Bounce */
@keyframes cricketBallEnhancedBounce {
  0% {
    transform: translateY(0) scale(1);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  15% {
    transform: translateY(-45px) scale(1.06, 0.94);
    animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  30% {
    transform: translateY(-18px) scale(0.99, 1.01);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  50% {
    transform: translateY(-35px) scale(1.04, 0.96);
    animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  70% {
    transform: translateY(-12px) scale(0.995, 1.005);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  85% {
    transform: translateY(-25px) scale(1.02, 0.98);
    animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* Continuous 360-Degree Rotation Animation - Even Slower */
@keyframes cricketBallContinuousRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Cricket Ball Shadow - Implemented as pseudo-element of container */
.cricket-ball-container::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 8px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: shadowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

/* Enhanced Shadow Animation - More Natural */
@keyframes shadowPulse {
  0% {
    transform: translateX(-50%) scaleX(1) scaleY(1);
    opacity: 0.6;
  }
  10% {
    transform: translateX(-50%) scaleX(0.5) scaleY(0.7);
    opacity: 0.2;
  }
  25% {
    transform: translateX(-50%) scaleX(0.8) scaleY(0.8);
    opacity: 0.4;
  }
  40% {
    transform: translateX(-50%) scaleX(0.6) scaleY(0.8);
    opacity: 0.25;
  }
  60% {
    transform: translateX(-50%) scaleX(0.9) scaleY(0.9);
    opacity: 0.5;
  }
  80% {
    transform: translateX(-50%) scaleX(0.7) scaleY(0.85);
    opacity: 0.3;
  }
  100% {
    transform: translateX(-50%) scaleX(1) scaleY(1);
    opacity: 0.6;
  }
}

/* Ultra-Smooth and Fast Hit Animation - Direct path to top left corner */
@keyframes cricketBallHit {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-60px, -300px) rotate(180deg) scale(1.05);
  }
  50% {
    transform: translate(-120px, -600px) rotate(360deg) scale(1.1);
  }
  75% {
    transform: translate(-180px, -800px) rotate(450deg) scale(1.15);
  }
  100% {
    transform: translate(-200px, -900px) rotate(540deg) scale(1.2);
  }
}

/* Fast Shadow Animation - Following the ball to top left */
@keyframes shadowHit {
  0% {
    transform: translateX(-50%) scaleX(1) scaleY(1);
    opacity: 0.6;
  }
  30% {
    transform: translateX(-70%) scaleX(0.5) scaleY(0.7);
    opacity: 0.2;
  }
  60% {
    transform: translateX(-90%) scaleX(0.3) scaleY(0.5);
    opacity: 0.1;
  }
  100% {
    transform: translateX(-110%) scaleX(0.2) scaleY(0.3);
    opacity: 0.05;
  }
}

/* Ball States - Complete Border/Padding/Margin Elimination */
.cricket-ball-button.hitting {
  animation: cricketBallHit 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), cricketBallContinuousRotate 12s linear infinite;
  /* Complete border elimination */
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  /* Complete margin elimination */
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Complete padding elimination */
  padding: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* Complete outline elimination */
  outline: none !important;
  outline-offset: 0 !important;
  outline-width: 0 !important;
  outline-color: transparent !important;
}

.cricket-ball-container.hitting::after {
  animation: shadowHit 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Ball Disabled State - Complete Border/Padding/Margin Elimination */
.cricket-ball-button.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
  animation-play-state: paused;
  /* Complete border elimination */
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  /* Complete margin elimination */
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Complete padding elimination */
  padding: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* Complete outline elimination */
  outline: none !important;
  outline-offset: 0 !important;
  outline-width: 0 !important;
  outline-color: transparent !important;
}

.cricket-ball-container.disabled::after {
  opacity: 0.2;
  animation-play-state: paused;
}

/* Ball Hover Effects - Complete Border/Margin/Padding Reset */
.cricket-ball-button:hover:not(.disabled):not(.hitting) {
  transform: scale(1.1);
  /* Complete border elimination */
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  /* Complete margin elimination */
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Complete padding elimination */
  padding: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* Complete outline elimination */
  outline: none !important;
  outline-offset: 0 !important;
  outline-width: 0 !important;
  outline-color: transparent !important;
  /* box-shadow removed to eliminate shadow effect */
}

.cricket-ball-button:active:not(.disabled):not(.hitting) {
  transform: scale(0.95);
  transition: transform 0.1s ease;
  /* Complete border elimination */
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  /* Complete margin elimination */
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Complete padding elimination */
  padding: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* Complete outline elimination */
  outline: none !important;
  outline-offset: 0 !important;
  outline-width: 0 !important;
  outline-color: transparent !important;
}

/* Enhanced hover effects for image */
.cricket-ball-button:hover .cricket-ball-image:not(.disabled):not(.hitting) {
  transform: scale(1.1);
  /* filter: drop-shadow removed to eliminate shadow effect */
  filter: brightness(1.1);
}

.cricket-ball-button:active .cricket-ball-image:not(.disabled):not(.hitting) {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

/* Ripple Effect */
.cricket-ball-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 1;
}

.cricket-ball-button:active .cricket-ball-ripple {
  width: 80px;
  height: 80px;
}

/* Accessibility - Complete Border/Margin/Padding Elimination */
.cricket-ball-button:focus {
  outline: none;
  /* Complete border elimination */
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-left: none !important;
  border-right: none !important;
  border-color: transparent !important;
  /* Complete margin elimination */
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  /* Complete padding elimination */
  padding: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* Complete outline elimination */
  outline: none !important;
  outline-offset: 0 !important;
  outline-width: 0 !important;
  outline-color: transparent !important;
  /* box-shadow removed to eliminate shadow effect */
  box-shadow: 0 0 0 3px rgba(242, 106, 54, 0.3);
}

/* Performance Optimizations - Enhanced with Border/Margin/Padding Reset */
.cricket-ball-container {
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  outline: none !important;
}

.cricket-ball-button {
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  perspective: 1000px;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  outline: none !important;
}

/* Reduced Motion Support - Enhanced */
@media (prefers-reduced-motion: reduce) {
  .cricket-ball-button {
    animation: none;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    outline: none !important;
  }
  
  .cricket-ball-container::after {
    animation: none;
  }
  
  .cricket-ball-button.hitting {
    animation: none;
  }
  
  .cricket-ball-container.hitting::after {
    animation: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .cricket-ball-button {
    border: 3px solid #000000;
  }
  
  .cricket-ball-button::before {
    border-color: #000000;
  }
  
  .cricket-ball-button::after {
    border-color: #000000;
  }
}

/* Dark Mode Support - Enhanced with Complete Reset */
@media (prefers-color-scheme: dark) {
  .cricket-ball-button {
    background: radial-gradient(circle at 30% 30%, #f8f9fa 0%, #e9ecef 40%, #dee2e6 70%, #6c757d 100%);
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    outline: none !important;
  }
}

/* Mobile Specific Optimizations - Match container and button sizes */
@media (max-width: 480px) {
  .cricket-ball-container {
    bottom: 1.5rem;
    width: 55px !important;
    height: 55px !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    outline: none !important;
  }
  
  .cricket-ball-button {
    width: 55px;
    height: 55px;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    outline: none !important;
  }
  
  .cricket-ball-button::before {
    width: 60px;
    height: 60px;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    outline: none !important;
  }
  
  .cricket-ball-button::after {
    width: 65px;
    height: 65px;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    outline: none !important;
  }
  
  .cricket-ball-highlight {
    width: 10px;
    height: 10px;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    outline: none !important;
  }
  
  .cricket-ball-container::after {
    width: 35px;
    height: 7px;
  }
}

/* Animation Duration for Different Screen Sizes - Higher Bounce */
@media (max-width: 480px) {
  @keyframes cricketBallEnhancedBounce {
    0% {
      transform: translateY(0) scale(1);
      animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    10% {
      transform: translateY(-45px) scale(1.06, 0.94);
      animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }
    25% {
      transform: translateY(-18px) scale(0.99, 1.01);
      animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    40% {
      transform: translateY(-35px) scale(1.04, 0.96);
      animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }
    60% {
      transform: translateY(-12px) scale(0.996, 1.004);
      animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    80% {
      transform: translateY(-25px) scale(1.02, 0.98);
      animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }
    100% {
      transform: translateY(0) scale(1);
    }
  }
}

/* Cricket Ball Tooltip */
.cricket-ball-tooltip {
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10000;
}

.cricket-ball-tooltip::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.8);
}

.cricket-ball-container:hover .cricket-ball-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

/* Hide tooltip on very small screens */
@media (max-width: 320px) {
  .cricket-ball-tooltip {
    display: none;
  }
}

/* End of Enhanced Cricket Ball Styles */
/* ===================================
   THEME TOGGLE BUTTON STYLES
   =================================== */

/* Desktop Theme Toggle Button (Below Footer) - Minimalist Design - REMOVED */
.theme-toggle-desktop {
  display: none !important;
}

.theme-toggle-desktop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.theme-toggle-btn {
  position: relative;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.theme-toggle-btn:focus {
  outline: none;
  box-shadow:
    0 0 0 2px var(--primary-color),
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.theme-toggle-btn:active {
  transform: scale(0.95);
}

.theme-icon {
  position: absolute;
  font-size: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.8);
}

.fas.fa-sun {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.fas.fa-moon {
  transform: rotate(180deg) scale(0.5);
  opacity: 0;
}

/* Dark theme icon states */
[data-theme="dark"] .fas.fa-sun {
  transform: rotate(-180deg) scale(0.5);
  opacity: 0;
}

[data-theme="dark"] .fas.fa-moon {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

.theme-toggle-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.theme-toggle-btn:hover::before {
  opacity: 0.1;
}

/* Mobile Theme Toggle Button (In Navigation Menu) */
.theme-toggle-mobile {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
  padding-top: 10px;
}

.theme-toggle-mobile-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 4px 0;
  min-height: 44px;
  box-sizing: border-box;
}

.theme-toggle-mobile-btn:hover {
  background: rgba(255, 107, 71, 0.1);
  color: var(--primary-color);
  transform: translateX(5px);
}

.theme-toggle-mobile-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: -2px;
  background: rgba(255, 107, 71, 0.1);
}

.theme-toggle-mobile-btn .theme-icon {
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.theme-toggle-mobile-btn .theme-text {
  font-size: 14px;
  font-weight: 500;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

/* Hide desktop toggle on mobile */
@media (max-width: 768px) {
  .theme-toggle-desktop {
    display: none !important;
  }
}

/* Hide mobile toggle on desktop */
@media (min-width: 769px) {
  .theme-toggle-mobile {
    display: none !important;
  }
}

/* Show desktop toggle on larger screens */
@media (min-width: 769px) {
  .theme-toggle-desktop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  
  .theme-toggle-desktop {
    bottom: 30px;
    left: 30px;
  }
  
  .theme-toggle-btn {
    width: 55px;
    height: 55px;
  }
  
  .theme-icon {
    font-size: 22px;
  }
}

/* Large desktop screens */
@media (min-width: 1200px) {
  .theme-toggle-desktop {
    bottom: 40px;
    left: 40px;
  }
  
  .theme-toggle-btn {
    width: 60px;
    height: 60px;
  }
  
  .theme-icon {
    font-size: 24px;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .theme-toggle-desktop,
  .theme-toggle-btn,
  .theme-toggle-mobile-btn,
  .theme-icon {
    transition: none !important;
  }
  
  .theme-toggle-btn:hover,
  .theme-toggle-mobile-btn:hover {
    transform: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .theme-toggle-btn {
    border: 2px solid currentColor;
    background: transparent;
    color: var(--text-dark);
  }
  
  .theme-toggle-btn:hover {
    background: var(--primary-color);
    color: white;
  }
  
  .theme-toggle-mobile-btn {
    border: 1px solid currentColor;
  }
}

/* Print Styles */
@media print {
  .theme-toggle-desktop,
  .theme-toggle-mobile {
    display: none !important;
  }
}

/* Animation for theme switching */
@keyframes themeTogglePulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.theme-toggle-btn:active,
.theme-toggle-mobile-btn:active {
  animation: themeTogglePulse 0.2s ease;
}

/* Mobile menu integration styles */
.nav-menu-mobile .theme-toggle-mobile {
  position: relative;
}

.nav-menu-mobile .theme-toggle-mobile-btn {
  position: relative;
  overflow: hidden;
}

.nav-menu-mobile .theme-toggle-mobile-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-menu-mobile .theme-toggle-mobile-btn:hover::before {
  left: 100%;
}

/* Enhanced touch targets for mobile */
@media (max-width: 768px) {
  .theme-toggle-mobile-btn {
    min-height: 48px;
    padding: 16px 20px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Loading state for theme toggle */
.theme-toggle-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}

.theme-toggle-btn.loading .theme-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Enhanced animation for theme switching */
@keyframes themeToggleMorph {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

.theme-toggle-btn.switching {
  animation: themeToggleMorph 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus management for keyboard navigation */
.theme-toggle-btn:focus-visible,
.theme-toggle-mobile-btn:focus-visible {
  box-shadow:
    0 0 0 2px var(--primary-color),
    0 0 0 4px rgba(255, 255, 255, 0.8);
}

/* Dark mode styles for minimalist button */
[data-theme="dark"] .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile toggle remains similar but more compact */
[data-theme="dark"] .theme-toggle-mobile-btn {
  background: var(--gradient-secondary);
  box-shadow: 0 4px 20px rgba(74, 75, 142, 0.3);
}

[data-theme="dark"] .theme-toggle-mobile-btn:hover {
  box-shadow: 0 8px 30px rgba(74, 75, 142, 0.4);
}

/* Simple Footer Responsive Design Complete */
