:root {
  --primary-orange: #ff6b35;
  --dark-orange: #e55a2b;
  --light-orange: #ffb199;
  --accent-orange: #ff8c69;
  --text-dark: #1a1a1a;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --light-bg: #fafafa;
  --white: #ffffff;
  --border-light: #e5e7eb;
  --shadow-light: rgba(255, 107, 53, 0.1);
  --shadow-medium: rgba(255, 107, 53, 0.2);
  --shadow-heavy: rgba(255, 107, 53, 0.3);
  --primary-orange: #ff6b35;
  --secondary-orange: #ff8c42;
  --light-orange: #ffab73;
  --dark-orange: #e55a2b;
  --text-dark: #2c2c2c;
  --text-light: #666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* Football Loading Animation */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    var(--dark-orange) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.football-loader {
  position: relative;
  width: 100px;
  height: 100px;
}

.football {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  position: relative;
  animation: bounce 1.5s infinite ease-in-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.football::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(
      45deg,
      transparent 40%,
      var(--text-dark) 40%,
      var(--text-dark) 60%,
      transparent 60%
    ),
    linear-gradient(
      -45deg,
      transparent 40%,
      var(--text-dark) 40%,
      var(--text-dark) 60%,
      transparent 60%
    );
  border-radius: 50%;
}

.football-emoji {
  font-size: 100px;
  animation: bounce 1.5s infinite ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.football-shadow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  animation: shadowPulse 1.5s infinite ease-in-out;
}
.loader-text {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  animation: textFade 2s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes shadowPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.1;
  }
}

@keyframes textFade {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Navigation with Orange Accents */
.navbar {
  background: var(--white);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px var(--shadow-light);
  padding: 1.2rem 0;
  border-bottom: 2px solid var(--primary-orange);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 5px 40px var(--shadow-medium);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark) !important;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.logo-placeholder {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border: 3px solid var(--white);
  border-radius: 12px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 5px 20px var(--shadow-medium);
  transition: all 0.3s ease;
}

.navbar-brand:hover .logo-placeholder {
  transform: rotate(360deg);
  box-shadow: 0 8px 30px var(--shadow-heavy);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 1.5rem;
  transition: all 0.3s ease;
  font-size: 15px;
  position: relative;
  padding: 0.5rem 0 !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  transition: width 0.3s ease;
  border-radius: 3px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-orange) !important;
  transform: translateY(-2px);
}

/* Hero Section with Enhanced Orange Elements */
.hero-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff5f2 100%);
  padding: 8rem 0 6rem;
  margin-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  opacity: 0.05;
  transform: rotate(15deg);
  border-radius: 50px;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-content h1 {
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.hero-content .highlight {
  color: var(--primary-orange);
  display: block;
  position: relative;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .highlight::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 3px;
  animation: expandWidth 2s ease-out 0.5s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 550px;
  line-height: 1.8;
  font-weight: 400;
}

.cta-primary {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--dark-orange)
  );
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px var(--shadow-heavy);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px var(--shadow-heavy);
  color: white;
}

.cta-secondary {
  background: transparent;
  color: var(--primary-orange);
  padding: 18px 30px;
  border: 2px solid var(--primary-orange);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 1.5rem;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--primary-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
@media (max-width: 425px) {
  .navbar-brand span {
    display: none;
  }
}

.hero-image:hover img {
  transform: scale(1.02) rotate(1deg);
}

/* Enhanced Goals Section */
.goals-section {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
}

.section-title {
  text-align: center;
  font-weight: 900;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.2rem;
  margin-bottom: 5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px var(--shadow-medium);
  border-color: var(--primary-orange);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 20px 40px var(--shadow-heavy);
}

.feature-title {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-description {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

/* Enhanced Programs Section */
.programs-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff8f5 100%);
  position: relative;
}

.program-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-light);
  position: relative;
}

.program-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.program-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px var(--shadow-medium);
}

.program-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.program-card:hover .program-image {
  transform: scale(1.1);
}

.program-content {
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}

.program-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.program-title {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.program-description {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}

.program-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.program-features li {
  padding: 0.5rem 0;
  font-size: 14px;
  color: var(--text-dark);
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}

.program-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 16px;
  width: 20px;
  height: 20px;
  background: var(--light-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.program-cta {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--dark-orange)
  );
  color: white;
  padding: 16px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-light);
}

.program-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px var(--shadow-medium);
  color: white;
}

/* Enhanced Video Section */
.video-section {
  padding: 8rem 0;
  background: var(--white);
}

.video-content h2 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.video-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 2px;
}

.video-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 400;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  border-radius: 28px;
  overflow: hidden;
}

.video-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.video-item.large {
  grid-row: span 2;
}

.video-item:hover {
  transform: scale(1.03);
}

.video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-item:hover img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px var(--shadow-heavy);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 15px 40px var(--shadow-heavy);
}

/* Footer with Orange Accents */
.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #0f0f0f 100%);
  color: white;
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
}

.footer h5 {
  color: var(--primary-orange);
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  font-weight: 400;
}

.footer a:hover {
  color: var(--primary-orange);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

/* Floating animation for cards */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Glitch effect for title */
@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 107, 53, 0.1);
  z-index: 10000;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  width: 0%;
  transition: width 0.3s ease;
}

/* Enhanced button animations */
.cta-primary {
  position: relative;
  overflow: hidden;
}

.cta-primary::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-primary:active::after {
  width: 300px;
  height: 300px;
}

/* Additional modern animations */
.feature-icon {
  position: relative;
}

.feature-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 25px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::before {
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced program card effects */
.program-card {
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.program-card:hover::before {
  left: 100%;
}

/* Modern loading states */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Interactive hover states */
.navbar-brand:hover {
  filter: drop-shadow(0 0 20px var(--primary-orange));
}

/* Enhanced footer styling */
.footer {
  position: relative;
}

.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
}

/* Responsive enhancements */
@media (max-width: 768px) {
  .scroll-progress {
    height: 3px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .feature-card,
  .program-card {
    margin-bottom: 2rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    margin: 0.5rem 0;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --text-dark: #ffffff;
    --text-gray: #b0b0b0;
    --light-bg: #1a1a1a;
    --white: #2a2a2a;
    --border-light: #404040;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .navbar-nav .nav-link {
    margin: 0 0.5rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-item.large {
    grid-row: span 1;
  }

  .cta-secondary {
    margin-left: 0;
    margin-top: 1rem;
  }

  .hero-section {
    padding: 6rem 0 4rem;
  }

  .goals-section,
  .programs-section,
  .video-section {
    padding: 5rem 0;
  }
}

/* //hero section */

.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #fef7f4 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 80px 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6b35" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23ff8c42" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23ffab73" opacity="0.1"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2rem;
  animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  animation: slideInLeft 1s ease-out 0.2s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
  animation: slideInRight 1s ease-out 0.4s both;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-control {
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
  transform: translateY(-2px);
}

.btn-orange {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  border: none;
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.btn-orange:hover::before {
  left: 100%;
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Modern spinner animation */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s ease-in-out infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Ripple effect for interactive elements */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  from {
    width: 0;
    height: 0;
    margin: 0;
    opacity: 1;
  }
  to {
    width: 40px;
    height: 40px;
    margin: -20px;
    opacity: 0;
  }
}

/* Enhanced image loading animation */
img {
  opacity: 1;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background: transparent !important;
  box-shadow: none !important;
}

/* Modern scroll indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 107, 53, 0.1);
  z-index: 1000;
}

.scroll-progress {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  width: 0%;
  transition: width 0.1s ease;
}

.phone-number {
  background: var(--primary-orange);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

.phone-number:hover {
  color: white;
  transform: scale(1.05);
}

.facilities-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}

.facilities-intro {
  margin-bottom: 4rem;
}

.facilities-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.facilities-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.facility-block {
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.facility-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.facility-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
  margin-bottom: 2rem;
}

#facilityCarousel {
  max-width: 100%; /* Full width on all devices */
  margin: auto;
}

#facilityCarousel .carousel-item img {
  width: 100%;
  height: 50vh; /* 50% of viewport height */
  object-fit: cover;
  border-radius: 8px;
}

/* Adjust for smaller devices */
@media (max-width: 768px) {
  #facilityCarousel .carousel-item img {
    height: 35vh; /* Smaller height for tablets/mobiles */
  }
}

@media (max-width: 480px) {
  #facilityCarousel .carousel-item img {
    height: 30vh; /* Even smaller height for phones */
  }
}

.image-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary-orange);
  border: 3px dashed var(--primary-orange);
  border-radius: 20px;
}

.image-placeholder p {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 1rem;
  font-weight: 500;
}

.facility-content {
  padding: 2rem 0;
}

.facility-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 0;
}

.facility-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.facility-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.facility-list li:last-child {
  border-bottom: none;
}

.facility-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--primary-orange);
  font-weight: bold;
  font-size: 1.2rem;
}

.facility-list li:hover {
  padding-left: 35px;
  color: var(--primary-orange);
}

.alternate .facility-content {
  padding-left: 0;
}

@media (max-width: 768px) {
  .facilities-title {
    font-size: 2.2rem;
  }

  .facility-block {
    margin-bottom: 3rem;
  }

  .facility-content {
    padding: 1rem 0;
  }

  .facility-heading {
    font-size: 1.5rem;
  }

  .facility-list li {
    font-size: 1rem;
  }
}

.blog-section {
  padding: 80px 0;
  background: #fafafa;
}

.instagram-btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  margin-bottom: 3rem;
}

.instagram-btn i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.instagram-gallery {
  max-width: 900px;
  margin: 0 auto;
}

.insta-post {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.insta-post:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

/* Make images cover the whole area */
.insta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.insta-image {
  aspect-ratio: 1;

  position: relative;
  overflow: hidden;
}

.post-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.insta-post:hover .insta-overlay {
  opacity: 1;
}

.insta-stats {
  display: flex;
  gap: 20px;
  color: white;
  font-weight: 600;
}

.insta-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.insta-stats i {
  color: #ff6b35;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .contact-form {
    margin-top: 2rem;
  }
}

/* hero  */

/* Hero Section with Enhanced Orange Elements */
.hero-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff5f2 100%);
  padding: 8rem 0 6rem;
  margin-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    45deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  opacity: 0.05;
  transform: rotate(15deg);
  border-radius: 50px;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-content h1 {
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 2rem;
  position: relative;
}

.hero-content .highlight {
  color: var(--primary-orange);
  display: block;
  position: relative;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .highlight::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-orange)
  );
  border-radius: 3px;
  animation: expandWidth 2s ease-out 0.5s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 550px;
  line-height: 1.8;
  font-weight: 400;
}

.cta-primary {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--dark-orange)
  );
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px var(--shadow-heavy);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px var(--shadow-heavy);
  color: white;
}

.cta-secondary {
  background: transparent;
  color: var(--primary-orange);
  padding: 18px 30px;
  border: 2px solid var(--primary-orange);
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 1.5rem;
  transition: all 0.3s ease;
}

.cta-secondary:hover {
  background: var(--primary-orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.hero-image {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.02) rotate(1deg);
}
.hero-section .container,
.hero-section .row,
.hero-section .col-lg-6 {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
