/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Container */
.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
}

/* Navigation Bar */
header {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
}

.logo img {
  height: 85px;
  margin-right: 0px;
}

.logo span {
  font-size: 24px;
  font-weight: bold;
  color: #E04E1B;
  letter-spacing: 1px;
}

nav {
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  color: #000;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #E04E1B;
}

.btn-join {
  background: #E04E1B;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.btn-join:hover {
  background: #c64215;
}

/* Burger Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

  .menu-toggle {
    position: relative;
  }

  .menu-toggle .bar {
    display: none;
  }

  .menu-toggle:hover .bar {
    background-color: #E04E1B;
  }

  .menu-toggle.active .bar {
    background-color: #fff;
  }

/* Burger Icon Animation */
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-toggle.active .bar:nth-child(4) {
  transform: translateY(-9px) rotate(45deg);
}

/* Section General Styles */
section {
  padding-top: 120px; /* Account for fixed header */
  scroll-margin-top: 100px; /* Offset for fixed header when scrolling to anchor */
}

/* Section Headings - Consistent styling for all sections */
section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.8em;
  position: relative;
  background: linear-gradient(135deg, #E04E1B, #bd1248);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #E04E1B, #bd1248);
  border-radius: 2px;
  animation: expandWidth 1s ease-out 0.5s both;
}

/* Hero Section */
.hero {
  background: url('images/danica_in_gym_bg.jpg') no-repeat center top/cover;
  height: calc(100vh - 105px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  padding: 0;
  text-align: center;
  margin-top: 105px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 100px;
  font-weight: bold;
  color: #E04E1B;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-size: 45px;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.btn-start {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: #E04E1B;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.btn-start:hover {
  background: #c64215;
}

/* About Section */
section.about {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #fff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

section.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(224, 78, 27, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(224, 78, 27, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(189, 18, 72, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

section.about .container {
  position: relative;
  z-index: 1;
}

section.about p {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.3em;
  line-height: 1.9;
  color: #444;
  background: #fff;
  padding: 40px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  opacity: 0;
}

section.about p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(135deg, #E04E1B, #bd1248);
  border-radius: 0 20px 20px 0;
}

section.about p::after {
  content: '💪';
  position: absolute;
  top: -25px;
  right: -15px;
  font-size: 2em;
  background: #fff;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(224, 78, 27, 0.2);
  animation: bounce 2s infinite 1s;
  z-index: 2;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Facilities Section */
section.facilities {
  padding: 80px 0;
  background: #f8f9fa;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Large desktop screens - show all 4 tiles in one row */
@media (min-width: 1200px) {
  .facilities-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }
  
  /* About section matches facilities width on large screens */
  section.about p {
    max-width: 1200px;
  }
  
  /* Services section matches facilities width on large screens */
  .services-list {
    max-width: 1200px;
  }
}

.facility-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.facility-item:hover {
  transform: translateY(-5px);
}

.facility-item.best-part {
  background: linear-gradient(135deg, #FF3066, #E04E1B);
  color: #fff;
}

.facility-icon {
  font-size: 3em;
  margin-bottom: 20px;
}

.facility-item h3 {
  margin-bottom: 15px;
  font-size: 1.3em;
  text-align: center;
  color: #333;
}

.facility-item h3::after {
  display: none; /* Remove underline for facility items */
}

/* Services Section */
section.services {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #f8f9fa 100%);
  position: relative;
}

section.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(224, 78, 27, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(224, 78, 27, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.services-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.service-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 25px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(135deg, #E04E1B, #ff6b35);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(224, 78, 27, 0.15);
  border-color: #E04E1B;
}

.service-item:hover::before {
  transform: scaleY(1);
}

.checkmark {
  font-size: 1.8em;
  margin-right: 20px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #28a745, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(40, 167, 69, 0.3));
}

.service-content {
  flex: 1;
}

.service-content h3 {
  margin-bottom: 12px;
  color: #E04E1B;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.service-content h3::after {
  display: none; /* Remove underline for service items */
}

.service-content p {
  color: #666;
  line-height: 1.6;
  font-size: 1em;
}

/* Pricing Section */
section.pricing {
  padding: 80px 0;
  background: #f8f9fa;
  overflow: visible;
}

section.pricing .container {
  overflow: visible;
}

/* Session Duration Notice */
.session-duration-notice {
  background: #f8f9fa;
  color: #666;
  padding: 15px 25px;
  border-radius: 8px;
  margin: 0 auto 30px;
  max-width: 700px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e9ecef;
  border-left: 4px solid #E04E1B;
}

.duration-icon {
  font-size: 1.2em;
  flex-shrink: 0;
  color: #E04E1B;
}

.duration-text {
  font-size: 0.95em;
  line-height: 1.4;
  text-align: left;
  flex: 1;
}

.duration-text strong {
  font-size: 1em;
  color: #333;
}

/* Horizontal Scroll Container */
.pricing-scroll-container {
  position: relative;
  margin-bottom: 50px;
}

.pricing-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px 0 40px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.pricing-scroll::-webkit-scrollbar {
  height: 8px;
}

.pricing-scroll::-webkit-scrollbar-track {
  background: #e1e1e1;
  border-radius: 10px;
}

.pricing-scroll::-webkit-scrollbar-thumb {
  background: #E04E1B;
  border-radius: 10px;
}

.pricing-scroll::-webkit-scrollbar-thumb:hover {
  background: #c64215;
}

/* Pricing Cards */
.pricing-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 25px 25px;
  min-width: 340px;
  max-width: 340px;
  min-height: 520px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.08),
    0 4px 15px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(224, 78, 27, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E04E1B, #ff6b47);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.15),
    0 8px 25px rgba(224, 78, 27, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(224, 78, 27, 0.3);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.highlight {
  background: linear-gradient(145deg, #fff9e6 0%, #ffffff 50%, #fff9e6 100%);
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 
    0 12px 35px rgba(255, 193, 7, 0.15),
    0 6px 20px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.pricing-card.highlight::before {
  background: linear-gradient(90deg, #ffc107, #ffdb4d);
  opacity: 1;
}

.pricing-card.best-value {
  background: linear-gradient(145deg, #e8f7ff 0%, #ffffff 50%, #e8f7ff 100%);
  border-color: rgba(23, 162, 184, 0.3);
  box-shadow: 
    0 15px 40px rgba(23, 162, 184, 0.2),
    0 8px 25px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.pricing-card.best-value::before {
  background: linear-gradient(90deg, #17a2b8, #20c997);
  opacity: 1;
}

.pricing-card.best-value:hover {
  transform: translateY(-12px) scale(1.02);
}

.pricing-card.most-popular {
  background: linear-gradient(145deg, #fff0f5 0%, #ffffff 50%, #fff0f5 100%);
  border-color: rgba(255, 20, 147, 0.3);
  box-shadow: 
    0 15px 40px rgba(255, 20, 147, 0.2),
    0 8px 25px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.pricing-card.most-popular::before {
  background: linear-gradient(90deg, #ff1493, #ff69b4);
  opacity: 1;
}

.pricing-card.most-popular:hover {
  transform: translateY(-12px) scale(1.02);
}

.pricing-card.starter {
  background: linear-gradient(145deg, #f0fff0 0%, #ffffff 50%, #f0fff0 100%);
  border-color: rgba(50, 205, 50, 0.3);
  box-shadow: 
    0 12px 35px rgba(50, 205, 50, 0.15),
    0 6px 20px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.pricing-card.starter::before {
  background: linear-gradient(90deg, #32cd32, #90ee90);
  opacity: 1;
}

/* Card Badge */
.card-badge {
  position: absolute;
  top: -8px;
  right: 25px;
  background: linear-gradient(135deg, #E04E1B, #ff4757);
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 6px 20px rgba(224, 78, 27, 0.4),
    0 2px 8px rgba(0,0,0,0.15);
  border: 2px solid rgba(255,255,255,0.9);
  animation: badgePulse 2s ease-in-out infinite;
}

.pricing-card.highlight .card-badge {
  background: linear-gradient(135deg, #ffc107, #ffdb4d);
  color: #333;
  box-shadow: 
    0 6px 20px rgba(255, 193, 7, 0.4),
    0 2px 8px rgba(0,0,0,0.15);
}

.pricing-card.best-value .card-badge {
  background: linear-gradient(135deg, #17a2b8, #20c997);
  box-shadow: 
    0 6px 20px rgba(23, 162, 184, 0.4),
    0 2px 8px rgba(0,0,0,0.15);
}

.pricing-card.most-popular .card-badge {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  box-shadow: 
    0 6px 20px rgba(255, 20, 147, 0.4),
    0 2px 8px rgba(0,0,0,0.15);
}

.pricing-card.starter .card-badge {
  background: linear-gradient(135deg, #32cd32, #90ee90);
  color: #333;
  box-shadow: 
    0 6px 20px rgba(50, 205, 50, 0.4),
    0 2px 8px rgba(0,0,0,0.15);
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Card Content */
.pricing-card h4 {
  color: #2c3e50;
  margin-bottom: 20px;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 15px;
  text-align: center;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card h4::after {
  display: none; /* Remove underline for pricing cards */
}

.pricing-card .price {
  font-size: 2.8em;
  font-weight: 800;
  background: linear-gradient(135deg, #E04E1B, #ff4757);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
  line-height: 1;
  position: relative;
  height: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.pricing-card .price::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E04E1B, #ff4757);
  border-radius: 2px;
}

.pricing-card .price-unit {
  font-size: 0.35em;
  color: #7f8c8d;
  font-weight: 500;
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.savings {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 
    0 4px 15px rgba(40, 167, 69, 0.3),
    0 2px 8px rgba(0,0,0,0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: savingsPulse 3s ease-in-out infinite;
}

.savings-section {
  min-height: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 5px;
}

@keyframes savingsPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3), 0 2px 8px rgba(0,0,0,0.1); }
  50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4), 0 3px 12px rgba(0,0,0,0.15); }
}

.package-details {
  margin: 15px 0;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.package-item {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  padding: 12px 16px;
  margin: 8px 0;
  border-radius: 12px;
  font-size: 0.9em;
  color: #495057;
  border-left: 4px solid #E04E1B;
  box-shadow: 
    0 2px 8px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
}

.package-item:hover {
  transform: translateX(5px);
  box-shadow: 
    0 4px 15px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border-left-color: #ff4757;
}

.pricing-card .inclusions {
  font-size: 0.95em;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 400;
  padding: 12px 0;
  border-top: 1px solid rgba(224, 78, 27, 0.1);
  border-bottom: 1px solid rgba(224, 78, 27, 0.1);
  min-height: 70px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

/* Call to Action Button */
.card-cta {
  background: linear-gradient(135deg, #E04E1B, #ff4757);
  color: #fff;
  padding: 16px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85em;
  box-shadow: 
    0 6px 20px rgba(224, 78, 27, 0.3),
    0 2px 8px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.card-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.card-cta:hover {
  background: linear-gradient(135deg, #c64215, #e63946);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 10px 30px rgba(224, 78, 27, 0.4),
    0 4px 15px rgba(0,0,0,0.2);
}

.card-cta:hover::before {
  left: 100%;
}

.pricing-card.best-value .card-cta {
  background: linear-gradient(135deg, #17a2b8, #20c997);
  box-shadow: 
    0 6px 20px rgba(23, 162, 184, 0.3),
    0 2px 8px rgba(0,0,0,0.15);
}

.pricing-card.best-value .card-cta:hover {
  background: linear-gradient(135deg, #138496, #17a085);
  box-shadow: 
    0 10px 30px rgba(23, 162, 184, 0.4),
    0 4px 15px rgba(0,0,0,0.2);
}

.pricing-card.most-popular .card-cta {
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  box-shadow: 
    0 6px 20px rgba(255, 20, 147, 0.3),
    0 2px 8px rgba(0,0,0,0.15);
}

.pricing-card.most-popular .card-cta:hover {
  background: linear-gradient(135deg, #dc143c, #ff1493);
  box-shadow: 
    0 10px 30px rgba(255, 20, 147, 0.4),
    0 4px 15px rgba(0,0,0,0.2);
}

.pricing-card.starter .card-cta {
  background: linear-gradient(135deg, #32cd32, #90ee90);
  color: #333;
  box-shadow: 
    0 6px 20px rgba(50, 205, 50, 0.3),
    0 2px 8px rgba(0,0,0,0.15);
}

.pricing-card.starter .card-cta:hover {
  background: linear-gradient(135deg, #228b22, #32cd32);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(50, 205, 50, 0.4),
    0 4px 15px rgba(0,0,0,0.2);
}

/* Scroll Indicator */
.scroll-indicator {
  text-align: center;
  margin-top: 20px;
  color: #666;
  font-style: italic;
  animation: pulse 2s infinite;
}

/* Scroll Navigation Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(224, 78, 27, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: none; /* Hidden by default, shown on desktop */
}

.scroll-btn:hover {
  background: rgba(224, 78, 27, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.scroll-btn-left {
  left: 10px;
}

.scroll-btn-right {
  right: 10px;
}

/* Show scroll buttons on desktop only */
@media (min-width: 769px) {
  .scroll-btn {
    display: block;
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Session Inclusions */
.session-inclusions {
  margin-top: 60px;
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

/* Subsection h3 styling - consistent across all sections */
h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2em;
  color: #E04E1B;
  font-weight: bold;
  position: relative;
}

h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #E04E1B, #FF3066);
  border-radius: 2px;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.inclusion-category {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.inclusion-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #E04E1B, #FF3066);
}

.inclusion-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.inclusion-category h4 {
  margin-bottom: 30px;
  color: #E04E1B;
  font-size: 1.4em;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.inclusion-category h4::after {
  display: none; /* Remove underline for inclusion categories */
}

.inclusion-category h4::before {
  content: '';
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #E04E1B, #FF3066);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: white;
  flex-shrink: 0;
}

.inclusion-category:first-child h4::before {
  content: '🏋️';
}

.inclusion-category:last-child h4::before {
  content: '🎯';
}

.inclusion-category ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.inclusion-category li {
  margin-bottom: 15px;
  padding: 12px 0;
  padding-left: 40px;
  position: relative;
  line-height: 1.6;
  font-size: 1.05em;
  color: #555;
  transition: all 0.2s ease;
}

.inclusion-category li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 1.2em;
  transition: transform 0.2s ease;
}

.inclusion-category li:hover {
  color: #333;
  padding-left: 45px;
}

.inclusion-category li:hover::before {
  transform: scale(1.2);
}

.inclusion-category li strong {
  color: #E04E1B;
  font-weight: 600;
}

/* Gallery Section */
section.gallery {
  background: #f9f9f9;
  padding: 80px 0;
}

section.gallery .container {
  overflow: visible;
}

section.gallery p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.2em;
  color: #666;
}

.gallery-scroll-container {
  position: relative;
  margin: 40px 0;
}



.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: thin;
  scrollbar-color: #E04E1B #f1f1f1;
  -webkit-overflow-scrolling: touch;
}

.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: #e1e1e1;
  border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: #E04E1B;
  border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
  background: #c64215;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-shrink: 0;
}

.gallery-item {
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(224, 78, 27, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.gallery-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 80vw;
  max-height: 80vh;
  margin: auto;
  animation: zoomIn 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  background: rgba(224, 78, 27, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(224, 78, 27, 1);
  transform: scale(1.1);
}

#modalImage {
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease;
}

#modalImage:hover {
  transform: scale(1.02);
}

/* Modal Navigation Buttons */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(224, 78, 27, 0.8);
  color: white;
  border: none;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  user-select: none;
}

.modal-nav:hover {
  background: rgba(224, 78, 27, 1);
  transform: translateY(-50%) scale(1.1);
}

.modal-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.modal-nav-prev {
  left: -70px;
}

.modal-nav-next {
  right: -70px;
}

/* Modal Counter */
.modal-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  z-index: 10001;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { 
    opacity: 0;
    transform: scale(0.8);
  }
  to { 
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile modal adjustments */
@media (max-width: 768px) {
  .modal-content {
    max-width: 90vw;
    max-height: 80vh;
  }
  
  #modalImage {
    max-width: 90vw;
    max-height: 80vh;
  }
  
  .modal-close {
    top: -40px;
    font-size: 30px;
    width: 40px;
    height: 40px;
  }
  
  .modal-nav {
    font-size: 25px;
    width: 45px;
    height: 45px;
  }
  
  .modal-nav-prev {
    left: 10px;
  }
  
  .modal-nav-next {
    right: 10px;
  }
  
  .modal-counter {
    bottom: -40px;
    font-size: 13px;
    padding: 6px 12px;
  }

  /* Contact Section Mobile Layout */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Session Duration Notice Mobile */
  .session-duration-notice {
    margin: 0 20px 25px;
    padding: 12px 18px;
    gap: 10px;
  }
  
  .duration-icon {
    font-size: 1.1em;
  }
  
  .duration-text {
    font-size: 0.9em;
  }
  
  .duration-text strong {
    font-size: 0.95em;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .modal-content {
    max-width: 95vw;
    max-height: 75vh;
  }
  
  #modalImage {
    max-width: 95vw;
    max-height: 75vh;
  }
  
  .modal-close {
    top: -35px;
    font-size: 25px;
    width: 35px;
    height: 35px;
  }
  
  .modal-nav {
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
  
  .modal-nav-prev {
    left: 5px;
  }
  
  .modal-nav-next {
    right: 5px;
  }
  
  .modal-counter {
    bottom: -35px;
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* Testimonials Section */
section.testimonials {
  padding: 80px 0;
  background: #fff;
  overflow: visible;
}

section.testimonials .container {
  overflow: visible;
}

/* Testimonials Horizontal Scroll */
.testimonials-scroll-container {
  position: relative;
  margin-bottom: 50px;
}

.testimonials-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px 0 40px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonials-scroll::-webkit-scrollbar {
  height: 8px;
}

.testimonials-scroll::-webkit-scrollbar-track {
  background: #e1e1e1;
  border-radius: 10px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: #E04E1B;
  border-radius: 10px;
}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
  background: #c64215;
}

.testimonial {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #E04E1B;
  min-width: 350px;
  max-width: 350px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border-left-color: #FF3066;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial cite {
  font-weight: bold;
  color: #E04E1B;
  margin-top: auto;
}

/* Contact Section */
section.contact {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

/* Hide contact content by default - highest priority */
#contact-content {
  display: none !important;
}

/* Show contact content when revealed */
#contact-content.revealed {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 50px !important;
  align-items: start !important;
}

/* Force 2-column layout on desktop - highest priority */
@media screen and (min-width: 769px) {
  #contact-content.revealed {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    align-items: start !important;
  }
}

/* Mobile layout override */
@media (max-width: 768px) {
  #contact-content.revealed {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 100%;
}

.contact-details {
  text-align: center;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border: 1px solid rgba(224, 78, 27, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
}

.contact-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E04E1B, #FF3066);
}

.contact-details:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.contact-details h3 {
  color: #E04E1B;
  margin-bottom: 30px;
  font-size: 1.8em;
  font-weight: bold;
  position: relative;
}

.contact-details p {
  margin-bottom: 20px;
  font-size: 1.1em;
  padding: 12px 20px;
  background: rgba(224, 78, 27, 0.05);
  border-radius: 8px;
  border-left: 4px solid #E04E1B;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-details p:hover {
  background: rgba(224, 78, 27, 0.1);
  transform: translateX(5px);
}

.contact-details a {
  color: #E04E1B;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: #FF3066;
  text-decoration: underline;
}

.contact-form {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border: 1px solid rgba(224, 78, 27, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E04E1B, #FF3066);
}

.contact-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.contact-form h3 {
  color: #E04E1B;
  margin-bottom: 30px;
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  margin-bottom: 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #E04E1B;
  box-shadow: 0 4px 15px rgba(224, 78, 27, 0.15);
  transform: translateY(-2px);
}

.contact-form .g-recaptcha {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.contact-form .g-recaptcha > div {
  width: 100% !important;
  max-width: 304px;
  margin: 0 auto;
}

.contact-form button {
  background: linear-gradient(135deg, #E04E1B, #FF3066);
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: block;
  margin: 20px auto 0;
  box-shadow: 0 6px 20px rgba(224, 78, 27, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.contact-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #c64215, #e63946);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(224, 78, 27, 0.4);
}

.contact-form button:hover::before {
  left: 100%;
}

.contact-form button:active {
  transform: translateY(-1px);
}

#status {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}

/* Contact Info CAPTCHA Section */
#contact-captcha-section {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  border: 2px solid #E04E1B;
}

#contact-captcha-section h3 {
  color: #E04E1B;
  margin-bottom: 15px;
  font-size: 1.5em;
}

#contact-captcha-section p {
  margin-bottom: 25px;
  color: #666;
  font-size: 1.1em;
}

#contact-captcha-section .g-recaptcha {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}



/* Booking Message Styles */
#booking-message {
  animation: slideDown 0.5s ease-out;
}

#booking-message h4 {
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form CAPTCHA Section */
#form-captcha-section {
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
  padding: 25px 20px;
  border-radius: 10px;
  border: 2px solid #E04E1B;
  margin-top: 20px;
  text-align: center;
}

#form-captcha-section h4 {
  color: #E04E1B;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 600;
}

#form-captcha-section .g-recaptcha {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

#send-message-btn {
  background: #E04E1B;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  opacity: 0.5;
  cursor: not-allowed;
  width: 100%;
}

#send-message-btn:not(:disabled) {
  opacity: 1;
  cursor: pointer;
}

#send-message-btn:not(:disabled):hover {
  background: #c64215;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 78, 27, 0.3);
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

/* Mid-width screens - Tablet/Small Desktop adjustments */
@media (max-width: 1199px) and (min-width: 769px) {
  .container {
    width: 85%;
  }
  
  /* Hero text scaling for mid-width screens */
  .hero-content h1 {
    font-size: 70px;
  }
  
  .hero-content p {
    font-size: 32px;
  }
  
  /* About section matches facilities width - 800px for mid-screens */
  section.about p {
    max-width: 800px;
    margin: 0 auto;
    padding: 35px 40px;
  }
  
  /* Services section matches facilities width - 800px for mid-screens */
  .services-list {
    max-width: 800px;
  }
}

/* Tablet breakpoint for smoother hero text transitions */
@media (max-width: 1000px) and (min-width: 769px) {
  .hero-content h1 {
    font-size: 60px;
  }
  
  .hero-content p {
    font-size: 28px;
  }
}

/* Mobile/Tablet Responsive - Switch to mobile menu for anything smaller than standard desktop */
@media (max-width: 1350px) {
  .container {
    width: 90%;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
  }

  nav.active {
    display: block;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }

  .logo {
    flex: 0 0 auto;
  }

  .logo img {
    height: 75px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 0 0 auto;
  }

  .menu-toggle:hover {
    background: rgba(224, 78, 27, 0.1);
    transform: scale(1.05);
  }

  .menu-toggle.active {
    background: linear-gradient(135deg, #E04E1B, #FF3066);
    box-shadow: 0 4px 15px rgba(224, 78, 27, 0.3);
  }

  .menu-label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .menu-toggle.active .menu-label {
    color: #fff;
  }

  .btn-join {
    flex: 0 0 auto;
  }

  nav {
    width: 80%;
    max-width: 400px;
    display: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 10px auto 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    z-index: 999;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 10%;
    right: 10%;
  }

  nav ul {
    flex-direction: column;
    padding: 15px 0;
    background: transparent;
    margin: 0;
  }

  nav ul li {
    text-align: center;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    transition: width 0.3s ease;
  }

  nav ul li:hover::before {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 14px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  nav ul li a::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.3);
    transition: width 0.3s ease;
    border-radius: 1px;
  }

  nav ul li a:hover {
    color: #333;
    transform: translateY(-2px);
  }

  nav ul li a:hover::before {
    width: 60%;
  }

  nav.active {
    display: block !important;
    animation: slideDown 0.4s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Mobile menu backdrop */
  .nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    transition: all 0.4s ease;
  }

  .nav-backdrop.active {
    display: block;
    opacity: 1;
  }

  .hero {
    background: url('images/danica_in_gym_bg.jpg') no-repeat center top/cover;
    height: calc(100vh - 105px);
    padding-left: 5%;
    text-align: center;
    background-attachment: scroll;
    margin-top: 105px;
  }

  .hero-content h1 {
    font-size: 55px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 26px;
  }

  section {
    padding-top: 140px;
    padding-bottom: 60px;
    scroll-margin-top: 120px; /* Offset for fixed header when scrolling to anchor on mobile */
  }

  section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  /* About Section Mobile */
  section.about {
    padding: 80px 0;
  }

  section.about h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
  }

  section.about h2::after {
    width: 60px;
    height: 3px;
    bottom: -12px;
  }

  section.about p {
    font-size: 1.1em;
    line-height: 1.7;
    padding: 30px 25px;
    margin: 0 auto;
    max-width: 95%;
    border-radius: 15px;
  }

  section.about p::after {
    font-size: 1.5em;
    top: -18px;
    right: -10px;
    padding: 12px;
  }

  /* Facilities Mobile */
  section.facilities {
    padding: 60px 0;
  }

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

  .facility-item {
    padding: 25px 20px;
  }

  .facility-icon {
    font-size: 2.5em;
  }

  /* Services Mobile */
  section.services {
    padding: 60px 0;
  }

  .services-list {
    max-width: 100%;
    padding: 0 15px;
  }

  .service-item {
    flex-direction: row;
    align-items: center;
    padding: 20px 18px;
    margin-bottom: 18px;
    border-radius: 12px;
  }

  .service-item::before {
    width: 3px;
  }

  .checkmark {
    font-size: 1.6em;
    margin-right: 15px;
    margin-bottom: 0;
  }

  .service-content h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
  }

  .service-content p {
    font-size: 0.95em;
    line-height: 1.5;
  }

  /* Pricing Mobile - Horizontal Scroll */
  section.pricing {
    padding: 60px 0;
  }

  .pricing-scroll {
    gap: 20px;
    padding: 15px 0 30px 0;
  }

  .pricing-card {
    min-width: 300px;
    max-width: 300px;
    min-height: 480px;
    padding: 20px 20px;
    border-radius: 18px;
  }

  .pricing-card.best-value:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .pricing-card.most-popular:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .pricing-card.starter:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .pricing-card:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .pricing-card h4 {
    font-size: 1.2em;
    margin-bottom: 12px;
    margin-top: 10px;
    height: 70px;
  }

  .pricing-card .price {
    font-size: 2.2em;
    margin: 12px 0;
    height: 65px;
  }

  .pricing-card .price::after {
    width: 50px;
    height: 2px;
    bottom: -6px;
  }

  .pricing-card .price-unit {
    font-size: 0.4em;
    margin-top: 6px;
  }

  .card-badge {
    font-size: 0.7em;
    padding: 8px 14px;
    top: -6px;
    right: 20px;
    border-radius: 20px;
  }

  .package-item {
    padding: 10px 14px;
    font-size: 0.85em;
    margin: 6px 0;
    border-radius: 10px;
  }

  .pricing-card .inclusions {
    font-size: 0.9em;
    margin-bottom: 20px;
    padding: 10px 0;
    min-height: 60px;
  }

  .card-cta {
    padding: 14px 25px;
    font-size: 0.8em;
    border-radius: 25px;
  }

  .scroll-indicator {
    font-size: 0.9em;
    margin-top: 15px;
  }

  /* Session Inclusions Mobile */
  .session-inclusions {
    margin-top: 40px;
    padding: 30px 15px;
    border-radius: 15px;
  }

  .session-inclusions h3 {
    font-size: 1.8em;
    margin-bottom: 35px;
  }

  .session-inclusions h3::after {
    width: 60px;
    height: 3px;
    bottom: -12px;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: none;
  }

  .inclusion-category {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .inclusion-category h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    gap: 12px;
  }

  .inclusion-category h4::before {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }

  .inclusion-category li {
    font-size: 0.95em;
    margin-bottom: 12px;
    padding: 10px 0;
    padding-left: 35px;
  }

  .inclusion-category li::before {
    font-size: 1.1em;
    top: 10px;
  }

  .inclusion-category li:hover {
    padding-left: 38px;
  }

  /* Gallery Mobile - Horizontal Scroll */
  section.gallery {
    padding: 60px 0;
  }

  .gallery-scroll {
    gap: 15px;
    padding: 15px 0 30px 0;
  }

  .gallery-item {
    width: 250px;
    height: 170px;
  }

  /* Testimonials Mobile - Horizontal Scroll */
  section.testimonials {
    padding: 60px 0;
  }



  .testimonials-scroll {
    gap: 20px;
    padding: 15px 0 30px 0;
  }

  .testimonial {
    min-width: 280px;
    max-width: 280px;
    padding: 20px;
  }

  .testimonial p {
    font-size: 0.95em;
  }

  /* Contact Mobile */
  section.contact {
    padding: 60px 0;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-form h3,
  .contact-details h3 {
    font-size: 1.5em;
    margin-bottom: 25px;
  }

  .contact-details {
    padding: 30px 20px;
  }

  .contact-details p {
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: 1em;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
  }

  .contact-form button {
    padding: 14px 35px;
    font-size: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 16px; /* Prevent zoom on iOS */
  }

  /* Contact CAPTCHA section mobile styles */
  #contact-captcha-section {
    padding: 30px 20px;
  }

  #contact-captcha-section h3 {
    font-size: 1.3em;
  }

  #contact-captcha-section p {
    font-size: 1em;
  }

  /* Booking message mobile styles */
  #booking-message div {
    padding: 15px !important;
    margin-bottom: 15px !important;
  }

  #booking-message h4 {
    font-size: 1.1em !important;
    margin-bottom: 8px !important;
  }

  #booking-message p {
    font-size: 0.9em !important;
  }

  /* Form CAPTCHA section mobile styles */
  #form-captcha-section {
    padding: 20px 15px;
    margin-top: 15px;
  }

  #form-captcha-section h4 {
    font-size: 1.1em;
    margin-bottom: 15px;
  }

  #send-message-btn {
    padding: 12px 25px;
    font-size: 15px;
  }
}

/* Medium mobile screens - start shrinking elements */
@media (max-width: 600px) {
  .logo img {
    height: 65px;
  }

  .menu-toggle {
    padding: 6px 12px;
  }

  .menu-label {
    font-size: 12px;
  }

  .btn-join {
    font-size: 13px;
    padding: 8px 16px;
  }
  
  /* Hero text for small tablets/large phones */
  .hero-content h1 {
    font-size: 45px;
  }
  
  .hero-content p {
    font-size: 22px;
  }
}

/* Small mobile screens */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 10px;
  }

  .logo img {
    height: 55px;
  }

  .menu-toggle {
    padding: 4px 8px;
  }

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

  .btn-join {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .nav-container {
    padding: 0 5px;
  }

  .logo img {
    height: 50px;
  }

  .menu-toggle {
    padding: 3px 6px;
  }

  .menu-label {
    font-size: 9px;
  }

  .btn-join {
    font-size: 10px;
    padding: 4px 8px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 18px;
  }

  nav ul li a {
    font-size: 15px;
    padding: 12px 20px;
  }

  /* About Extra Small */
  section.about h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  section.about h2::after {
    width: 50px;
    height: 2px;
    bottom: -10px;
  }

  section.about p {
    font-size: 1em;
    line-height: 1.6;
    padding: 25px 20px;
    margin: 0 10px;
    border-radius: 12px;
  }

  section.about p::after {
    font-size: 1.3em;
    top: -15px;
    right: -8px;
    padding: 10px;
  }

  /* Services Extra Small */
  .services-list {
    padding: 0 10px;
  }

  .service-item {
    padding: 16px 14px;
    margin-bottom: 15px;
    border-radius: 10px;
  }

  .checkmark {
    font-size: 1.4em;
    margin-right: 12px;
  }

  .service-content h3 {
    font-size: 1.1em;
    margin-bottom: 6px;
  }

  .service-content p {
    font-size: 0.9em;
    line-height: 1.4;
  }
}

/* Mobile-specific hero background image */
@media (max-width: 768px) {
  .hero {
    background: url('images/danica_in_gym_bg2.jpg') no-repeat center top/cover !important;
  }
}

/* Mobile hero section adjustments to fix header gap */
@media (max-width: 1350px) {
  .hero {
    margin-top: 95px !important;
    height: calc(100vh - 95px) !important;
  }
}

/* iPhone and smaller mobile devices */
@media (max-width: 600px) {
  .hero {
    margin-top: 85px !important;
    height: calc(100vh - 85px) !important;
  }
}

/* Small iPhone sizes */
@media (max-width: 480px) {
  .hero {
    margin-top: 75px !important;
    height: calc(100vh - 75px) !important;
  }
}

/* Very small iPhone sizes */
@media (max-width: 360px) {
  .hero {
    margin-top: 70px !important;
    height: calc(100vh - 70px) !important;
  }
}
