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