/* ==========================================================================
   GET FIT LADIES GYM SIALKOT - CORE STYLESHEET
   Women-Only Fitness Center | Modern, Powerful, Professional
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --primary-black: #111111;
  --dark-bg: #191919;
  --dark-card: #222222;
  --dark-card-hover: #292929;
  --deep-purple: #5B2A86;
  --magenta: #C2185B;
  --hot-pink: #EC407A;
  --soft-pink: #FCE4EC;
  --white: #FFFFFF;
  --light-grey: #F8F9FA;
  --border-light: #EBEBEB;
  --border-dark: rgba(255, 255, 255, 0.08);
  --text-grey: #707070;
  --text-muted-dark: #A8A8A8;
  --text-dark: #1F1F1F;
  --gold-star: #FFB800;
  --whatsapp-green: #25D366;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #5B2A86 0%, #C2185B 100%);
  --grad-accent: linear-gradient(135deg, #C2185B 0%, #EC407A 100%);
  --grad-dark: linear-gradient(180deg, rgba(17, 17, 17, 0.85) 0%, rgba(25, 25, 25, 0.95) 100%);
  --grad-overlay: linear-gradient(180deg, rgba(17, 17, 17, 0.5) 0%, rgba(17, 17, 17, 0.9) 100%);
  --grad-hero: linear-gradient(90deg, rgba(17, 17, 17, 0.92) 0%, rgba(25, 25, 25, 0.82) 50%, rgba(91, 42, 134, 0.65) 100%);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Shadows & Transitions */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 8px 30px rgba(194, 24, 91, 0.35);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 50px;
}

/* --------------------------------------------------------------------------
   RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-black);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

a {
  color: var(--magenta);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--hot-pink);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   UTILITY CLASSES & TYPOGRAPHY HELPERS
   -------------------------------------------------------------------------- */
.font-heading {
  font-family: var(--font-heading);
}

.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-dark-gym {
  background-color: var(--dark-bg) !important;
  color: #FFFFFF;
}

.bg-black-gym {
  background-color: var(--primary-black) !important;
  color: #FFFFFF;
}

.bg-light-grey {
  background-color: var(--light-grey) !important;
}

.bg-soft-pink {
  background-color: var(--soft-pink) !important;
}

.bg-gradient-primary {
  background: var(--grad-primary) !important;
  color: #FFFFFF;
}

.bg-gradient-accent {
  background: var(--grad-accent) !important;
  color: #FFFFFF;
}

.text-magenta {
  color: var(--magenta) !important;
}

.text-hotpink {
  color: var(--hot-pink) !important;
}

.text-purple {
  color: var(--deep-purple) !important;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--magenta);
  background: rgba(194, 24, 91, 0.08);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  border: 1px solid rgba(194, 24, 91, 0.15);
}

.section-tag.light {
  color: var(--hot-pink);
  background: rgba(236, 64, 122, 0.15);
  border-color: rgba(236, 64, 122, 0.25);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .section-title {
    font-size: 2.85rem;
  }
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-grey);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.bg-dark-gym .section-desc {
  color: var(--text-muted-dark);
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn-gym-primary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--grad-primary);
  color: #FFFFFF !important;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  box-shadow: 0 4px 18px rgba(91, 42, 134, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gym-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-accent);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn-gym-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: #FFFFFF !important;
}

.btn-gym-primary:hover::after {
  opacity: 1;
}

.btn-gym-outline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: transparent;
  color: #FFFFFF !important;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.btn-gym-outline:hover {
  background: #FFFFFF;
  color: var(--primary-black) !important;
  border-color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-gym-whatsapp {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #25D366;
  color: #FFFFFF !important;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-gym-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}

/* --------------------------------------------------------------------------
   TOP INFORMATION BAR
   -------------------------------------------------------------------------- */
.top-info-bar {
  background-color: var(--primary-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #D1D1D1;
  padding: 8px 0;
  position: relative;
  z-index: 1030;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #D1D1D1;
  transition: var(--transition);
}

.top-info-item i {
  color: var(--hot-pink);
  font-size: 0.9rem;
}

.top-info-item a {
  color: #D1D1D1;
}

.top-info-item a:hover {
  color: #FFFFFF;
}

.hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, 0.12);
  color: #38E57A;
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: #38E57A;
  border-radius: 50%;
  box-shadow: 0 0 8px #38E57A;
  display: inline-block;
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 229, 122, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 7px rgba(56, 229, 122, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 229, 122, 0); }
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #E0E0E0;
  font-size: 0.82rem;
  transition: var(--transition);
}

.top-social-link:hover {
  background: var(--grad-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   STICKY NAVBAR
   -------------------------------------------------------------------------- */
.navbar-gym {
  background-color: rgba(25, 25, 25, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  transition: var(--transition);
}

.navbar-gym.scrolled {
  padding: 8px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  background-color: rgba(17, 17, 17, 0.98);
}

.navbar-brand-img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

@media (max-width: 575px) {
  .navbar-brand-img {
    height: 40px;
  }
}

.nav-link-gym {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #E2E2E2 !important;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}

.nav-link-gym:hover {
  color: #FFFFFF !important;
}

.nav-link-gym::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--grad-accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.nav-link-gym:hover::after,
.nav-link-gym.active::after {
  transform: scaleX(1);
}

.nav-link-gym.active {
  color: var(--hot-pink) !important;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  color: #FFFFFF;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(236, 64, 122, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 100px 0 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.95) 0%, rgba(25, 25, 25, 0.85) 55%, rgba(91, 42, 134, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(194, 24, 91, 0.2);
  border: 1px solid rgba(236, 64, 122, 0.4);
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 22px;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.8rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #E0E0E0;
  max-width: 600px;
  margin-bottom: 35px;
}

.hero-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: #F0F0F0;
}

.trust-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   GOOGLE RATING SECTION / STRIP
   -------------------------------------------------------------------------- */
.rating-strip {
  background: var(--primary-black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  color: #FFFFFF;
}

.rating-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  transition: var(--transition);
}

.rating-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(194, 24, 91, 0.3);
  transform: translateY(-2px);
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: #FFFFFF;
}

.rating-stars {
  color: var(--gold-star);
  font-size: 1.15rem;
  margin: 6px 0;
  display: flex;
  gap: 4px;
}

.rating-label {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
}

/* --------------------------------------------------------------------------
   PROGRAM CARDS
   -------------------------------------------------------------------------- */
.program-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(194, 24, 91, 0.25);
}

.program-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.program-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.program-card:hover .program-img-wrapper img {
  transform: scale(1.08);
}

.program-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--grad-primary);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.program-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-black);
}

.program-desc {
  font-size: 0.95rem;
  color: var(--text-grey);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.program-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}

.program-benefits-list li {
  font-size: 0.88rem;
  color: #4A4A4A;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.program-benefits-list li i {
  color: var(--magenta);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   WHY CHOOSE US BOXES
   -------------------------------------------------------------------------- */
.feature-box {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 24, 91, 0.3);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.6rem;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(91, 42, 134, 0.3);
  transition: var(--transition);
}

.feature-box:hover .feature-icon-wrap {
  background: var(--grad-accent);
  transform: scale(1.05) rotate(3deg);
}

.feature-title {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.92rem;
  color: var(--text-grey);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   PERSONAL TRAINING SPOTLIGHT SECTION
   -------------------------------------------------------------------------- */
.pt-section {
  position: relative;
  background-color: var(--dark-bg);
  color: #FFFFFF;
  padding: 90px 0;
  overflow: hidden;
}

.pt-card-glow {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pt-card-glow img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.pt-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.pt-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(236, 64, 122, 0.15);
  border: 1px solid rgba(236, 64, 122, 0.3);
  color: var(--hot-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.pt-feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.pt-feature-text {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  margin: 0;
}

/* --------------------------------------------------------------------------
   EQUIPMENT SECTION
   -------------------------------------------------------------------------- */
.equipment-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 250px;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.equipment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.equipment-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 17, 17, 0.92) 100%);
  color: #FFFFFF;
  transition: var(--transition);
}

.equipment-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #FFFFFF;
}

.equipment-card:hover img {
  transform: scale(1.08);
}

.equipment-card:hover .equipment-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(91, 42, 134, 0.95) 100%);
}

/* --------------------------------------------------------------------------
   MEMBERSHIP CTA & PLAN CARDS
   -------------------------------------------------------------------------- */
.membership-cta-strip {
  background: var(--grad-primary);
  position: relative;
  padding: 80px 0;
  color: #FFFFFF;
  overflow: hidden;
}

.membership-cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 64, 122, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.plan-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(194, 24, 91, 0.3);
}

.plan-card.featured {
  border: 2px solid var(--magenta);
  background: #FFFFFF;
  box-shadow: 0 15px 35px rgba(194, 24, 91, 0.18);
}

.plan-popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.4);
}

.plan-name {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-pricing-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--magenta);
  background: var(--soft-pink);
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.plan-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.plan-features-list li {
  font-size: 0.94rem;
  color: #4A4A4A;
  padding: 10px 0;
  border-bottom: 1px dashed #EAEAEA;
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-features-list li:last-child {
  border-bottom: none;
}

.plan-features-list li i {
  color: var(--magenta);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   GALLERY SECTION & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}

.gallery-filter-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  color: #555555;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--grad-primary);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(91, 42, 134, 0.3);
}

.gallery-item-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 270px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background-color: #191919;
}

.gallery-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #FFFFFF;
  padding: 20px;
  text-align: center;
}

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

.gallery-item-card:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(15px);
  transition: transform 0.3s ease;
}

.gallery-item-card:hover .gallery-zoom-icon {
  transform: translateY(0);
}

.gallery-category-text {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hot-pink);
  margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   TRAINER CARDS
   -------------------------------------------------------------------------- */
.trainer-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
}

.trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(194, 24, 91, 0.25);
}

.trainer-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.trainer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trainer-card:hover .trainer-img-wrap img {
  transform: scale(1.06);
}

.trainer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(17, 17, 17, 0.85);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.trainer-info {
  padding: 26px;
}

.trainer-role {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 6px;
}

.trainer-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.trainer-bio {
  font-size: 0.92rem;
  color: var(--text-grey);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* --------------------------------------------------------------------------
   LOCATION & MAP SECTION
   -------------------------------------------------------------------------- */
.location-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 100%;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.location-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(194, 24, 91, 0.1);
  color: var(--magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.location-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--primary-black);
}

.location-text {
  font-size: 0.92rem;
  color: var(--text-grey);
  margin: 0;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 100%;
  min-height: 380px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}

/* --------------------------------------------------------------------------
   CONTACT FORMS & INPUTS
   -------------------------------------------------------------------------- */
.contact-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-label-custom {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
}

.form-control-custom,
.form-select-custom {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #E0E0E0;
  background-color: #FAFAFA;
  transition: var(--transition);
  color: #333333;
}

.form-control-custom:focus,
.form-select-custom:focus {
  background-color: #FFFFFF;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.15);
  outline: none;
}

/* --------------------------------------------------------------------------
   INNER PAGE BANNERS
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 90px 0 70px;
  color: #FFFFFF;
  overflow: hidden;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.92) 0%, rgba(91, 42, 134, 0.78) 100%);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .page-banner-title {
    font-size: 3.2rem;
  }
}

.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb-custom a {
  color: #E0E0E0;
}

.breadcrumb-custom a:hover {
  color: var(--hot-pink);
}

.breadcrumb-custom span {
  color: var(--hot-pink);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--primary-black);
  color: #D6D6D6;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #B5B5B5;
  margin-top: 18px;
  margin-bottom: 24px;
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--grad-accent);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #B5B5B5;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links-list a i {
  font-size: 0.75rem;
  color: var(--magenta);
  transition: transform 0.3s ease;
}

.footer-links-list a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-links-list a:hover i {
  color: var(--hot-pink);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: #B5B5B5;
}

.footer-contact-item i {
  color: var(--hot-pink);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #B5B5B5;
}

.footer-contact-item a:hover {
  color: #FFFFFF;
}

.footer-social-wrap {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social-btn:hover {
  background: var(--grad-accent);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(194, 24, 91, 0.4);
}

.footer-bottom {
  background: #0A0A0A;
  padding: 22px 0;
  margin-top: 60px;
  font-size: 0.88rem;
  color: #888888;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom a {
  color: #A0A0A0;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   FLOATING WHATSAPP & BACK TO TOP BUTTONS
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  color: #FFFFFF !important;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  font-size: 32px;
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
  color: #FFFFFF !important;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp-green);
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0.8;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.9; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  z-index: 1040;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: #FFFFFF;
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   LIGHTBOX MODAL CUSTOMIZATION
   -------------------------------------------------------------------------- */
.lightbox-modal .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

.lightbox-modal .modal-body {
  padding: 0;
  position: relative;
  text-align: center;
}

.lightbox-modal img {
  max-height: 85vh;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close-btn:hover {
  background: var(--magenta);
}

/* --------------------------------------------------------------------------
   RESPONSIVE ADJUSTMENTS
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--primary-black);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link-gym {
    padding: 10px 0 !important;
  }

  .nav-link-gym::after {
    display: none;
  }

  .navbar-nav .btn-gym-primary {
    margin-top: 15px;
    width: 100%;
  }

  .hero-section {
    padding: 80px 0 60px;
    text-align: center;
  }

  .hero-trust-indicators {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.95rem;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 84px;
    right: 24px;
  }
}
