/* Global Styles */
:root {
  --primary-dark: #0a0a0a;
  --secondary-dark: #1a1a1a;
  --accent-red: #e63946;
  --accent-red-light: #f28b82;
  --text-light: #f5f5f5;
  --text-gray: #b0b0b0;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--primary-dark);
  color: var(--text-light);
  line-height: 1.6;
  padding-top: 80px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: var(--text-light);
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  line-height: 1;
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
}

.btn-primary:hover {
  background-color: var(--accent-red-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-red);
  border: 2px solid var(--accent-red);
}

.btn-secondary:hover {
  background-color: var(--accent-red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-red);
  border: 1px solid var(--accent-red);
}

.btn-outline:hover {
  background-color: var(--accent-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.2);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-red);
  border-radius: 2px;
}

/* Header & Navigation - NORMAL DESIGN ON DESKTOP */
header {
  background-color: transparent;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  min-width: 300px; /* Ensure minimum width on small screens */
  position: fixed;
  top: 0;
  left: 0;
}

header.scrolled {
  background-color: rgba(10, 10, 10, 0.95);
}

/* Make navbar static on mobile */
@media (max-width: 768px) {
  header {
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: none;
    border: none;
    background-color: rgba(10, 10, 10, 0.98);
  }

  header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
  }
}

/* Improved responsiveness for tablets/small desktops (769px to 825px) */
@media (min-width: 769px) and (max-width: 825px) {
  header {
    width: 100%;
    /* top: 15px; */
  }

  .navbar {
    padding: 0.6rem 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
    justify-content: space-around; /* Better distribution of space */
  }

  .logo-img {
    height: 50px;
  }

  .join-now-btn {
    padding: 0.8em 1.5em;
    font-size: 0.85rem;
    margin-left: 0.8rem;
  }

  .join-now-btn .arrow-wrapper {
    margin-left: 0.3em;
  }
}

/* Additional refinement for small desktops (826px to 992px) */
@media (min-width: 826px) and (max-width: 992px) {
  .nav-links {
    gap: 1.8rem;
  }

  .join-now-btn {
    padding: 0.9em 1.6em;
    font-size: 0.88rem;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 2rem;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
}

.join-now-btn {
  margin: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .join-now-btn {
    display: none;
  }
}

.logo a {
  display: flex;
  align-items: center;
}

.logo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--accent-red), #f28b82);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-img {
  height: 60px;
  width: auto;
}

.logo span {
  color: var(--accent-red);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  flex: 1;
  margin: 0 auto;
}

.nav-links li a {
  display: flex;
  justify-content: center;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-red);
  transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent-red);
}

/* Join Button in Navbar */
.join-now-btn {
  padding: 8px 20px;
  font-size: 0.9rem;
  align-self: center;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s background;
}

.join-now-btn:hover {
  background-color: var(--hover-color);
}

.join-now-btn:hover .arrow {
  background: var(--secondary-color);
}

.join-now-btn:hover .arrow:before {
  right: 0;
}

.nav-links li .btn {
  padding: 8px 20px;
  font-size: 0.9rem;
  margin-left: 1rem;
  align-self: center;
}

.nav-links li .btn-primary {
  color: white;
  text-decoration: none;
}

.nav-links li .btn-primary:hover {
  background-color: var(--accent-red-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
}

.nav-links li .btn::after {
  display: none;
}

/* Custom Arrow Button */
button {
  --primary-color: #e63946; /* Site's primary color */
  --secondary-color: #fff;
  --hover-color: #111;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 20px;
  color: var(--secondary-color);
  padding: 1em 1.8em;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
  cursor: pointer;
  margin: 0;
  white-space: nowrap; /* Prevent text wrapping */
}

button .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

button .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

button .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

button:hover {
  background-color: var(--hover-color);
}

button:hover .arrow {
  background: var(--secondary-color);
}

button:hover .arrow:before {
  right: 0;
}

.hamburger {
  display: none;
  cursor: pointer;
  position: relative;
  width: 24px;
  height: 18px;
  z-index: 1001;
  align-self: center;
}

.hamburger .line {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--accent-red);
  border-radius: 1px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}

.hamburger .line:nth-child(1) {
  transform: translateY(0);
}

.hamburger .line:nth-child(2) {
  margin: 5px 0;
}

.hamburger .line:nth-child(3) {
  transform: translateY(0);
}

/* Active state (close icon) */
.hamburger.active .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section - ENHANCED PROFESSIONAL DESIGN */
.hero {
  height: 100vh;
  /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80'); */
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./images//gym-images/gym-4.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  margin-top: -80px; /* Compensate for fixed navbar */
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(to right, var(--white), var(--accent-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  color: var(--text-gray);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  width: 100%;
}

/* Hero height classes removed as all heroes now use full height */

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--primary-dark);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Classes Section */
.classes {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.class-card {
  background-color: var(--secondary-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.class-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.class-image {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.class-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.class-card:hover .class-image img {
  transform: scale(1.1);
}

.class-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.class-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent-red);
}

.class-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.class-info p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.class-info .btn {
  margin-top: auto;
}

/* Gallery Section */
.gallery {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Membership Section */
.membership {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.membership-card {
  background-color: var(--secondary-dark);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.membership-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.membership-card.featured {
  border: 2px solid var(--accent-red);
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.3);
}

.membership-card.featured:hover {
  transform: scale(1.08);
}

.membership-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent-red);
}

/* MRP (ink) and Offer (yellow) styling used in new pricing HTML */
.price-row {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.4rem;
  justify-content: flex-start;
  padding: 0.3rem 0;
}

.price-row .mrp {
  color: var(--text-gray);
  text-decoration: line-through;
  font-weight: 300;
  font-size: 0.85rem;
  opacity: 0.6;
  align-self: center;
}

.price-row .offer {
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--accent-red);
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 0.85rem;
  display: inline-block;
  letter-spacing: -0.01em;
}

/* tiny responsive tweak so the price-row wraps nicely on small screens */
/* =======================
   MOBILE PRICING FIX
======================= */
@media (max-width: 480px) {
  .pricing-card {
    padding: 1.25rem;
  }

  .pricing-card ul li {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
  }

  .pricing-card ul li strong {
    font-size: 0.9rem;
    color: #ddd;
  }

  .price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .price-row .mrp {
    font-size: 0.75rem;
    color: #888;
    text-decoration: line-through;
  }

  .price-row .offer {
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: rgba(230, 57, 70, 0.15);
    color: var(--accent-red);
    font-weight: 600;
  }

  .price {
    font-size: 1.4rem;
  }

  .price span {
    font-size: 0.8rem;
  }

  .btn {
    width: 100%;
    text-align: center;
    margin-top: 0.75rem;
  }
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.price span {
  font-size: 1rem;
  color: var(--text-gray);
}

.membership-card ul {
  margin: 2rem 0;
}

.membership-card ul li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-card ul li:last-child {
  border-bottom: none;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--primary-dark);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:hover {
  border: 1px solid var(--accent-red);
}

.rating {
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

.client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

/* Trainers Page Styles */
.trainers {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.trainer-card {
  background-color: var(--primary-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.trainer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.trainer-image {
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-dark);
}

.trainer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.trainer-card:hover .trainer-image img {
  transform: scale(1.1);
}

.trainer-card:hover .trainer-placeholder {
  background-color: var(--secondary-dark);
}

.trainer-card:hover .trainer-placeholder i {
  transform: scale(1.1);
  transition: var(--transition);
}

.trainer-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
}

.trainer-placeholder i {
  font-size: 3.5rem;
  color: var(--accent-red);
  transition: var(--transition);
}

.trainer-info {
  padding: 2rem 1.5rem;
}

.trainer-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--accent-red);
  font-weight: 700;
  letter-spacing: 1px;
}

.trainer-role {
  color: var(--accent-red);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.trainer-bio {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Specialties Section */
.specialties {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.specialty-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--secondary-dark);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.specialty-icon {
  font-size: 3rem;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.specialty-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Certifications Section */
.certifications {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.cert-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--primary-dark);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.cert-icon {
  font-size: 3rem;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.cert-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Booking Section */
.booking {
  padding: 5rem 0;
  background: linear-gradient(to right, var(--accent-red), #f28b82);
  text-align: center;
}

.booking-content {
  max-width: 700px;
  margin: 0 auto;
}

.booking-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.booking-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent-red), #f28b82);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background-color: var(--secondary-dark);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--accent-red), #f28b82);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-col h3 span {
  color: var(--accent-red);
}

.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
  color: var(--accent-red);
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-red);
}

.footer-col p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons.footer-social-icons {
  display: flex;
  justify-content: start;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-dark);
  color: var(--accent-red);
  transition: var(--transition);
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.social-icons a:hover {
  background-color: var(--accent-red);
  color: var(--white);
  transform: translateY(-5px);
  border: 1px solid var(--accent-red);
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul li a {
  color: var(--text-gray);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-red);
  padding-left: 5px;
}

.hours li,
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--text-gray);
}

.hours li i,
.contact-info li i {
  color: var(--accent-red);
  margin-top: 5px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .membership-card.featured {
    transform: scale(1.03);
  }

  .membership-card.featured:hover {
    transform: scale(1.06);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .contact-map-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-enhanced .form-row {
    grid-template-columns: 1fr;
  }

  .overview-content {
    grid-template-columns: 1fr;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .training-content {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Classes Section Responsive Improvements */
  .class-image {
    height: 180px;
  }

  .class-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 0;
  }

  header {
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: none;
    border: none;
    background-color: rgba(10, 10, 10, 0.98);
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--secondary-dark);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    left: 0;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-grid,
  .leadership-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .categories-grid,
  .classes-grid,
  .values-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  /* Classes Section Mobile Improvements */
  .class-image {
    height: 220px;
  }

  .class-info {
    padding: 1.25rem;
  }

  .class-info h3 {
    font-size: 1.3rem;
  }

  .class-meta {
    font-size: 0.85rem;
  }

  /* Responsive styles for the arrow button */
  button {
    margin: 1rem 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-buttons {
    gap: 0.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  /* Classes Section Small Screen Improvements */
  .class-image {
    height: 180px;
  }

  .class-info {
    padding: 1rem;
  }

  .class-info h3 {
    font-size: 1.2rem;
  }

  .class-meta {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .membership-card.featured {
    transform: scale(1);
  }

  .membership-card.featured:hover {
    transform: scale(1.03);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: scale(1.03);
  }

  /* Pricing Card Improvements */
  .pricing-card {
    padding: 1.8rem 1.2rem;
    border-radius: 10px;
  }

  .pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
  }

  .price {
    font-size: 2.1rem;
    margin-bottom: 1.3rem;
  }

  .pricing-card ul {
    margin-bottom: 1.3rem;
    padding: 0 0.2rem;
  }

  .pricing-card ul li {
    margin-bottom: 0.7rem;
    padding-left: 1.3rem;
    font-size: 0.92rem;
  }

  /* Leader Card Improvements */
  .leader-card img {
    max-width: 200px;
  }

  /* Classes Section Extra Small Screen Improvements */
  .class-image {
    height: 160px;
  }

  .class-info p {
    font-size: 0.9rem;
  }
}

/* Stats Section */
.stats {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-gray);
  font-size: 1.1rem;
}

/* Values Section */
.values {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--primary-dark);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.value-icon {
  font-size: 3rem;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.value-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Marquee Section */
.marquee-section {
  padding: 2rem 0;
  background-color: var(--primary-dark);
  overflow: hidden;
  position: relative;
}

.marquee-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-red),
    transparent
  );
}

.marquee-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-red),
    transparent
  );
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-gray);
  white-space: nowrap;
}

.marquee-item i {
  color: var(--accent-red);
  font-size: 1.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design for Marquee */
@media (max-width: 768px) {
  .marquee-item {
    padding: 0 1.5rem;
    font-size: 1rem;
  }

  .marquee-item i {
    font-size: 1.2rem;
  }

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
}

.story {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 992px) {
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .story-content {
    gap: 1.5rem;
  }
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.story-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--accent-red);
  border-radius: 2px;
}

.story-text h3 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--accent-red);
}

.story-text p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.milestones {
  margin-top: 2rem;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--accent-red);
}

.milestone {
  position: relative;
  margin-bottom: 2rem;
}

.milestone:last-child {
  margin-bottom: 0;
}

.milestone::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-red);
  border: 2px solid var(--primary-dark);
}

.milestone-year {
  font-weight: bold;
  color: var(--accent-red);
  margin-bottom: 0.5rem;
}

.milestone-desc {
  color: var(--text-gray);
}

.story-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(230, 57, 70, 0.1);
}

.founded-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--secondary-dark);
  border-radius: 10px;
  border-left: 4px solid var(--accent-red);
}

.founded-info h3 {
  color: var(--accent-red);
  margin-bottom: 1rem;
}

.founded-info p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.mv-card {
  text-align: center;
  padding: 2.5rem;
  background-color: var(--secondary-dark);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  border: 1px solid var(--accent-red);
}

.mv-icon {
  font-size: 2.5rem;
  color: var(--accent-red);
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.mv-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* Leadership Section */
.leadership {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.leader-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--primary-dark);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.leader-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--accent-red);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.leader-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.leader-title {
  color: var(--accent-red);
  font-style: italic;
  margin-bottom: 1rem;
}

.leader-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Services Overview Section */
.services-overview {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.overview-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.overview-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--accent-red);
  border-radius: 2px;
}

.overview-text h3 {
  font-size: 1.8rem;
  margin: 2rem 0 1.5rem;
  color: var(--accent-red);
}

.overview-text p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
}

.benefit-icon {
  color: var(--accent-red);
  font-size: 1.2rem;
  margin-top: 0.3rem;
}

.benefit-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.benefit-item p {
  margin: 0;
  font-size: 0.95rem;
}

.overview-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(230, 57, 70, 0.1);
}

@media (max-width: 768px) {
  .overview-content {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .overview-text h2 {
    font-size: 2rem;
  }

  .overview-text h3 {
    font-size: 1.5rem;
  }
}

/* Personal Training Section */
.personal-training {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.training-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.training-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  color: var(--white);
}

.training-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--accent-red);
  border-radius: 2px;
}

.training-text p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
}

.training-text ul {
  margin: 1.5rem 0;
}

.training-text ul li {
  margin-bottom: 1rem;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.training-text ul li i {
  color: var(--accent-red);
}

.training-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(230, 57, 70, 0.1);
}

@media (max-width: 768px) {
  .training-content {
    grid-template-columns: 1fr;
  }
}
.services-categories {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  padding: 2rem;
  background-color: var(--secondary-dark);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.category-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  border: 1px solid var(--accent-red);
  font-size: 1.8rem;
  color: var(--accent-red);
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.category-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.category-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
}

.category-card ul li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.category-card ul li::before {
  content: "•";
  color: var(--accent-red);
  position: absolute;
  left: 0;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}
.facilities {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.facility-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: var(--secondary-dark);
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.facility-image {
  position: relative;
  overflow: hidden;
}

.facility-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.facility-card:hover .facility-image img {
  transform: scale(1.05);
}

.facility-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-red);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.facility-info {
  padding: 1.5rem;
}

.facility-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.facility-info p {
  color: var(--text-gray);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.facility-info ul {
  margin-bottom: 1.5rem;
}

.facility-info ul li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.facility-info ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--accent-red);
  border-radius: 50%;
}

.facility-info ul li i {
  color: var(--accent-red);
  margin-right: 0.5rem;
}

.group-classes {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.class-card {
  background-color: var(--primary-dark);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.class-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.class-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  border: 1px solid var(--accent-red);
  font-size: 1.5rem;
  color: var(--accent-red);
}

.class-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.class-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.class-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.class-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.class-meta i {
  color: var(--accent-red);
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background-color: var(--primary-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  padding: 2rem 1.5rem;
  background-color: var(--primary-dark);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  background: rgba(20, 20, 20, 0.7);
}

.pricing-card.featured {
  border: 1px solid var(--accent-red);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  background: rgba(25, 25, 25, 0.8);
}

.pricing-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(230, 57, 70, 0.25);
}

.pricing-card.featured::before {
  content: "POPULAR";
  position: absolute;
  top: 12px;
  right: -25px;
  background-color: var(--accent-red);
  color: var(--white);
  padding: 0.2rem 1.5rem;
  transform: rotate(45deg);
  font-size: 0.7rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.price {
  font-size: 2.3rem;
  font-weight: 400;
  color: var(--accent-red);
  margin-bottom: 1.6rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.rupee-icon {
  width: 25px;
  height: 25px;
}

.rupee-red-small-icon {
  width: 10px;
  height: 10px;
}

.price span {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 400;
}

.pricing-card ul {
  margin-bottom: 1.5rem;
  text-align: left;
  padding: 0 0.5rem;
}

.pricing-card ul li {
  color: var(--text-gray);
  margin-bottom: 0.9rem;
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.pricing-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-red);
}

/* Contact Info Section */
.contact-info-section {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: var(--primary-dark);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  border: 1px solid var(--accent-red);
}

.contact-icon-large {
  font-size: 2.5rem;
  color: var(--accent-red);
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Contact & Map Section */
.contact-form-map {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--secondary-dark) 100%
  );
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
}

.contact-form-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(230, 57, 70, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Enhanced layout for form and map side by side */
.contact-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

/* Enhanced Map Card */
.enhanced-map-card {
  background: linear-gradient(145deg, var(--secondary-dark) 0%, #121212 100%);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(230, 57, 70, 0.15);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.enhanced-map-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), #f28b82);
}

.enhanced-map-card:hover {
  transform: translateY(-5px);
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.map-header {
  margin-bottom: 2rem;
  text-align: center;
}

.map-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.map-header h3 i {
  color: var(--accent-red);
}

.map-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.opening-hours {
  margin-bottom: 2rem;
}

.opening-hours h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.opening-hours h4 i {
  color: var(--accent-red);
}

.opening-hours ul {
  list-style: none;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-gray);
}

.opening-hours li:last-child {
  border-bottom: none;
}

.opening-hours .day {
  font-weight: 500;
  color: var(--white);
}

.opening-hours .time {
  color: var(--accent-red);
  font-weight: 600;
}

.contact-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-actions .btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-actions .btn i {
  font-size: 1.1rem;
}

/* Enhanced Contact Form Card */
.contact-card.dark {
  background: linear-gradient(145deg, var(--secondary-dark) 0%, #121212 100%);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(230, 57, 70, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-card.dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), #f28b82);
}

.contact-card.dark:hover {
  transform: translateY(-5px);
  border: 1px solid rgba(230, 57, 70, 0.3);
}

/* Ensure both form and map have same height in side-by-side layout */
.contact-card.dark,
.enhanced-map-card {
  height: 100%;
}

@media (max-width: 768px) {
  .contact-form-map {
    padding: 3rem 0;
  }

  .contact-map-wrapper {
    grid-template-columns: 1fr;
  }

  .enhanced-map-card {
    padding: 1.8rem;
  }

  .contact-card.dark {
    padding: 1.8rem;
  }

  .map-container {
    height: 200px;
  }

  .contact-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .map-header h3 {
    font-size: 1.6rem;
  }

  .map-header p {
    font-size: 1rem;
  }

  .opening-hours h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .contact-form-map {
    padding: 2rem 0;
  }

  .enhanced-map-card {
    padding: 1.5rem;
  }

  .contact-card.dark {
    padding: 1.5rem;
  }

  .contact-actions .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .contact-card h2 {
    font-size: 1.7rem;
  }

  .map-header h3 {
    font-size: 1.5rem;
  }

  .opening-hours h4 {
    font-size: 1.2rem;
  }
}

.contact-form-enhanced label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 500;
}

.contact-form-enhanced input,
.contact-form-enhanced select,
.contact-form-enhanced textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form-enhanced input:focus,
.contact-form-enhanced select:focus,
.contact-form-enhanced textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.contact-form-enhanced textarea {
  resize: vertical;
  min-height: 150px;
}
/* Contact section styles removed since form is now integrated with map section */

.contact-card h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.contact-card p {
  text-align: center;
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Form styling for better appearance */
.contact-card form {
  width: 100%;
}

.contact-card .form-group {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent-red);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-submit:hover {
  background: #c92d39;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

/* Mobile */
@media (max-width: 480px) {
  .contact-form-map {
    padding: 2rem 0;
  }

  .contact-map-wrapper {
    gap: 1.5rem;
  }

  .enhanced-map-card {
    padding: 1.5rem;
  }

  .contact-card.dark {
    padding: 1.5rem;
  }

  .contact-card h2 {
    font-size: 1.8rem;
  }

  .contact-card p {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 0.9rem;
    font-size: 1rem;
  }

  .map-header h3 {
    font-size: 1.5rem;
  }

  .opening-hours h4 {
    font-size: 1.2rem;
  }

  .contact-actions .btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Newsletter Section */
.newsletter {
  padding: 5rem 0;
  background-color: var(--primary-dark);
  text-align: center;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.newsletter-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--secondary-dark);
  color: var(--white);
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* Support Section */
.support {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.support-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--primary-dark);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(230, 57, 70, 0.2);
  border: 1px solid var(--accent-red);
}

.support-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: rgba(230, 57, 70, 0.1);
  border-radius: 50%;
  border: 1px solid var(--accent-red);
  font-size: 1.8rem;
  color: var(--accent-red);
}

.support-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.support-card p {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Enhanced Gym-Themed Intro Overlay with Cycling */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(230, 57, 70, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 2s ease-in-out infinite;
}

.intro-overlay.hide {
  opacity: 0;
  visibility: hidden;
}

.intro-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  padding: 1rem;
  box-sizing: border-box;
}

/* Logo Loader */
.logo-loader {
  width: 160px;
  height: 160px;
  display: block;
  /* margin: 2rem auto; */
  position: relative;
  box-sizing: border-box;
}

.loader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Loader Text */
.loader-text {
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.loading-title {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2em;
  animation: fadeInUp 0.8s ease-out forwards;
  text-transform: uppercase;
}

.loading-subtitle {
  display: block;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--accent-red);
  letter-spacing: 0.1em;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
  text-transform: uppercase;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Progress Bar */
.progress-bar {
  width: 250px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 1.5rem auto;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--accent-red),
    var(--accent-red-light)
  );
  border-radius: 2px;
  animation: progressAnimation 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px var(--accent-red);
}

@keyframes progressAnimation {
  0% {
    width: 0%;
    transform: translateX(0);
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
    transform: translateX(0);
  }
}

/* Responsive adjustments for intro overlay */
@media (max-width: 768px) {
  .intro-inner {
    max-width: 90%;
  }

  .progress-bar {
    width: 200px;
  }

  .loading-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .loading-subtitle {
    font-size: clamp(0.8rem, 2vw, 1rem);
  }
}

@media (max-width: 480px) {
  .intro-inner {
    max-width: 95%;
    padding: 0.5rem;
  }

  .logo-loader {
    width: 100px;
    height: 100px;
    margin: 1.5rem auto;
  }
}
.progress-bar {
  width: 150px;
}

.loading-title {
  letter-spacing: 0.1em;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
}

.loading-subtitle {
  letter-spacing: 0.05em;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
}

/* ================================
   TRANSFORMATION GALLERY LAYOUT (Updated to match gallery style)
================================ */

.transformation {
  padding: 5rem 0;
  background-color: var(--secondary-dark);
}

/* Transformation section now uses gallery grid styling */
.transformation .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.transformation .gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.transformation .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.transformation .gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive adjustments for transformation section */
@media (max-width: 768px) {
  .transformation .gallery-item {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .transformation .gallery-item {
    height: 180px;
  }
}

.thank-you-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--white);
}
