/*-----------------------------------*\
  #CUSTOM CSS VARIABLES
\*-----------------------------------*/

:root {
  /* Colors - Childcare Theme */
  --primary: #FF8BB5; /* Soft warm pink - friendly and inviting */
  --primary-light: #FFB6D9; /* Lighter pink for accents */
  --primary-dark: #E67A9E; /* Darker pink for hover states */
  --secondary: #FFD166; /* Soft sunny yellow for accents */
  --accent-blue: #7EC4CF; /* Soft sky blue for trust and calm */
  --accent-purple: #C8A2E0; /* Soft lavender for variety */
  --accent-green: #A8E6CF; /* Mint green for growth and nature */
  
  /* Neutral Colors */
  --text-dark: #4A4A4A; /* Soft charcoal for headings */
  --text-light: #666666; /* Medium gray for body text */
  --white: #ffffff; /* Pure white */
  --light-bg: #FFF9FB; /* Very light pink background */
  --light-gray: #F8F5F6; /* Warm light gray for sections */
  --medium-gray: #E8E0E2; /* Subtle pinkish borders */
  --dark-gray: #888888; /* Less prominent text */
  
  /* Special Purpose Colors */
  --footer-bg: #5D4E75; /* Soft purple for footer */
  --footer-text: rgba(255, 255, 255, 0.85); /* Light text for footer */
  --footer-link-hover: #FFB6D9; /* Pink for footer link hover */
  --footer-border: rgba(255, 255, 255, 0.15); /* Footer border */
  
  /* Interactive Elements */
  --scroll-bg: var(--primary); /* Scroll-to-top background */
  --scroll-bg-hover: var(--primary-dark); /* Scroll-to-top hover */
  --scroll-shadow: 0 4px 12px rgba(255, 139, 181, 0.3); /* Pink shadow */
  --scroll-shadow-hover: 0 6px 20px rgba(255, 139, 181, 0.4); /* Pink shadow hover */

  /* Typography */
  --font-poppins: 'Poppins', sans-serif;
  --font-baloo: 'Baloo 2', cursive;
  --font-comic: 'Comic Neue', cursive; /* Child-friendly font option */

  /* Font Sizes */
  --fs-heading-1: 3.5rem;
  --fs-heading-2: 2.8rem;
  --fs-heading-3: 2rem;
  --fs-body-1: 1.1rem;
  --fs-body-2: 1rem;
  --fs-small: 0.9rem;

  /* Box Shadows - Softer and more playful */
  --shadow-sm: 0 4px 12px rgba(255, 139, 181, 0.1);
  --shadow-md: 0 8px 20px rgba(255, 139, 181, 0.15);
  --shadow-lg: 0 15px 35px rgba(255, 139, 181, 0.2);
  --shadow-xl: 0 20px 45px rgba(255, 139, 181, 0.25);

  /* Border Radius - Slightly more rounded for playful feel */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-circle: 50%;

  /* Transitions */
  --transition-ease: all 0.3s ease-in-out;
  --transition-cubic: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  --gradient-soft: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-green) 100%);
  --gradient-sunny: linear-gradient(135deg, var(--secondary) 0%, var(--accent-purple) 100%);
}

/*-----------------------------------*\
  #BASE STYLES
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-poppins);
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

body.loaded {
  overflow: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-ease);
}

a:hover {
  color: var(--primary);
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  transition: var(--transition-ease);
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.section {
  padding: 100px 0;
}

.section-padding {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: var(--fs-body-1);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-family: var(--font-baloo);
  font-size: var(--fs-heading-2);
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.section-text, .section-description {
  font-size: var(--fs-body-2);
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--dark-gray);
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  font-size: var(--fs-body-2);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-ease);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
  z-index: -1;
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
}

/*-----------------------------------*\
  #PRELOADER
\*-----------------------------------*/

.preload {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.preload.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preload .circle {
  width: 70px;
  height: 70px;
  border: 7px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: var(--radius-circle);
  animation: spin 1.2s linear infinite;
}

.preload .text {
  font-family: var(--font-baloo);
  font-size: var(--fs-heading-3);
  color: var(--primary);
  margin-top: 25px;
  animation: pulse 1.5s infinite alternate;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.05); opacity: 0.8; }
}

/*-----------------------------------*\
  #TOPBAR
\*-----------------------------------*/

.topbar {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 12px 0;
  font-size: var(--fs-small);
  box-shadow: var(--shadow-sm);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 25px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-item .icon {
  font-size: 1.3rem;
  color: var(--secondary);
}

.topbar .separator {
  width: 1px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.2);
}

.topbar-item.link:hover {
  text-decoration: underline;
  color: var(--secondary);
}

/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

#main-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--medium-gray);
  flex-wrap: wrap;
  gap: 15px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-badge {
  position: absolute;
  bottom: -22px;
  left: 10%;
  background-color: var(--secondary);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transform: translateX(-50%);
  white-space: nowrap;
}

.logo-text h1 {
  font-family: var(--font-baloo);
  font-size: 1.8rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.logo-text p {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.header-highlight {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-highlight i {
  color: var(--secondary);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info i {
  color: var(--primary);
}

.main-nav {
  background-color: var(--primary);
  padding: 15px 20px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.nav-links li a {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a.active {
  color: var(--secondary);
}

.mobile-menu-toggle {
  display: none;
  color: var(--white);
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.layered-footer {
  background-image: url('https://via.placeholder.com/1920x300/B0E0E6/FFFFFF?text=Footer+Wave+Background');
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  padding-top: 120px;
}

.newsletter {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-md);
  transform: translateY(50%);
  position: relative;
  z-index: 1;
}

.newsletter h3 {
  font-family: var(--font-baloo);
  font-size: 2rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  flex-grow: 1;
  max-width: 350px;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.glow-button {
  background-color: var(--secondary);
  color: var(--text-dark);
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-ease);
}

.glow-button:hover {
  background-color: var(--secondary);
  box-shadow: 0 0 15px var(--secondary), 0 0 30px var(--secondary);
  transform: translateY(-3px);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 20px 60px;
  border-bottom: 1px solid var(--footer-border);
}

.footer-col h4 {
  font-family: var(--font-baloo);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col h4 i {
  color: var(--primary);
}

.footer-col p,
.footer-col li a {
  font-size: 0.95rem;
  color: var(--footer-text);
  line-height: 1.8;
}

.footer-col p i {
  color: var(--primary-light);
  margin-right: 10px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: var(--footer-text);
  font-size: 1.5rem;
  transition: var(--transition-ease);
}

.social-icons a:hover {
  color: var(--footer-link-hover);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.7);
}

/*-----------------------------------*\
  #SCROLL TO TOP
\*-----------------------------------*/

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--scroll-bg);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--scroll-shadow);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--scroll-bg-hover);
  transform: translateY(-5px);
  box-shadow: var(--scroll-shadow-hover);
}

.scroll-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/*-----------------------------------*\
  #ENHANCED HERO SLIDER - FIXED IMAGE DISPLAY
\*-----------------------------------*/

/* Enhanced Hero Slider Fixes */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  background: #000; /* Fallback background */
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.slider-item.active {
  opacity: 1;
  z-index: 2;
}

.slider-item.active-zoom {
  opacity: 1;
  z-index: 2;
}

/* FIXED: Proper image container with aspect ratio preservation */
.kenburns-animation {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FIXED: Proper image styling without cropping */
.kenburns-animation img {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
}

/* FIXED: Improved Ken Burns Animation - No Cropping */
.kenburns-animation img {
  animation: smooth-kenburns 20s ease-in-out infinite;
}

@keyframes smooth-kenburns {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  25% {
    transform: translate(-51%, -51%) scale(1.05);
  }
  50% {
    transform: translate(-49%, -49%) scale(1.08);
  }
  75% {
    transform: translate(-50.5%, -50.5%) scale(1.04);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Active slide has more pronounced but safe animation */
.slider-item.active .kenburns-animation img,
.slider-item.active-zoom .kenburns-animation img {
  animation: active-kenburns 18s ease-in-out infinite;
}

@keyframes active-kenburns {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  25% {
    transform: translate(-51.5%, -51%) scale(1.08);
  }
  50% {
    transform: translate(-48.5%, -49%) scale(1.12);
  }
  75% {
    transform: translate(-50.5%, -50.5%) scale(1.06);
  }
}

/* Ensure images maintain quality */
.kenburns-animation img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Loading states for better UX */
.slider-item img[data-loaded="false"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider-item img[data-loaded="true"] {
  opacity: 1;
}

/* Overlay Layer */
.overlay-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

/* Slide Content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 3;
  width: 90%;
  max-width: 800px;
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}

.slider-item.active .slide-content,
.slider-item.active-zoom .slide-content {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.slide-content h1 {
  font-family: var(--font-baloo);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

/* Animation classes for slide content */
.slide-content.animate-in h1 {
  animation: slideInUp 0.8s ease 0.5s both;
}

.slide-content.animate-in p {
  animation: slideInUp 0.8s ease 0.7s both;
}

.slide-content.animate-in .btn {
  animation: slideInUp 0.8s ease 0.9s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider Navigation Controls */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 30px;
}

.slider-nav.next {
  right: 30px;
}

/* Slider Dots Indicator */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.slider-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.2);
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Progress Bar for Auto-slide */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 4;
}

.slider-progress-bar {
  height: 100%;
  background: var(--secondary);
  width: 0%;
  transition: width 3s linear;
}

.slider-item.active ~ .slider-progress .slider-progress-bar,
.slider-item.active-zoom ~ .slider-progress .slider-progress-bar {
  width: 100%;
}

/* Enhanced Overlay Text */
.overlay-text {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
  text-align: center;
}

.overlay-text h1 {
  font-family: var(--font-baloo);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
}

.overlay-text p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.6;
}

.overlay-text.animate-in h1 {
  animation: fadeInUp 1s ease 0.2s both;
}

.overlay-text.animate-in p {
  animation: fadeInUp 1s ease 0.4s both;
}

.overlay-text.animate-in .btn {
  animation: fadeInUp 1s ease 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fallback styles for when images don't load */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-section.fallback-active::before {
  opacity: 1;
}

.hero-section.fallback-active .hero-slider {
  opacity: 0;
}

/* Responsive image fixes */
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
    min-height: 400px;
  }
  
  .slider-nav {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .slider-nav.prev {
    left: 15px;
  }
  
  .slider-nav.next {
    right: 15px;
  }
  
  .slider-dots {
    bottom: 20px;
  }
  
  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
  
  .slide-content {
    width: 95%;
  }

  /* Mobile-specific Ken Burns */
  .kenburns-animation img {
    animation: mobile-kenburns 20s ease-in-out infinite;
  }
  
  @keyframes mobile-kenburns {
    0% {
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.05);
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
    }
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 50vh;
    min-height: 300px;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .slider-dots {
    bottom: 15px;
    gap: 8px;
  }
  
  .slider-dots .dot {
    width: 8px;
    height: 8px;
  }
}

/* Additional Animation Effects */
@keyframes zoomInOut {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply different entrance animations based on slide direction */
.slider-item[data-direction="next"].active .slide-content,
.slider-item[data-direction="next"].active-zoom .slide-content {
  animation: slideInFromRight 0.8s ease 0.3s both;
}

.slider-item[data-direction="prev"].active .slide-content,
.slider-item[data-direction="prev"].active-zoom .slide-content {
  animation: slideInFromLeft 0.8s ease 0.3s both;
}

/* Debug styles - remove in production */
.img-debug {
  border: 2px solid red !important;
}

.img-loaded {
  border: 2px solid green !important;
}

/*-----------------------------------*\
  #ABOUT PAGE LAYOUT
\*-----------------------------------*/

.about {
  background-color: var(--white);
  padding: 100px 0;
}

.about .container {
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  text-align: left;
}

.about-banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-banner .w-100 {
  width: 100%;
  max-width: 570px;
  height: 570px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.abs-img {
  position: absolute;
  border-radius: var(--radius-circle);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  z-index: 2;
}

.abs-img-1 {
  top: 20px;
  left: -30px;
  width: 120px;
  height: 120px;
}

.abs-img-2 {
  bottom: -20px;
  right: -20px;
  width: 133px;
  height: 134px;
}

.abs-img.has-before::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  border-radius: inherit;
  transform: scale(0);
  transition: var(--transition-ease);
  z-index: -1;
}

.abs-img.has-before:hover::before {
  transform: scale(1);
}

.abs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-ease);
}

.abs-img:hover img {
  transform: scale(1.1);
}

/* Floating animation for small images */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.abs-img {
  animation: float 6s ease-in-out infinite;
}

.abs-img-1 {
  animation-delay: 0s;
}

.abs-img-2 {
  animation-delay: 2s;
}

.shape {
  position: absolute;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

/* About Text Styles */
.about .section-subtitle {
  font-size: var(--fs-body-1);
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.about .section-title {
  font-family: var(--font-baloo);
  font-size: var(--fs-heading-1);
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: left;
}

.about .section-title::after {
  left: 0;
  transform: translateX(0);
}

.about .section-text {
  font-size: var(--fs-body-2);
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-label {
  font-size: var(--fs-body-1);
  color: var(--primary);
  font-weight: 600;
  margin: 30px 0 15px;
  display: block;
}

.contact-number {
  font-size: 1.8rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 30px;
  display: block;
  transition: var(--transition-ease);
}

.contact-number:hover {
  color: var(--primary);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Mission & Vision Section */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .mission-vision {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-item {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: var(--transition-ease);
}

.mission-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mission-item h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-family: var(--font-baloo);
  font-size: 1.4rem;
}

.mission-item p {
  color: var(--text-light);
  line-height: 1.6;
}

/*-----------------------------------*\
  #EVENTS COUNTER SECTION
\*-----------------------------------*/

.events-stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.events-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.events-stats .container {
  position: relative;
  z-index: 1;
}

.events-stats h2 {
  font-family: var(--font-baloo);
  font-size: var(--fs-heading-2);
  margin-bottom: 15px;
  color: var(--white);
}

.events-stats .section-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  font-size: var(--fs-body-1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-ease);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: bold;
  font-family: var(--font-baloo);
  margin-bottom: 10px;
  color: var(--secondary);
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
  color: var(--white);
}

/*-----------------------------------*\
  #EVENTS PAGE ENHANCEMENTS
\*-----------------------------------*/

.events-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.events-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-baloo);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat .number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: var(--font-baloo);
  color: var(--secondary);
}

.stat .label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/*-----------------------------------*\
  #RESPONSIVE FIXES
\*-----------------------------------*/

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about .section-title {
    text-align: center;
  }
  
  .about .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-banner .w-100 {
    height: 400px;
  }
  
  .abs-img-1 {
    width: 80px;
    height: 80px;
    top: 10px;
    left: -15px;
  }
  
  .abs-img-2 {
    width: 100px;
    height: 100px;
    bottom: -10px;
    right: -10px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  /* Events Stats Mobile */
  .events-stats {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-card {
    padding: 30px 15px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .events-hero {
    padding: 80px 0;
  }
  
  .events-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .about-banner .w-100 {
    height: 300px;
  }
  
  .abs-img-1,
  .abs-img-2 {
    display: none;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  /* Events Stats Small Mobile */
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-card {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .events-hero {
    padding: 60px 0;
  }
  
  .events-hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/*-----------------------------------*\
  #BREADCRUMB ENHANCEMENT
\*-----------------------------------*/

.breadcrumb {
  margin-bottom: 40px;
  padding: 15px 0;
  border-bottom: 1px solid var(--medium-gray);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  color: var(--dark-gray);
  font-size: 1.2rem;
  margin-left: 10px;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-ease);
}

.breadcrumb a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
  color: var(--text-light);
  font-weight: 500;
}

/* Event Section */

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--radius-md);
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.modal-content.large {
    max-width: 900px;
    margin: 2% auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--medium);
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--light-gray);
    color: var(--dark);
}

/* Admin Login Modal */
.password-input {
    position: relative;
    margin: 1.5rem 0;
}

.password-input input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.password-input input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--medium);
    cursor: pointer;
    padding: 0.5rem;
}

.password-hint {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.password-hint code {
    background: var(--dark);
    color: var(--white);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    font-family: monospace;
}

/* Admin Panel */
.admin-section {
    background: var(--white);
    padding: 3rem 0;
    border-bottom: 3px solid var(--primary);
}

.admin-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.admin-controls {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Form Styles */
.event-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-poppins);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.file-hint {
    display: block;
    margin-top: 0.5rem;
    color: var(--medium);
    font-size: 0.8rem;
}

/* File Previews */
.file-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--medium-gray);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-preview {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220, 53, 69, 0.9);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.remove-preview:hover {
    background: #dc3545;
    transform: scale(1.1);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Event Management */
.event-management {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--medium-gray);
}

.events-list {
    display: grid;
    gap: 1rem;
}

.manage-event-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.manage-event-item:hover {
    box-shadow: var(--shadow-lg);
}

.event-info {
    flex: 1;
}

.event-info h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: var(--font-baloo);
}

.event-meta-small {
    font-size: 0.9rem;
    color: var(--medium);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-actions {
    display: flex;
    gap: 0.5rem;
}

/* Hero Section */
.events-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: var(--font-baloo);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-baloo);
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.admin-access {
    margin-top: 2rem;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-view-toggle {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-left: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Events Gallery */
.events-gallery {
    padding: 4rem 0;
}

.section-padding {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: var(--font-baloo);
}

.section-description {
    color: var(--medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Event Cards */
.event-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-card.admin-view::before {
    content: 'Admin View';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.event-card-header {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-card-header img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius);
    text-align: center;
    line-height: 1;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-baloo);
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.gallery-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.event-actions-card {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: var(--transition);
}

.event-card.admin-view:hover .event-actions-card {
    opacity: 1;
}

.btn-card-action {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.btn-edit {
    background: var(--primary);
}

.btn-delete {
    background: var(--secondary);
}

.btn-card-action:hover {
    transform: scale(1.1);
}

.event-card-body {
    padding: 1.5rem;
}

.event-card-body h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-family: var(--font-baloo);
}

.event-description {
    color: var(--medium);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-tag {
    background: var(--light);
    color: var(--medium);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--medium);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: var(--primary);
}

.empty-state h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: var(--font-baloo);
}

.empty-state-actions {
    margin-top: 2rem;
}

/* Event Detail Modal */
.modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--medium-gray);
}

.modal-header h2 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-family: var(--font-baloo);
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-date-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.event-details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light);
    padding: 6px 12px;
    border-radius: var(--radius);
    color: var(--dark);
    font-size: 0.9rem;
}

.event-detail-item i {
    color: var(--primary);
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.slider-track {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.slider-slide {
    min-width: 100%;
    height: 100%;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.slider-slide img:hover {
    transform: scale(1.02);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 15px;
}

.slider-nav.next {
    right: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Event Content in Modal */
.event-description-full {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--dark);
}

.event-highlights-modal h4 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: var(--font-baloo);
}

.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.highlights-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.event-stats-modal {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
    flex-wrap: wrap;
}

.event-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium);
    font-size: 0.9rem;
}

.event-stat i {
    color: var(--primary);
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}


/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    animation: slideInRight 0.3s ease;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-success {
    background: var(--primary);
    color: var(--white);
}

.notification-error {
    background: var(--secondary);
    color: var(--white);
}

.notification-info {
    background: var(--accent);
    color: var(--white);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/*-----------------------------------*\
  #SERVICES SECTION
\*-----------------------------------*/

.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #e8f5e9 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  font-size: var(--fs-heading-3);
  color: var(--text-dark);
  margin: 15px 0;
  font-weight: bold;
}

.card-content p {
  font-size: var(--fs-body-2);
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(76, 175, 80, 0.1);
  z-index: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

/*-----------------------------------*\
  #FEATURES SECTION
\*-----------------------------------*/

.features {
  background: var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-cubic);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.05) 50%);
  background-size: 200% 200%;
  background-position: 100% 0;
  transition: background-position 0.5s ease;
  z-index: -1;
}

.feature-card:hover:before {
  background-position: 0 0;
}

.feature-card:hover {
  transform: translateY(-18px) scale(1.03);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(to bottom right, var(--primary), var(--primary-light));
}

.feature-card .feature-icon i {
  font-size: 4rem;
  color: var(--primary);
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
  transition: filter 0.4s ease, color 0.4s ease;
}

.feature-card .feature-icon img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
  transition: filter 0.4s ease;
}

.feature-card h3 {
  font-size: var(--fs-heading-3);
  margin-bottom: 1.2rem;
  color: var(--text-dark);
  transition: var(--transition-ease);
}

.feature-card p {
  font-size: var(--fs-body-2);
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.7;
  color: var(--text-light);
  transition: transform 0.4s ease, opacity 0.4s ease, color 0.4s ease;
}

.feature-card:hover .feature-icon i,
.feature-card:hover .feature-icon img {
  filter: grayscale(100%) brightness(200%) drop-shadow(0 5px 15px rgba(255,255,255,0.3));
  color: var(--white);
}

.feature-card:hover h3 {
  color: var(--white);
  text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}

.feature-card:hover p {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-8px);
}

.feature-link {
  background: var(--secondary);
  color: var(--text-dark);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: var(--fs-body-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-ease);
}

.feature-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--primary-dark);
  color: var(--white);
}

.feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  pointer-events: none;
  transition: var(--transition-cubic);
  transform: translateY(100%);
  background: rgba(0,0,0,0.1);
  color: var(--white);
}

.feature-card:hover .feature-overlay {
  transform: translateY(0);
  pointer-events: all;
}

/*-----------------------------------*\
  #CONTACT FORM
\*-----------------------------------*/

.reservation {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.reservation .container {
  max-width: 1000px;
}

.reservation-form {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--black-10);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.reservation-form .form-left {
  flex: 1 1 55%;
  padding: 40px;
  background-color: var(--white);
  color: var(--text-dark);
}

.reservation-form .form-right {
  flex: 1 1 45%;
  padding: 40px;
  background-color: var(--primary-dark);
  color: var(--white);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.reservation-form .headline-1 {
  font-size: var(--fs-heading-2);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.reservation-form .form-right .headline-1 {
  color: var(--white);
}

.reservation-form .form-text {
  font-size: var(--fs-body-2);
  color: var(--text-light);
  margin-bottom: 30px;
}

.reservation-form .form-text .link {
  color: var(--primary);
  font-weight: 600;
}

.reservation-form .input-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.reservation-form .input-field {
  flex: 1 1 calc(50% - 10px);
  background-color: var(--light-gray);
  border: 1px solid var(--medium-gray);
  padding: 15px 20px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-body-2);
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-ease);
}

.reservation-form .input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.reservation-form .input-field::placeholder {
  color: var(--dark-gray);
}

.reservation-form textarea.input-field {
  min-height: 120px;
  resize: vertical;
  flex-basis: 100%;
}

.reservation-form .icon-wrapper {
  position: relative;
  flex: 1 1 calc(50% - 10px);
  display: flex;
  align-items: center;
}

.reservation-form .icon-wrapper .input-field {
  padding-right: 40px;
}

.reservation-form .icon-wrapper ion-icon {
  position: absolute;
  right: 15px;
  font-size: 1.2rem;
  color: var(--dark-gray);
  pointer-events: none;
}

.reservation-form .btn-secondary {
  width: 100%;
  padding: 15px 30px;
  margin-top: 20px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: var(--fs-body-1);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.reservation-form .btn-secondary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.reservation-form .form-right .contact-label {
  color: var(--secondary);
  font-size: var(--fs-body-1);
  margin-bottom: 10px;
  margin-top: 20px;
}

.reservation-form .form-right .contact-number {
  color: var(--white);
  font-size: var(--fs-heading-3);
  margin-bottom: 20px;
}

.reservation-form .form-right .separator {
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  margin: 25px auto;
}

.reservation-form .form-right address,
.reservation-form .form-right .body-4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-body-2);
  line-height: 1.6;
  margin-bottom: 15px;
}

/*-----------------------------------*\
  #GALLERY SECTION
\*-----------------------------------*/

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(76, 175, 80, 0.9);
  color: var(--white);
  padding: 15px;
  text-align: center;
  font-weight: 500;
}

/*-----------------------------------*\
  #HEALTH & SAFETY SECTION
\*-----------------------------------*/

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.safety-item {
  display: flex;
  align-items: flex-start;
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.safety-item:hover {
  transform: translateY(-5px);
}

.safety-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-right: 20px;
  min-width: 60px;
  text-align: center;
}

.safety-content h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.health-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
  text-align: center;
}

.stat-item {
  background: var(--primary);
  color: var(--white);
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: var(--font-baloo);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/*-----------------------------------*\
  #LICENSE SECTION
\*-----------------------------------*/

.license-content {
  margin-top: 60px;
}

.license-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 50px;
}

.license-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.license-details h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.license-features {
  list-style: none;
  margin-top: 20px;
}

.license-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.license-features i {
  color: var(--primary);
  margin-right: 10px;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.cert-item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-5px);
}

.cert-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.cert-item h4 {
  color: var(--text-dark);
  margin-bottom: 15px;
}

.compliance-section {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 15px;
  margin-top: 40px;
  text-align: center;
}

.compliance-section h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.compliance-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.badge {
  background: var(--primary);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.badge i {
  font-size: 1.2rem;
}

/*-----------------------------------*\
  #OUTDOOR ACTIVITIES SECTION
\*-----------------------------------*/

.outdoor-hero {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: var(--shadow-sm);
}

.hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(76, 175, 80, 0.9);
  color: var(--white);
  padding: 30px;
  text-align: center;
}

.hero-overlay h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 2rem;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.activity-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-10px);
}

.activity-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.activity-content {
  padding: 25px;
}

.activity-content h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

.activity-features {
  list-style: none;
  margin-top: 20px;
}

.activity-features li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.activity-features i {
  color: var(--primary);
  margin-right: 10px;
}

.schedule-section {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 15px;
  margin-top: 50px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.schedule-item {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.time-slot {
  font-weight: bold;
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.activity-desc {
  color: var(--text-dark);
}

/*-----------------------------------*\
  #PAGE-SPECIFIC OVERRIDES
\*-----------------------------------*/

.about-page {
  --scroll-bg: green;
  --scroll-bg-hover: darkgreen;
  --scroll-shadow-hover: 0 8px 18px greenyellow;
  --footer-border: rgba(255, 255, 255, 0.7);
  --footer-text: rgba(255, 255, 255, 0.85);
}

.services-page .headline-1 {
  font-size: var(--fs-heading-1);
}

.services-page .section-text {
  font-size: var(--fs-body-1);
}

.contact-page {
  --footer-border: rgba(255, 255, 255, 0.1);
}

/*-----------------------------------*\
  #RESPONSIVE DESIGN
\*-----------------------------------*/

@media (max-width: 1024px) {
  .header-top {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .logo-container {
    flex-direction: column;
    gap: 10px;
  }
  .logo-text h1 {
    font-size: 1.6rem;
  }
  .logo-text p {
    font-size: 0.85rem;
  }
  .header-highlight {
    font-size: 0.9rem;
  }
  .contact-info {
    align-items: center;
  }
  .main-nav {
    padding: 10px 20px;
  }
  .nav-links {
    gap: 20px;
  }
  .hero-section {
    min-height: 50vh;
  }
  .overlay-text h2 {
    font-size: 2.8rem;
  }
  .overlay-text p {
    font-size: 1rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .about-content-grid {
    gap: 40px;
  }
  .about-text-block h3 {
    font-size: 1.8rem;
  }
  .contact-number-large {
    font-size: 1.8rem;
  }
  .team-grid {
    gap: 30px;
  }
  .features-grid {
    gap: 2rem;
  }
  .feature-card {
    min-height: 320px;
    padding: 2rem;
  }
  .feature-card .feature-icon i {
    font-size: 3.5rem;
  }
  .feature-card h3 {
    font-size: 1.6rem;
  }
  .newsletter {
    padding: 30px 15px;
    margin-bottom: 40px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 40px;
  }
  .footer-col h4 {
    font-size: 1.3rem;
  }
  
  /* About Page Responsive */
  .mission-vision {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar .container {
    justify-content: center;
  }
  .header-top {
    padding: 10px 15px;
  }
  .logo-container {
    width: 100%;
  }
  .logo-wrapper {
    width: 70px;
    height: 70px;
  }
  .logo-text h1 {
    font-size: 1.4rem;
  }
  .logo-text p {
    font-size: 0.8rem;
  }
  .header-highlight, .contact-info {
    width: 100%;
    justify-content: center;
  }
  .main-nav {
    padding: 10px 15px;
  }
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
  }
  .mobile-menu-toggle .menu-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    position: relative;
    transition: background-color 0.3s ease;
  }
  .mobile-menu-toggle .menu-icon::before,
  .mobile-menu-toggle .menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: transform 0.3s ease, top 0.3s ease;
  }
  .mobile-menu-toggle .menu-icon::before {
    top: -8px;
  }
  .mobile-menu-toggle .menu-icon::after {
    top: 8px;
  }
  .mobile-menu-toggle.active .menu-icon {
    background-color: transparent;
  }
  .mobile-menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
  }
  .mobile-menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
  }
  .hero-section {
    min-height: 40vh;
  }
  .overlay-text h2 {
    font-size: 2.2rem;
  }
  .overlay-text p {
    font-size: 0.9rem;
  }
  .section-padding {
    padding: 40px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .about-content-grid {
    gap: 30px;
  }
  .about-text-block h3 {
    font-size: 1.5rem;
  }
  .contact-number-large {
    font-size: 1.6rem;
  }
  .about-image-block .badge-img {
    width: 120px;
    height: 120px;
  }
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .team-member-img {
    width: 120px;
    height: 120px;
  }
  .team-member-card h3 {
    font-size: 1.3rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-card {
    min-height: auto;
    padding: 1.8rem;
  }
  .feature-card .feature-icon i {
    font-size: 3rem;
  }
  .feature-card h3 {
    font-size: 1.4rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input[type="email"] {
    max-width: 100%;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col h4 {
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
  }
  .reservation-form {
    grid-template-columns: 1fr;
  }
  .input-wrapper {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .license-card {
    grid-template-columns: 1fr;
  }
  .compliance-badges {
    flex-direction: column;
    align-items: center;
  }
  .activities-grid {
    grid-template-columns: 1fr;
  }
  .schedule-grid {
    grid-template-columns: 1fr;
  }
  .hero-overlay {
    padding: 20px;
  }
  .hero-overlay h3 {
    font-size: 1.5rem;
  }
  
  /* Events Preview Responsive */
  .events-preview-grid {
    grid-template-columns: 1fr;
  }
  
  /* About Page Mobile */
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .team-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .abs-img-2 {
    width: 100px;
    height: 100px;
    bottom: -10px;
    right: -10px;
  }
}

@media (max-width: 480px) {
  .logo-text h1 {
    font-size: 1.1rem;
  }
  .logo-text p {
    font-size: 0.7rem;
  }
  .hero-section {
    min-height: 30vh;
  }
  .overlay-text h2 {
    font-size: 1.6rem;
  }
  .overlay-text p {
    font-size: 0.8rem;
  }
  .btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .about-text-block h3 {
    font-size: 1.3rem;
  }
  .contact-number-large {
    font-size: 1.4rem;
  }
  .about-image-block .badge-img {
    width: 100px;
    height: 100px;
  }
  .team-member-card {
    padding: 20px;
  }
  .team-member-img {
    width: 100px;
    height: 100px;
  }
  .team-member-card h3 {
    font-size: 1.1rem;
  }
  .features-grid {
    padding: 1.5rem;
  }
  .feature-card .feature-icon i {
    font-size: 2.5rem;
  }
  .feature-card h3 {
    font-size: 1.2rem;
  }
  .newsletter h3 {
    font-size: 1.5rem;
  }
  .glow-button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .scroll-to-top {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }
  .hero-content h2 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .section {
    padding: 60px 0;
  }
  
  /* About Page Mobile Small */
  .team-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    padding: 1.5rem;
  }
  
  .mission-item {
    padding: 1.5rem;
  }
  
  .value-item {
    padding: 2rem;
  }
  
  .event-preview-content h3 {
    font-size: 1.1rem;
  }
}


/*-----------------------------------*\
  #MINISTRY APPROVAL SECTION
\*-----------------------------------*/

.ministry-approval {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f5e9 100%);
    padding: 4rem 0;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.ministry-approval::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent-blue));
}

.approval-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    font-family: var(--font-baloo);
    font-size: var(--fs-body-1);
    animation: gentle-pulse 3s infinite;
}

.approval-badge i {
    font-size: 1.3rem;
    color: var(--secondary);
}

.ministry-approval h2 {
    color: var(--text-dark);
    font-size: var(--fs-heading-2);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-baloo);
}

.ministry-approval p {
    font-size: var(--fs-body-1);
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.ministry-approval strong {
    color: var(--primary);
    font-weight: 700;
}

.approval-benefits {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
    border-left: 5px solid var(--primary);
    position: relative;
}

.approval-benefits h3 {
    color: var(--text-dark);
    font-size: var(--fs-heading-3);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: var(--font-baloo);
}

.approval-benefits ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.approval-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-ease);
    font-size: var(--fs-body-2);
}

.approval-benefits li:hover {
    background: var(--medium-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/*-----------------------------------*\
  #ENHANCED FEATURES SECTION
\*-----------------------------------*/

.features {
    background: var(--white);
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-intro h2 {
    color: var(--text-dark);
    font-size: var(--fs-heading-2);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-baloo);
}

.section-intro p {
    color: var(--text-light);
    font-size: var(--fs-body-1);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-ease);
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition-ease);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.feature-icon.pulse {
    animation: gentle-pulse 3s infinite;
}

.feature-card h3 {
    color: var(--text-dark);
    font-size: var(--fs-heading-3);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: var(--font-baloo);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: var(--fs-body-2);
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-ease);
    font-size: var(--fs-body-2);
    margin-top: auto;
}

.feature-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.feature-link i {
    transition: var(--transition-ease);
}

.feature-link:hover i {
    transform: translateX(3px);
}

/*-----------------------------------*\
  #CTA SECTION ENHANCEMENT
\*-----------------------------------*/

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 4rem 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: var(--fs-heading-2);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-baloo);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: var(--fs-body-1);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-ease);
    border: 2px solid transparent;
    font-size: var(--fs-body-2);
    font-family: var(--font-poppins);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--secondary), #ffb300);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #ffb300, var(--secondary));
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/*-----------------------------------*\
  #ANIMATIONS
\*-----------------------------------*/

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-sm);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-md);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*-----------------------------------*\
  #RESPONSIVE DESIGN
\*-----------------------------------*/

@media (max-width: 768px) {
    .ministry-approval {
        padding: 3rem 0;
        margin: 1rem 0;
    }
    
    .ministry-approval h2 {
        font-size: 1.8rem;
    }
    
    .approval-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .approval-benefits {
        padding: 2rem 1.5rem;
    }
    
    .approval-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .approval-benefits li {
        padding: 0.8rem;
        font-size: var(--fs-body-2);
    }
    
    .section-intro h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ministry-approval {
        padding: 2rem 0;
    }
    
    .ministry-approval h2 {
        font-size: 1.6rem;
    }
    
    .approval-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .approval-badge i {
        font-size: 1.1rem;
    }
    
    .ministry-approval p {
        font-size: var(--fs-body-2);
    }
    
    .approval-benefits {
        padding: 1.5rem 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: var(--fs-body-2);
    }
}

/*-----------------------------------*\
  #ENHANCED FOOTER STYLES
\*-----------------------------------*/

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-size: var(--fs-heading-3);
    font-family: var(--font-baloo);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col h4 i {
    color: var(--primary);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--footer-text);
    text-decoration: none;
    transition: var(--transition-ease);
    font-size: var(--fs-body-2);
}

.footer-col a:hover {
    color: var(--footer-link-hover);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--footer-border);
    padding: 2rem 0;
    text-align: center;
    color: var(--footer-text);
    font-size: var(--fs-small);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/*-----------------------------------*\
  #HERO SECTION ENHANCEMENT
\*-----------------------------------*/

.slide-content h2 {
    font-size: var(--fs-heading-1);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-family: var(--font-baloo);
}

.slide-content p {
    font-size: var(--fs-body-1);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/*-----------------------------------*\
  #HEADER ENHANCEMENT
\*-----------------------------------*/

.logo-text h1 {
    color: var(--primary-dark);
    font-weight: 700;
    font-family: var(--font-baloo);
}

.header-highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/*-----------------------------------*\
  #NAVIGATION ENHANCEMENT
\*-----------------------------------*/

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition-ease);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--secondary);
}