/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  padding: 12px 50px;
}

.nav-left {
  flex: 1;
}

.nav-left img {
  height: 45px;
  width: 45px;
  transition: transform 0.3s ease;
}

.nav-left img:hover {
  transform: scale(1.1);
}

.nav-center {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex: 1;
}

.nav-right {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  flex: 1;
}

.nav-center a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ff6b6b, #f7d794);
  transition: width 0.3s ease;
}

.nav-center a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  flex: 1;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.join {
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  color: #000;
}

.join:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.trainer {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.trainer:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  z-index: 999;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu a:hover {
  color: #ff6b6b;
  transform: translateX(10px);
}



















.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  z-index: 2;
  animation: fadeInUp 1s ease-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  gap: 0;
}

.image-bg {
  margin-bottom: 12px;
}

.image-bg img {
  width: clamp(120px, 25vw, 200px);
  height: auto;
}

.containerfortext {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  bottom: 45px;
}

.hero h1 {
  font-size: clamp(2.5rem, 12vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 3.5vw, 1.3rem);
  max-width: 600px;
  font-weight: 500;
  opacity: 0.9;
  margin: 0;
  padding: 0 20px;
}

.hero-subtitle a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 600;
}

.hero-cta {
  font-size: clamp(1.2rem, 3vw, 2rem);
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  animation: pulse 2s infinite;
  visibility: hidden;
  margin-top: 20px;
}

/* Tablets and Medium Screens (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-content {
    gap: 0;
  }
  
  .image-bg {
    margin-bottom: 18px;
  }
  
  .image-bg img {
    width: clamp(140px, 20vw, 180px);
  }
  
  .hero h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    margin-bottom: 20px;
    line-height: 0.92;
  }
  
  .hero-subtitle {
    font-size: clamp(1.1rem, 2.8vw, 1.4rem);
  }
}

/* Desktop and Large Screens (1025px+) */
@media screen and (min-width: 1025px) {
  .hero {
    padding: 40px;
  }
  
  .hero-content {
    max-width: 1200px;
    padding-top: 60px;
  }
  
  .image-bg {
    margin-bottom: 25px;
  }
  
  .image-bg img {
    width: 200px;
  }
  
  .hero h1 {
    font-size: clamp(4rem, 7vw, 7rem);
    margin-bottom: 25px;
    line-height: 0.9;
  }
  
  .hero-subtitle {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    max-width: 700px;
  }
}

/* Extra Large Screens (1440px+) */
@media screen and (min-width: 1440px) {
  .hero-content {
    padding-top: 80px;
  }
  
  .image-bg {
    margin-bottom: 30px;
  }
  
  .image-bg img {
    width: 220px;
  }
  
  .hero h1 {
    font-size: 7.5rem;
    margin-bottom: 28px;
  }
  
  .hero-subtitle {
    font-size: 1.6rem;
  }
}

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

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















/* ==================== HOW IT WORKS / ABOUT SECTION ==================== */

.how-it-works-section {
  min-height: 100vh;
  padding: 100px 5vw;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
  width: 100%;
}

/* Desktop Layout: Side-by-side */
.how-it-works-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Text Content */
.how-text {
  width: 100%;
}

.how-text h2 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 60px;
  opacity: 0.9;
  font-weight: 300;
  white-space: pre-line;
}

/* Media Content (Phone) */
.how-media {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 9/19.5;
}

.phone-png {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
}

.phone-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  height: 94%;
  object-fit: cover;
  border-radius: 40px;
  z-index: 1;
}

/* Floating Labels */
.floating-label {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.label-1 {
  top: 10%;
  right: -20%;
  animation-delay: 0s;
}

.label-2 {
  bottom: 20%;
  right: -25%;
  animation-delay: 1s;
}

.label-3 {
  top: 45%;
  left: -20%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ==================== RESPONSIVE: ABOUT SECTION ==================== */

/* Tablet and Mobile: Stack Vertically */
@media (max-width: 768px) {
  .how-it-works-section {
    padding: 80px 20px;
  }
  
  .how-it-works-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .how-text h2 {
    font-size: 3rem;
  }

  .how-text p {
    font-size: 16px;
  }

  .phone-frame {
    max-width: 280px;
  }

  .floating-label {
    font-size: 12px;
    padding: 10px 18px;
  }

  .label-1 {
    right: -10%;
  }

  .label-2 {
    right: -15%;
  }

  .label-3 {
    left: -10%;
  }
}

@media (max-width: 480px) {
  .how-it-works-section {
    padding: 60px 15px;
  }
  
  .how-it-works-content {
    gap: 40px;
  }

  .how-text h2 {
    font-size: 2.5rem;
  }

  .phone-frame {
    max-width: 240px;
  }
}









/* Target only the Kids Fitness card (5th card) */
.pricing-card:nth-child(5) {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.85), rgba(20, 20, 20, 0.55)),
                url('./kids\ image.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

/* Add overlay for better text readability */



/* Ensure content stays above background */
.pricing-card:nth-child(5) > * {
    position: relative;
    z-index: 2;
}

/* Enhance text readability on background */
/* .pricing-card:nth-child(5) h3,
.pricing-card:nth-child(5) .price,
.pricing-card:nth-child(5) .pricing-save {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
} */

.pricing-card:nth-child(5) .pricing-features li {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .pricing-card:nth-child(5) {
        background-position: center;
        background-size: cover;
    }
}

/* Tablet responsive */
@media (min-width: 481px) and (max-width: 767px) {
    .pricing-card:nth-child(5) {
        background-position: center;
    }
}




.pricing-section {
  padding: 50px 5vw;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  min-height: 60vh;
  overflow: hidden;
  width: 100%;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.pricing-header {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 0px;
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== CARDS GRID ==================== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 25px !important;
  margin-bottom: 40px !important;
  width: 100% !important;
  max-width: 100% !important;
  grid-auto-flow: column !important;
}

/* ==================== INDIVIDUAL CARD ==================== */
.pricing-card {
  background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(20, 20, 20, 0.9));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 30px 25px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 107, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
  border-color: rgba(255, 107, 107, 0.5);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.2);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

/* ==================== BADGES ==================== */
.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  white-space: nowrap;
}

.popular-badge {
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  color: #000;
  border: none;
}

/* ==================== CARD HEADER ==================== */
.pricing-header-card {
  margin-bottom: 30px;
}

.pricing-header-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

/* ==================== PRICING AMOUNT ==================== */
.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: #ff6b6b;
}

.price {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.pricing-save {
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== FEATURES ==================== */
.pricing-features {
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  justify-content: center;
}

.pricing-features i {
  color: #ff6b6b;
  font-size: 16px;
  flex-shrink: 0;
}

/* ==================== BUTTON - LONG TEXT OPTIMIZED ==================== */
.pricing-btn {
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.5;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60px;
  word-wrap: break-word;
  hyphens: auto;
  margin-top: auto;
}

.pricing-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.popular-btn {
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  color: #000;
  border: none;
  font-weight: 700;
}

.popular-btn:hover {
  background: linear-gradient(135deg, #ff5252, #ffc947);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* ==================== FOOTER ==================== */
.pricing-footer {
  text-align: center;
  padding-top: 0px;
  margin-bottom: 20px;
}

.pricing-footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 20px;
}

.pricing-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.pricing-contact span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.contact-btn:hover {
  background: linear-gradient(135deg, #22c55e, #16a085);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  color: #fff;
}

.contact-btn i {
  font-size: 16px;
}

.location-link {
  color: #ff6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-link:hover {
  color: #f7d794;
}

/* ==================== RESPONSIVE - MOBILE (max 480px) ==================== */
@media (max-width: 480px) {
  .pricing-section {
    padding: 10px 15px !important;
  }

  .pricing-cards {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-auto-flow: row !important;
  }

  .pricing-card {
    padding: 20px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
  }

  .pricing-card.popular {
    transform: none !important;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px) !important;
  }

  .pricing-header-card h3 {
    font-size: 16px !important;
  }

  .price {
    font-size: 28px !important;
  }

  .currency {
    font-size: 16px !important;
  }

  .period {
    font-size: 12px !important;
  }

  .pricing-features li {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }

  .pricing-btn {
    padding: 10px 16px !important;
    font-size: 12px !important;
  }
}

/* ==================== RESPONSIVE - TABLET (768px+) ==================== */
@media (min-width: 768px) {
  .pricing-section {
    padding: 100px 5vw;
  }

  .pricing-header {
    margin-bottom: 60px;
  }

  .pricing-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .pricing-header p {
    font-size: 18px;
  }

  .pricing-cards {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
    align-items: stretch;
  }

  .pricing-card {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
  }

  .pricing-btn {
    font-size: 16px;
    padding: 15px 30px;
    min-height: 64px;
  }
}

/* ==================== RESPONSIVE - MOBILE (481px - 767px) ==================== */
@media (min-width: 481px) and (max-width: 767px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    grid-auto-flow: row !important;
  }

  .pricing-card {
    padding: 25px 15px !important;
  }

  .pricing-btn {
    font-size: 14px !important;
    padding: 12px 20px !important;
  }
}

/* ==================== END PRICING SECTION ==================== */


































/* FAQ Section */
.faq-section {
  padding: 100px 5vw;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-intro h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.faq-intro p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
}

.faq-all-btn {
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  color: #000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-all-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(255, 107, 107, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question span {
  flex: 1;
  margin-right: 20px;
}

.faq-icon {
  font-size: 18px;
  color: #ff6b6b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #f7d794;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  padding-top: 15px;
}

.faq-answer ul {
  margin: 15px 0 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.faq-answer li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.faq-answer strong {
  color: #ff6b6b;
  font-weight: 600;
}

.faq-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trial-btn, .whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
}

.trial-btn:hover, .whatsapp-btn:hover {
  background: linear-gradient(135deg, #22c55e, #16a085);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  color: #fff;
}

.call-btn {
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  color: #000;
}

.call-btn:hover {
  background: linear-gradient(135deg, #ff5252, #ffc947);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  color: #000;
}

/* Footer */
.footer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 5vw;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  text-align: center;
}

.main-footer-text h3 {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  width: 100%;
}

/* Map Section */
.map-section {
  width: 100%;
  max-width: 600px;
  margin: 20px 0;
}

.map-section h4 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.map-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.map-location {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.map-location:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 107, 107, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-info h5 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.map-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  color: #000;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.map-btn:hover {
  background: linear-gradient(135deg, #ff5252, #ffc947);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  color: #000;
}

/* Sticky Call Button */
.sticky-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.sticky-call-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse-call 2s infinite;
}

.sticky-call-btn a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.sticky-call-btn i {
  font-size: 24px;
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

.fbtn {
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: auto;
  min-width: 150px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.fbtn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
  color: #fff;
}

.joinus {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  color: #fff;
  border: none;
  font-weight: 700;
}

.joinus:hover {
  background: linear-gradient(135deg, #ff5252, #ffc947);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  color: #000;
}

.call-us {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  color: #fff;
}

.call-us:hover {
  background: linear-gradient(135deg, #ff5252, #ffc947);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
  color: #000;
}

.forms {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 350px;
  align-items: center;
}

.emailinput {
  padding: 12px 20px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.emailinput:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.emailinput::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.socials {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.fa-brands {
  font-size: 24px;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.fa-brands:hover {
  color: #ff6b6b;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Scroll Animations */
.animate-left, .animate-right, .animate-up, .animate-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-left.show {
  opacity: 1;
  transform: translateX(0);
}

.animate-right.show {
  opacity: 1;
  transform: translateX(0);
}

.animate-up.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* Loading states */
.video-card video,
 video {
  background: linear-gradient(90deg, #1a1a1a, #2a2a2a, #1a1a1a);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Enhanced button interactions */
.btn:focus,
.emailinput:focus,
.cta-button:focus,
.fbtn:focus {
  outline: 2px solid #ff6b6b;
  outline-offset: 2px;
}

/* Hidden/Visible states for navbar */
.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}

.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media screen and (max-width: 1024px) {
  .nav-center a {
    font-size: 14px;
    gap: 25px;
  }
  
  .nav-center {
    gap: 25px;
  }

  .btn {
    padding: 8px 14px;
    font-size: 11px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-center,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-left {
    flex: none;
  }

  .nav-left img {
    height: 40px;
    width: 40px;
  }

  /* VIDEO CARDS - FORCE RESPONSIVE */
  .video-card-section {
    padding: 80px 20px !important;
  }

  .video-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 0 !important;
  }

  .video-card {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .video-wrapper {
    height: 280px !important;
  }

  .video-card video {
    object-position: center 
  }

  .video-container {
    height: 300px 
  }

 
  /* Gallery Mobile */
  .gym-gallery-section {
    padding: 80px 20px;
  }

  .gym-cards-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 10px;
  }

  .gym-card {
    border-radius: 20px;
  }

  .gym-image-container {
    height: 250px;
  }

  .gym-info {
    padding: 25px 20px;
  }

  .gym-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .locate-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .gallery-modal {
    padding: 10px;
  }

  .gallery-content {
    max-width: 95vw;
    max-height: 95vh;
    border-radius: 15px;
  }

  .gallery-image-container {
    width: 85vw;
    height: 45vh;
  }

  .gallery-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .gallery-nav.prev {
    left: 10px;
  }

  .gallery-nav.next {
    right: 10px;
  }

  .gallery-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .gallery-info {
    padding: 20px;
  }

  .gallery-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .gallery-counter {
    font-size: 14px;
  }

 

  .section-header h2 {
    text-align: center;
  }

  .map-container {
    grid-template-columns: 1fr;
  }

 
  .footer {
    padding: 80px 20px;
  }

  .steps-container {
    text-align: left;
  }

  .hero {
    padding: 0 20px;
  }

  .hero-content {
    margin-top: 60px;
  }

  .how-it-works-section,
  .cta-section,
  .faq-section,
  .pricing-section {
    padding: 20px 20px;
  }

  .faq-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .faq-intro {
    text-align: center;
  }

  .faq-question {
    padding: 20px 25px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 25px 20px 25px;
  }

  .faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
  }

  /* PRICING SECTION - MOBILE */
  .pricing-section {
    padding: 80px 20px !important;
    overflow: hidden !important;
  }

  .pricing-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .pricing-cards {
    display: grid ;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-auto-flow: row !important;
  }

  .pricing-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 25px 15px !important;
    min-width: 0 !important;
    flex: none !important;
  }

  .pricing-card.popular {
    transform: none !important;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px) !important;
  }

  .pricing-header-card h3 {
    font-size: 18px !important;
  }

  .price {
    font-size: 32px !important;
  }

  .currency {
    font-size: 18px !important;
  }

  .period {
    font-size: 14px !important;
  }

  .pricing-features li {
    font-size: 12px !important;
    margin-bottom: 8px !important;
  }

  .pricing-btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .pricing-contact {
    flex-direction: column;
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
  .navbar {
    padding: 12px 15px;
  }
  .nav-left img {
    
    height: 35px;
    width: 35px;
  }

  .hero {
    height: auto;
    padding: 0 15px;
    max-height: none !important;
        height: auto !important;
        min-height: 100vh; /* Full screen */
  }

  .how-it-works-section,
  .cta-section,
  .pricing-section {
    padding: 60px 15px;
  }

  /* VIDEO CARDS - SMALL MOBILE */
  .video-card-section {
    padding: 60px 15px !important;
  }

  .video-cards-grid {
    gap: 25px !important;
    padding: 0 !important;
  }

  .video-wrapper {
    height: 260px !important;
  }

  .video-container {
    height: 280px !important;
  }

  .video-content {
    padding: 20px 15px !important;
  }

  .video-content h3 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
  }

  .video-content p {
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  .play-button {
    width: 50px !important;
    height: 50px !important;
  }

  .play-button i {
    font-size: 18px !important;
  }

  .phone-frame {
    width: 200px !important;
    height: 400px !important;
    max-width: 85vw !important;
    margin: 0 auto !important;
    transform: scale(1.1); /* 10% bigger */
  }

  .phone-video {
    top: 8% !important;
    left: 8% !important;
    width: 84% !important;
    height: 84% !important;
    border-radius: 18px !important;
    transform: scale(1.1); /* 10% bigger */
  }

  .footer {
    padding: 60px 15px;
  }

  /* PRICING SECTION - SMALL MOBILE */
  .pricing-section {
    padding: 10px 15px !important;
  }

  .pricing-cards {
    display: grid ;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-auto-flow: row !important;
  }

  .pricing-card {
    padding: 20px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
  }

  .pricing-header-card h3 {
    font-size: 16px !important;
  }

  .price {
    font-size: 28px !important;
  }

  .currency {
    font-size: 16px !important;
  }

  .period {
    font-size: 12px !important;
  }

  .pricing-features li {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }

  .pricing-btn {
    padding: 10px 16px !important;
    font-size: 12px !important;
  }

  .pricing-contact {
    flex-direction: column !important;
    text-align: center !important;
    gap: 15px !important;
  }

  .pricing-contact span {
    font-size: 14px !important;
  }

  .contact-btn {
    padding: 10px 20px !important;
    font-size: 12px !important;
  }

  .price {
    font-size: 36px;
  }

  .pricing-contact {
    flex-direction: column;
    text-align: center;
  }

  .sticky-call-btn {
    bottom: 20px;
    right: 20px;
  }

  .sticky-call-btn a {
    width: 50px;
    height: 50px;
  }

  .sticky-call-btn i {
    font-size: 20px;
  }

  .faq-buttons {
    flex-direction: column;
  }

 
  /* Gallery Extra Small */
  .gym-gallery-section {
    padding: 60px 15px;
  }

  .gallery-header h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .gym-image-container {
    height: 200px;
  }

  .gym-info {
    padding: 20px 15px;
  }

  .gym-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .click-me-text {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .gallery-icon {
    width: 45px;
    height: 45px;
  }

  .gallery-icon i {
    font-size: 18px;
  }

  .gallery-content {
    margin: 5px;
    border-radius: 10px;
  }

  .gallery-image-container {
    width: 90vw;
    height: 35vh;
  }

  .gallery-nav {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .gallery-nav.prev {
    left: 5px;
  }

  .gallery-nav.next {
    right: 5px;
  }

  .gallery-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .gallery-info {
    padding: 15px;
  }

  .gallery-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .gallery-counter {
    font-size: 12px;
  }

  .locate-btn {
    padding: 6px 12px;
    font-size: 10px;
    gap: 5px;
  }
}
  

  .phone-frame {
    width: 200px;
    height: 400px;
  }

  .footer {
    padding: 60px 15px;
  }

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

  .pricing-card {
    padding: 25px 15px;
  }

  .price {
    font-size: 36px;
  }

  .pricing-contact {
    flex-direction: column;
    text-align: center;
  }

  .sticky-call-btn {
    bottom: 20px;
    right: 20px;
  }

  .sticky-call-btn a {
    width: 50px;
    height: 50px;
  }

  .sticky-call-btn i {
    font-size: 20px;
  }

  .faq-buttons {
    flex-direction: column;
  }

 
  /* Gallery Extra Small */
  .gym-gallery-section {
    padding: 60px 15px;
  }

  .gallery-header h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .gym-image-container {
    height: 200px;
  }

  .gym-info {
    padding: 20px 15px;
  }

  .gym-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .click-me-text {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .gallery-icon {
    width: 45px;
    height: 45px;
  }

  .gallery-icon i {
    font-size: 18px;
  }

  .gallery-content {
    margin: 5px;
    border-radius: 10px;
  }

  .gallery-image-container {
    width: 90vw;
    height: 35vh;
  }

  .gallery-nav {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .gallery-nav.prev {
    left: 5px;
  }

  .gallery-nav.next {
    right: 5px;
  }

  .gallery-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .gallery-info {
    padding: 15px;
  }

  .gallery-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .gallery-counter {
    font-size: 12px;
  }

  .locate-btn {
    padding: 6px 12px;
    font-size: 10px;
    gap: 5px;
  }


/* Extra Small Devices (iPhone SE, etc.) */
@media screen and (max-width: 375px) {
  .navbar {
    padding: 10px 12px;
  }

  .nav-left img {
    height: 32px;
    width: 32px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  /* PHONE FRAME - EXTRA SMALL */
  .phone-frame {
    width: 180px !important;
    height: 360px !important;
    max-width: 80vw !important;
    margin: 0 auto !important;
  }

  .phone-video {
    top: 9% !important;
    left: 9% !important;
    width: 82% !important;
    height: 82% !important;
    border-radius: 15px !important;
  }

  /* PRICING - EXTRA SMALL */
  .pricing-section {
    padding: 50px 12px !important;
  }

  .pricing-header h2 {
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
  
  }

  .pricing-header p {
    font-size: 14px !important;
  }

  .pricing-cards {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-auto-flow: row !important;
  }

  .pricing-card {
    padding: 18px 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    border-radius: 20px !important;
  }

  .pricing-badge {
    font-size: 10px !important;
    padding: 6px 15px !important;
  }

  .pricing-header-card h3 {
    font-size: 14px !important;
    margin-bottom: 15px !important;
  }

  .pricing-amount {
    margin-bottom: 8px !important;
  }

  .price {
    font-size: 24px !important;
  }

  .currency {
    font-size: 14px !important;
  }

  .period {
    font-size: 11px !important;
  }

  .pricing-save {
    font-size: 11px !important;
  }

  .pricing-features {
    margin-bottom: 25px !important;
  }

  .pricing-features li {
    font-size: 10px !important;
    margin-bottom: 5px !important;
    gap: 10px !important;
  }

  .pricing-features i {
    font-size: 12px !important;
  }

  .pricing-btn {
    padding: 8px 14px !important;
    font-size: 11px !important;
  }

  .pricing-footer p {
    font-size: 11px !important;
  }

  .contact-btn {
    padding: 8px 16px !important;
    font-size: 10px !important;
  }

  .section-header h2 {
    font-size: 1.6rem !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
  }

  .video-cards-grid {
    gap: 20px !important;
    padding: 0 !important;
  }

  .video-wrapper {
    height: 240px !important;
  }

  .video-container {
    height: 260px !important;
  }

  .video-content {
    padding: 18px 12px !important;
  }

  .video-content h3 {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }

  .video-content p {
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  .play-button {
    width: 45px !important;
    height: 45px !important;
  }

  .play-button i {
    font-size: 16px !important;
  }


  .gallery-header h2 {
    font-size: 1.6rem;
    line-height: 1.1;
  }

  .gym-info h3 {
    font-size: 18px;
  }

  .click-me-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .pricing-header h2 {
   line-height: 40px;
    
  }
}
/* iPad and Tablet Responsiveness */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .navbar {
    padding: 15px 30px;
  }

  .nav-center {
    gap: 30px;
    margin-right: 20px;
  }

  .nav-center a {
    font-size: 15px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  

  .gym-cards-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    max-width: 800px !important;
  }

  .gym-image-container {
    height: 200px !important;
  }

  .gym-info h3 {
    font-size: 18px !important;
  }

  .video-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .video-wrapper {
    height: 240px;
  }

  .video-content {
    padding: 22px 18px;
  }

  .video-content h3 {
    font-size: 19px;
  }

  .video-content p {
    font-size: 13px;
  }


  .pricing-cards {
    display: grid;
            grid-template-columns: repeat(2, 1fr) !important;
            gap: 20px !important;
            width: 100% !important;
            max-width: 100% !important;
            grid-auto-flow: row !important;
  }
}

/* Additional responsive adjustments */
@media screen and (max-width: 992px) {
 
  .video-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .gym-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

/* Improved accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .video-card,
  .gym-card,
 
  .btn,
  .fbtn {
    border: 2px solid #000;
  }
}


.how-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 60px;
  opacity: 0.9;
  font-weight: 300;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}

.step {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(247, 215, 148, 0.1));
  padding: 20px 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 107, 0.2);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(247, 215, 148, 0.2));
  border-color: rgba(255, 107, 107, 0.4);
}

/* Phone Frame */
.phone-frame {
  position: relative;
  width: 300px;
  height: 600px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  max-width: 100%;
}

.phone-png {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
}

.phone-video {
  position: absolute;
  width: 88%;
  height: 88%;
  object-fit: cover;
  border-radius: 25px;
  z-index: 2;
}

.floating-label {
  position: absolute;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: float 4s ease-in-out infinite;
  color: #000;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 10;
  white-space: nowrap;
}

.label-1 { 
  top: 10%; 
  left: -60px; 
  animation-delay: 0s;
}

.label-2 { 
  bottom: 20%; 
  right: -70px; 
  animation-delay: 1.5s;
}

.label-3 { 
  top: 60%; 
  left: -80px; 
  animation-delay: 3s;
}


/* Video Cards Section */
.video-card-section {
  padding: 100px 5vw;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}

.section-header {
  margin-bottom: 60px;
  margin-top: 40px;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-align: center;
}

.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.video-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 0;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100% !important;
  max-width: 100% !important;
}

.video-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 107, 107, 0.3);
  filter: drop-shadow(0 15px 25px rgba(255, 107, 107, 0.2));
}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 300px;
  width: 100%;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 30px 30px 0 0;
}

.video-card:hover video {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.1);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.video-content {
  padding: 30px 25px;
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.video-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  transition: all 0.3s ease;
}

.video-card:hover h3 {
  color: #fff;
  transform: translateY(-2px);
}

.video-card p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.video-card:hover p {
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-card:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-button i {
  font-size: 24px;
  color: #000;
  margin-left: 3px;
}

/* Gym Gallery Section (NEW) */
.gym-gallery-section {
  padding: 100px 5vw;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  overflow: hidden;
  width: 100%;
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gym-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.gym-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gym-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 107, 107, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gym-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.gym-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gym-card:hover .gym-image {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.gym-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
}

.gym-card:hover .gym-overlay {
  opacity: 1;
}

.click-me-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.gallery-icon i {
  font-size: 20px;
  color: #fff;
}

.gym-info {
  padding: 25px 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.gym-info h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.gym-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.locate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  color: #000;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.locate-btn:hover {
  background: linear-gradient(135deg, #ff5252, #ffc947);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
  color: #000;
}

/* Gallery Modal */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.gallery-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.gallery-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-image-container {
  width: 80vw;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-info {
  padding: 25px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
}

.gallery-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.gallery-counter {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
  padding: 100px 5vw;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Alternative: Simpler approach using width ranges for pricing section */
@media only screen and (min-width: 768px) and (max-width: 834px) {
  /* iPad Air और similar tablets के लिए */
  .pricing-cards{
    display: block;
    margin-bottom: 40px ;
    width: 100% ;
    max-width: 100% ;
  }
}



































/* Timeline Section - DOT ALIGNED WITH HEADING ONLY */
.timeline-section {
  min-height: 100vh;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.timeline-header {
  text-align: center;
  margin-bottom: 3rem;
}

.timeline-header h2 {
  font-size: clamp(1.5rem, 8vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.1;
}

.highlight-green {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline-header .subtitle {
  font-size: clamp(0.875rem, 4vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.timeline-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding-left: 0;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 107, 107, 0.3), rgba(247, 215, 148, 0.3));
}

.timeline-progress {
  position: absolute;
  left: 20px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, #ff6b6b, #f7d794);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

/* CHANGED: flex-start so dot aligns with top of content */
.timeline-item {
  display: flex;
  align-items: flex-start; /* Changed from center */
  margin-bottom: 2.5rem;
  position: relative;
  min-height: 60px;
}

.timeline-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  visibility: hidden;
}

.timeline-number.active {
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.timeline-content {
  flex: 1;
  margin-left: 16px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: calc(100vw - 80px);
  position: relative; /* Added for dot positioning */
}

.timeline-content.active {
  opacity: 1;
  transform: translateX(0);
}

.timeline-heading {
  font-size: clamp(1.125rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.timeline-description {
  font-size: clamp(0.875rem, 3.5vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* KEY FIX: Dot positioned relative to heading height */
.timeline-dot {
  position: absolute;
  left: 14px;
  /* Calculate: half of heading line-height to center with heading text */
  top: calc(clamp(1.125rem, 5vw, 2.5rem) * 1.2 / 2); /* heading font-size * line-height / 2 */
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 107, 107, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
}

.timeline-item.active .timeline-dot {
  background: #ff6b6b;
  border-color: #f7d794;
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
  transform: translateY(-50%) scale(1.2);
}

/* Mobile - Specific calculations for each breakpoint */
@media (min-width: 320px) and (max-width: 479px) {
  .timeline-dot {
    left: 14px;
    top: 0.7rem; /* Aligned with small heading */
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .timeline-dot {
    left: 14px;
    top: 1rem; /* Aligned with medium heading */
  }
}

/* Tablet */
@media (min-width: 48rem) and (max-width: 74.9rem) {
  .timeline-section {
    padding: 5rem 3rem;
  }

  .timeline-header {
    margin-bottom: 4rem;
  }

  .timeline-container {
    max-width: 75rem;
  }

  .timeline-line {
    left: 32px;
  }

  .timeline-progress {
    left: 32px;
  }

  .timeline-item {
    margin-bottom: 4rem;
    align-items: flex-start;
  }

  .timeline-number {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    display: flex;
  }

  .timeline-content {
    margin-left: 32px;
    max-width: 40rem;
    transform: translateX(32px);
  }

  .timeline-dot {
    left: 26px;
    top: 1.5rem; /* Aligned with tablet heading size */
  }
  
  .timeline-item.active .timeline-dot {
    transform: translateY(-50%) scale(1.2);
  }
}

/* Desktop */
@media (min-width: 75rem) {
  .timeline-section {
    min-height: 100vh;
    padding: 100px 5vw;
  }

  .timeline-header {
    margin-bottom: 80px;
  }

  .timeline-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
  }

  .timeline-header .subtitle {
    font-size: 18px;
  }

  .timeline-container {
    max-width: 1200px;
  }

  .timeline-line {
    left: 120px;
  }

  .timeline-progress {
    left: 120px;
  }

  .timeline-item {
    margin-bottom: 120px;
    align-items: flex-start; /* Keep flex-start for heading alignment */
  }

  .timeline-number {
    width: 240px;
    height: 80px;
    font-size: 4rem;
    visibility: visible;
    /* Align number with heading */
    padding-top: 0;
    line-height: 1;
  }

  .timeline-number.active {
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
  }

  .timeline-content {
    margin-left: 0px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .timeline-content.active {
    opacity: 1;
    transform: translateX(0);
  }

  .timeline-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .timeline-description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
  }

  /* Desktop dot - aligned with heading center */
  .timeline-dot {
    left: 111px;
    top: 1.5rem; /* Approximately center of 2.5rem heading */
    transform: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 107, 107, 0.3);
  }

  .timeline-item.active .timeline-dot {
    background: #ff6b6b;
    border-color: #f7d794;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.6);
    transform: scale(1.2);
  }
}


















/* Mobile First Responsive Testimonial Section */
.testimonial-section {
  padding: 10vh 4vw;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(247, 215, 148, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.testimonial-section > * {
  position: relative;
  z-index: 2;
}

.testimonial-heading {
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: clamp(3rem, 8vw, 6rem);
  color: #fff;
  line-height: 1.1;
  padding: 0 2vw;
}

/* Mobile First Grid Layout */
.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2vw;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
  will-change: transform;
  width: 100%;
  max-width: 100%;
}

.testimonial-card:hover {
  transform: translateY(-0.5rem) scale(1.01);
  border-color: rgba(255, 107, 107, 0.3);
  box-shadow: 
    0 1.5rem 3rem rgba(0, 0, 0, 0.4),
    0 0 2rem rgba(255, 107, 107, 0.2);
}

.video-container {
  position: relative;
  height: clamp(12rem, 35vw, 22rem);
  overflow: hidden;
  width: 100%;
}

.testimonial-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0.2) brightness(0.9);
}

.testimonial-card:hover video {
  transform: scale(1.05);
  filter: grayscale(0) brightness(1.05);
}

.testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.testimonial-card:hover .testimonial-overlay {
  opacity: 1;
}

.testimonial-info {
  padding: clamp(1.25rem, 4vw, 2rem);
  position: relative;
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
}

.testimonial-info h4 {
  font-size: clamp(1.125rem, 3.5vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  line-height: 1.3;
}

.testimonial-info h4::after {
  content: '';
  position: absolute;
  bottom: -0.375rem;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: #ff6b6b;
  transition: width 0.4s ease;
}

.testimonial-card:hover .testimonial-info h4::after {
  width: clamp(2.5rem, 12vw, 4rem);
}

.testimonial-info p {
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-style: italic;
  position: relative;
  padding-left: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: 0.5rem;
}

.testimonial-info p::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #ff6b6b;
  font-family: serif;
  line-height: 1;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.75rem;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: all 0.4s ease 0.1s;
}

.testimonial-card:hover .testimonial-rating {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-rating i {
  color: #ffd700;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(3.5rem, 12vw, 5rem);
  height: clamp(3.5rem, 12vw, 5rem);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
  backdrop-filter: blur(10px);
  border: 0.125rem solid rgba(255, 255, 255, 0.3);
}

.testimonial-card:hover .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.play-icon i {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  color: #000;
  margin-left: 0.125rem;
}

/* Tablet Styles */
@media (min-width: 48rem) {
  .testimonial-section {
    padding: 12vh 5vw;
  }
  
  .testimonial-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
  }
  
  .video-container {
    height: clamp(16rem, 30vw, 20rem);
  }
  
  .testimonial-card:hover {
    transform: translateY(-0.75rem) scale(1.02);
  }
}

/* Desktop Styles */
@media (min-width: 64rem) {
  .testimonial-section {
    padding: 15vh 5vw;
  }
  
  .testimonial-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2.5rem, 4vw, 3.5rem);
  }
  
  .video-container {
    height: clamp(18rem, 25vw, 22rem);
  }
  
  .testimonial-card:hover {
    transform: translateY(-1rem) scale(1.02);
    box-shadow: 
      0 2rem 4rem rgba(0, 0, 0, 0.4),
      0 0 2.5rem rgba(255, 107, 107, 0.3);
  }
}

/* Large Desktop */
@media (min-width: 80rem) {
  .testimonial-section {
    padding: 18vh 5vw;
  }
  
  .testimonial-cards {
    max-width: 87.5rem;
  }
  
  .video-container {
    height: 21.875rem;
  }
}

/* iOS Specific Optimizations */
@supports (-webkit-touch-callout: none) {
  .testimonial-card video {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .testimonial-card {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .testimonial-section::before {
    background-size: 200% 200%;
  }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  .testimonial-card,
  .testimonial-card video,
  .testimonial-overlay,
  .testimonial-rating,
  .play-icon,
  .testimonial-info h4::after {
    transition: none;
  }
  
  .testimonial-card:hover {
    transform: none;
  }
}

/* Focus States for Accessibility */
.testimonial-card:focus {
  outline: 0.125rem solid #ff6b6b;
  outline-offset: 0.25rem;
}

/* Small Mobile Optimization */
@media (max-width: 23.4375rem) {
  .testimonial-section {
    padding: 8vh 3vw;
  }
  
  .testimonial-cards {
    gap: 1.5rem;
    padding: 0 1vw;
  }
  
  .video-container {
    height: 12rem;
  }
  
  .testimonial-info {
    padding: 1rem;
  }
}

/* Remove play icon from testimonial videos only */
.testimonial-section .play-icon {
  display: none !important;
}

/* Alternative: If you want to keep the icon but make it non-interactive */
.testimonial-section .play-icon {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* If you want to remove the overlay as well (optional) */
.testimonial-section .testimonial-overlay {
  display: none;
}

/* Google Reviews CTA Button */
.google-reviews-cta {
  text-align: center;
  margin-top: clamp(3rem, 8vw, 5rem);
  padding: 0 2vw;
}

.google-review-btn {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: clamp(1rem, 3vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, #ff6b6b, #f7d794);
  color: #fff;
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: clamp(3rem, 8vw, 4rem);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0.5rem 1.5rem rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.google-review-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f7d794, #ff6b6b);
  transition: left 0.4s ease;
  z-index: -1;
}

.google-review-btn:hover::before {
  left: 0;
}

.google-review-btn:hover {
  transform: translateY(-0.25rem) scale(1.02);
  box-shadow: 0 1rem 2rem rgba(255, 107, 107, 0.4);
}

.google-review-btn i {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  transition: transform 0.3s ease;
}

.google-review-btn:hover i {
  transform: rotate(360deg);
}

/* Tablet */
@media (min-width: 48rem) {
  .google-reviews-cta {
    margin-top: clamp(4rem, 10vw, 6rem);
  }
}

/* Desktop */
@media (min-width: 64rem) {
  .google-reviews-cta {
    margin-top: clamp(5rem, 12vw, 7rem);
  }
  
  .google-review-btn {
    padding: 1.25rem 3.5rem;
  }
}

.socials a i {
    transition: transform 0.3s ease;
}

.socials a:hover i {
    transform: scale(1.2);
}

.socials a:active i {
    transform: scale(0.9);
}
.image-bg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Fixed the empty px value */
    margin-bottom: 2px;
}

.image-bg img {
    width: 40vw; /* Increased from 80vw for better size */
    height: auto;
    max-width: 500px; /* Increased max size */
    min-width: 200px; /* Increased min size */
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.image-bg img:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .image-bg img {
        width: 100vw;
        min-width: 550px;
        /* max-width: 1000px */
        position: relative;
        bottom: 40px;
    }
}
media screen and (max-width: 768px) {
    .image-bg img {
        width: 100vw;
        /* margin-bottom: 100px; */
        position: relative;
        bottom: 40px;
        min-width: 550px;
        /* max-width: 1000px; */
    }
}

@media screen and (max-Swidth: 480px) {
    .image-bg img {
        width: 100vw; /* Increased for mobile */
        min-width: 450px; /* Fixed - was 400px which made no sense */
        max-width: 350px;
    }
}






















/* ==================== FREE TRIAL MODAL (Without Button Changes) ==================== */



/* ==================== FREE TRIAL BUTTON - FIXED ==================== */

.trial-modal-trigger {
  /* Layout */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  
  /* Size & Spacing */
  padding: 15px 35px;
  min-height: 54px;
  
  /* Background - Purple Gradient */
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #7c3aed 100%);
  
  /* Border & Shape */
  border: none;
  border-radius: 50px; /* Fully rounded */
  
  /* Text */
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.5;
  letter-spacing: 0.3px;
  
  /* Effects */
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Effect */
.trial-modal-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
  background: linear-gradient(135deg, #b49cfc 0%, #9d71f7 50%, #8b5cf6 100%);
}

/* Active/Click Effect */
.trial-modal-trigger:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

/* Focus State */
.trial-modal-trigger:focus-visible {
  outline: 3px solid rgba(139, 92, 246, 0.4);
  outline-offset: 3px;
}

/* Phone Icon Styling - CRITICAL FIX */
.trial-modal-trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: currentColor; /* White color from parent */
  fill: none;
  background: transparent !important;
  transition: transform 0.3s ease;
}

/* Icon animation on hover */
.trial-modal-trigger:hover svg {
  transform: rotate(15deg) scale(1.1);
}

/* Remove any nested element styling that might conflict */
.trial-modal-trigger__text,
.trial-modal-trigger__icon {
  all: unset;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trial-modal-trigger {
    padding: 14px 28px;
    font-size: 1rem;
    min-height: 50px;
  }
  
  .trial-modal-trigger svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .trial-modal-trigger {
    padding: 12px 24px;
    font-size: 0.95rem;
    min-height: 46px;
    gap: 10px;
  }
  
  .trial-modal-trigger svg {
    width: 16px;
    height: 16px;
  }
}

/* Disabled State */
.trial-modal-trigger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}


/* Modal Container - CRITICAL FIX */
.trial-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none; /* Default hidden - IMPORTANT */
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Active State - Show Modal */
.trial-modal.active {
  display: flex !important; /* Show when active - CRITICAL */
  opacity: 1;
  visibility: visible;
}

/* Overlay Background */
.trial-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  z-index: 1;
}

/* Modal Content Container */
.trial-modal__container {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 2;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 30px;
}

.trial-modal.active .trial-modal__container {
  transform: scale(1) translateY(0);
}

/* Custom Scrollbar */
.trial-modal__container::-webkit-scrollbar {
  width: 8px;
}

.trial-modal__container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.trial-modal__container::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5);
  border-radius: 10px;
}

.trial-modal__container::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}

/* Close Button */
.trial-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.trial-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.trial-modal__close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* Modal Header */
.trial-modal__header {
  margin-bottom: 30px;
  text-align: center;
}

.trial-modal__title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trial-modal__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* Form Styles */
.trial-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trial-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trial-form__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 4px;
}

.required {
  color: #ef4444;
}

/* Input Fields */
.trial-form__input,
.trial-form__select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.trial-form__input:focus,
.trial-form__select:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.trial-form__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Select Dropdown */
.trial-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.trial-form__select option {
  background: #1a1a1a;
  color: #ffffff;
  padding: 10px;
}

/* Radio Buttons */
.trial-form__group--radio {
  gap: 12px;
}

.trial-form__radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trial-form__radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 140px;
}

.trial-form__radio-label:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.3);
}

.trial-form__radio {
  width: 18px;
  height: 18px;
  accent-color: #8b5cf6;
  cursor: pointer;
}

.trial-form__radio:checked + span {
  color: #8b5cf6;
  font-weight: 600;
}

/* Error Messages */
.trial-form__error {
  font-size: 0.85rem;
  color: #ef4444;
  display: none;
  margin-top: 4px;
}

.trial-form__input.error,
.trial-form__select.error {
  border-color: #ef4444;
}

.trial-form__input.error ~ .trial-form__error,
.trial-form__select.error ~ .trial-form__error {
  display: block;
}

/* Submit Button - Keep your existing styling */
.trial-form__submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trial-form__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
  background: linear-gradient(135deg, #9d71f7 0%, #8b5cf6 100%);
}

.trial-form__submit:active:not(:disabled) {
  transform: translateY(0);
}

.trial-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Loading Spinner */
.btn-loader {
  display: inline-block;
}

.spinner {
  animation: rotate 1s linear infinite;
  width: 20px;
  height: 20px;
}

.spinner circle {
  stroke: currentColor;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

@keyframes dash {
  0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* Success Message - UPDATED */
.trial-success {
  text-align: center;
  padding: 60px 30px;
  display: none; /* Hidden by default */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.5s ease;
}

/* Show success message */
.trial-success.show,
.trial-success.active {
  display: flex !important;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ffffff;
  font-weight: bold;
  animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.trial-success h4 {
  font-size: 1.8rem;
  color: #10b981;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.trial-success p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px 0;
  line-height: 1.6;
  max-width: 400px;
}

/* Success message details box */
.success-details {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  text-align: left;
}

.success-details p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.success-details strong {
  color: #10b981;
}

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

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


/* ==================== RESPONSIVE STYLES ==================== */

@media (max-width: 768px) {
  .trial-modal {
    padding: 10px;
  }
  
  .trial-modal__container {
    max-width: 100%;
    max-height: 95vh;
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .trial-modal__title {
    font-size: 1.5rem;
  }
  
  .trial-modal__subtitle {
    font-size: 0.9rem;
  }
  
  .trial-form__submit {
    font-size: 1rem;
    padding: 14px 28px;
  }
  
  .trial-form__radio-group {
    flex-direction: column;
  }
  
  .trial-form__radio-label {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .trial-modal__container {
    padding: 25px 18px;
  }
  
  .trial-modal__close {
    width: 36px;
    height: 36px;
    top: 15px;
    right: 15px;
  }
  
  .trial-modal__title {
    font-size: 1.3rem;
  }
  
  .trial-form__input,
  .trial-form__select {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
}






























/* ==================== PERSONAL TRAINING SECTION ==================== */
/* Minimal design with gradient text + glow emphasis on card headers */

.pt-section {
  width: 100%;
  background: #0a0a0a;
  padding: 40px 20px;
}

.pt-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ==================== MAIN HEADER ==================== */
.pt-header {
  margin-bottom: 20px;
}

.pt-main-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.pt-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* ==================== CARDS ==================== */
.pt-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
  align-items: start; /* Desktop alignment fix */
}

.pt-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%; /* Full height for equal card heights */
}

.pt-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ==================== CARD HEADER (GRADIENT + GLOW) ==================== */
.pt-card-header {
  font-size: 13px;
  font-weight: 600;
  /* Gradient Text */
  background: linear-gradient(135deg, #ff9b82 0%, #ffb399 50%, #ff9b82 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Subtle Background Glow */
  position: relative;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background-color: rgba(255, 155, 130, 0.05);
  box-shadow: 0 0 20px rgba(255, 155, 130, 0.08);
}

/* ==================== CARD FOOTER ==================== */
.pt-card-footer {
  margin-top: auto; /* Push footer to bottom */
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px; /* Increased from 11px to 13px */
  font-weight: 500;
  color: rgb(255, 255, 255); /* White with 60% opacity */
  text-align: center;
  letter-spacing: 0.3px;
}

/* ==================== PRICING ==================== */
.pt-pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1; /* Takes available space */
}

.pt-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.pt-price-row--highlight {
  background: rgba(255, 155, 130, 0.04);
  padding: 10px 12px;
  border-radius: 8px;
  margin: 0 -6px;
}

/* Price Labels */
.pt-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.pt-sublabel {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-top: 2px;
}

.pt-price-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Price Values */
.pt-value {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.pt-value-main {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.pt-price-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.pt-save {
  font-size: 10px;
  font-weight: 600;
  color: #ff9b82;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Divider */
.pt-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06) 50%, transparent);
}

/* ==================== FOOTER ==================== */
.pt-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Button */
.pt-btn {
  padding: 11px 32px;
  background: linear-gradient(135deg, #ff9b82 0%, #ff7b5f 100%);
  border: none;
  border-radius: 8px;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pt-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 155, 130, 0.25);
}

.pt-btn:active {
  transform: translateY(0);
}

.pt-btn:focus-visible {
  outline: 2px solid rgba(255, 155, 130, 0.4);
  outline-offset: 2px;
}

/* Info Text */
.pt-info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  text-align: center;
}

/* ==================== RESPONSIVE - 480px+ ==================== */
@media (min-width: 480px) {
  .pt-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: stretch; /* Equal height cards */
  }

  .pt-card {
    padding: 18px 20px;
  }

  .pt-card-footer {
    font-size: 13px; /* Keep 13px on tablet/desktop */
    padding-top: 16px;
  }

  .pt-footer {
    flex-direction: row;
    gap: 14px;
    justify-content: center;
  }

  .pt-info {
    text-align: left;
  }
}

/* ==================== RESPONSIVE - 640px+ ==================== */
@media (min-width: 640px) {
  .pt-section {
    padding: 48px 24px;
  }

  .pt-main-title {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .pt-header {
    margin-bottom: 24px;
  }

  .pt-card-header {
    font-size: 14px;
    padding: 9px 14px;
  }

  .pt-card-footer {
    font-size: 14px; /* Increased by 2px from 12px to 14px */
  }

  .pt-label {
    font-size: 14px;
  }

  .pt-value {
    font-size: 17px;
  }

  .pt-value-main {
    font-size: 18px;
  }

  .pt-btn {
    padding: 12px 36px;
    font-size: 14px;
  }
}

/* ==================== RESPONSIVE - 768px+ ==================== */
@media (min-width: 768px) {
  .pt-section {
    padding: 56px 32px;
  }

  .pt-main-title {
    font-size: 28px;
  }

  .pt-card {
    padding: 20px 24px;
  }

  .pt-card-header {
    font-size: 14px;
  }

  .pt-card-footer {
    font-size: 14px;
  }
}

/* ==================== RESPONSIVE - 1024px+ ==================== */
@media (min-width: 1024px) {
  .pt-section {
    padding: 64px 40px;
  }

  .pt-main-title {
    font-size: 32px;
  }

  .pt-card {
    padding: 22px 26px;
  }

  .pt-card-header {
    font-size: 15px;
  }

  .pt-card-footer {
    font-size: 14px;
  }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
  .pt-card,
  .pt-btn {
    transition: none !important;
  }
  
  .pt-btn:hover {
    transform: none;
  }
}

@media (prefers-contrast: high) {
  .pt-card {
    border-width: 2px;
  }

  .pt-btn {
    border: 2px solid #ffffff;
  }
}

/* ==================== END PERSONAL TRAINING SECTION ==================== */



























/* ============================================
   GRIP AND GRAB - WORKSHOP SECTION STYLES
   Isolated with gmw- prefix
   Mobile-First Responsive Design
   ============================================ */

/* ============================================
   RESET & BASE STYLES (Scoped)
   ============================================ */
.gmw-workshop-section,
.gmw-modal {
  box-sizing: border-box;
}

.gmw-workshop-section *,
.gmw-modal * {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* ============================================
   SECTION CONTAINER
   ============================================ */
.gmw-workshop-section {
  width: 100%;
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  padding: 60px 20px;
  font-family: 'Inter', 'Poppins', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle depth effect */
.gmw-workshop-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.gmw-section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.gmw-section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gmw-section-subtitle {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #888888;
  font-style: italic;
}

/* ============================================
   WORKSHOP CONTAINER (Mobile First)
   ============================================ */
.gmw-workshop-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ============================================
   VIDEO WRAPPER
   ============================================ */
.gmw-video-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  order: 2; /* Video comes after content on mobile */
}

.gmw-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   CONTENT WRAPPER
   ============================================ */
.gmw-content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1; /* Content comes first on mobile */
}

.gmw-content-inner {
  width: 100%;
}

.gmw-workshop-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #ffffff;
}

.gmw-workshop-description {
  font-size: 16px;
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 30px;
}

.gmw-workshop-description strong {
  color: #ffffff;
  font-weight: 600;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.gmw-cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gmw-cta-button:hover {
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  border-color: #4a4a4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.gmw-cta-button:active {
  transform: translateY(0);
}

/* ============================================
   MODAL STYLES
   ============================================ */
.gmw-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gmw-modal.gmw-modal--active {
  display: flex;
}

/* Modal Overlay */
.gmw-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}

/* Modal Container */
.gmw-modal-container {
  position: relative;
  background: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 30px;
  z-index: 10;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.gmw-modal.gmw-modal--active .gmw-modal-container {
  transform: scale(1);
  opacity: 1;
}

/* Custom Scrollbar for Modal */
.gmw-modal-container::-webkit-scrollbar {
  width: 8px;
}

.gmw-modal-container::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 10px;
}

.gmw-modal-container::-webkit-scrollbar-thumb {
  background: #3a3a3a;
  border-radius: 10px;
}

.gmw-modal-container::-webkit-scrollbar-thumb:hover {
  background: #4a4a4a;
}

/* Close Button */
.gmw-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #888888;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gmw-modal-close:hover {
  background: #2a2a2a;
  color: #ffffff;
  transform: rotate(90deg);
}

/* Modal Header */
.gmw-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.gmw-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.gmw-modal-subtitle {
  font-size: 14px;
  color: #888888;
  font-weight: 400;
}

/* ============================================
   FORM STYLES
   ============================================ */
.gmw-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gmw-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gmw-form-label {
  font-size: 14px;
  font-weight: 500;
  color: #b0b0b0;
  letter-spacing: 0.5px;
}

.gmw-form-input,
.gmw-form-select {
  width: 100%;
  padding: 14px 16px;
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  outline: none;
}

.gmw-form-input:focus,
.gmw-form-select:focus {
  border-color: #4a4a4a;
  background: #121212;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.gmw-form-input::placeholder {
  color: #555555;
}

/* Select Dropdown Arrow */
.gmw-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888888' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
}

/* Error Messages */
.gmw-form-error {
  font-size: 12px;
  color: #ff4444;
  display: none;
  margin-top: -4px;
}

.gmw-form-error.gmw-form-error--visible {
  display: block;
}

.gmw-form-input.gmw-form-input--error,
.gmw-form-select.gmw-form-select--error {
  border-color: #ff4444;
}

/* Checkbox Group */
.gmw-form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.gmw-form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #4a4a4a;
  flex-shrink: 0;
}

.gmw-form-checkbox-label {
  font-size: 13px;
  color: #888888;
  line-height: 1.5;
  cursor: pointer;
}

.gmw-form-link {
  color: #b0b0b0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.gmw-form-link:hover {
  color: #ffffff;
}

/* Submit Button */
.gmw-form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.gmw-form-submit:hover {
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  border-color: #4a4a4a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.gmw-form-submit:active {
  transform: translateY(0);
}

.gmw-form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Form Info */
.gmw-form-info {
  font-size: 12px;
  color: #666666;
  text-align: center;
  line-height: 1.5;
  margin-top: 5px;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.gmw-success-message {
  display: none;
  text-align: center;
  padding: 20px;
}

.gmw-success-message.gmw-success-message--visible {
  display: block;
}

.gmw-success-icon {
  margin-bottom: 20px;
  color: #4caf50;
}

.gmw-success-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.gmw-success-text {
  font-size: 15px;
  color: #888888;
  line-height: 1.6;
  margin-bottom: 25px;
}

.gmw-success-button {
  padding: 14px 40px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gmw-success-button:hover {
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  border-color: #4a4a4a;
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .gmw-modal,
  .gmw-modal-container,
  .gmw-modal-close,
  .gmw-cta-button,
  .gmw-form-input,
  .gmw-form-select,
  .gmw-form-submit,
  .gmw-success-button,
  .gmw-form-link {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================
   TABLET RESPONSIVE (768px and up)
   ============================================ */
@media (min-width: 768px) {
  .gmw-workshop-section {
    padding: 80px 40px;
  }

  .gmw-section-title {
    font-size: 42px;
  }

  .gmw-section-subtitle {
    font-size: 18px;
  }

  .gmw-workshop-container {
    gap: 50px;
  }

  .gmw-workshop-title {
    font-size: 32px;
  }

  .gmw-workshop-description {
    font-size: 17px;
  }

  .gmw-modal-container {
    padding: 50px 40px;
  }
}

/* ============================================
   DESKTOP RESPONSIVE (1024px and up)
   ============================================ */
@media (min-width: 1024px) {
  .gmw-workshop-section {
    padding: 100px 60px;
  }

  .gmw-section-title {
    font-size: 48px;
  }

  /* Split Layout for Desktop */
  .gmw-workshop-container {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .gmw-video-wrapper {
    width: 50%;
    flex-shrink: 0;
    padding-bottom: 28.125%; /* Maintain 16:9 aspect ratio for 50% width */
    order: 1; /* Video on left */
  }

  .gmw-content-wrapper {
    width: 50%;
    order: 2; /* Content on right */
  }

  .gmw-workshop-title {
    font-size: 36px;
  }

  .gmw-workshop-description {
    font-size: 18px;
  }

  .gmw-cta-button {
    font-size: 17px;
    padding: 18px 50px;
  }
}

/* ============================================
   LARGE DESKTOP (1440px and up)
   ============================================ */
@media (min-width: 1440px) {
  .gmw-workshop-section {
    padding: 120px 80px;
  }

  .gmw-section-title {
    font-size: 56px;
  }

  .gmw-workshop-container {
    gap: 80px;
  }

  .gmw-workshop-title {
    font-size: 40px;
  }
}


/* Kids Fitness Card - 5 Card Grid Support */
@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  }
}

/* Optional: Highlight kids card */
.pricing-card:last-child {
  border-color: rgba(139, 92, 246, 0.3);
}

.pricing-card:last-child .pricing-badge {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
}
