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

.roundit{
border-radius:20px;
}


.mtop0{margin-top: 0px;}
.mtop5{margin-top: 5px;}
.mtop10{margin-top: 10px;}
.mtop15{margin-top: 15px;}
.mtop20{margin-top: 20px;}
.mtop30{margin-top: 30px;}
.mtop40{margin-top: 40px;}
.mtop50{margin-top: 50px;}
.mtop60{margin-top: 60px;}
.mtop60{margin-top: 70px;}
.mtop60{margin-top: 80px;}
.mtop60{margin-top: 90px;}
.mtop100{margin-top: 100px;}

.mbot0{margin-bottom: 0px;}
.mbot5{margin-bottom: 5px;}
.mbot10{margin-bottom: 10px;}
.mbot20{margin-bottom: 20px;}
.mbot30{margin-bottom: 30px;}
.mbot40{margin-bottom: 40px;}
.mbot50{margin-bottom: 50px;}
.mbot60{margin-bottom: 60px;}
.mbot60{margin-bottom: 70px;}
.mbot60{margin-bottom: 80px;}
.mbot60{margin-bottom: 90px;}
.mbot100{margin-bottom: 100px;}

/* Sub Page Header Related */
    .page-header {
			margin-top: 80px; /* Added to accommodate the taller header */
      background-color: var(--dark-accent);
      padding: 120px 5% 60px;
      text-align: center;
    }
    
    .page-header h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
    }
    
    .page-header h1:after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 60px;
      height: 4px;
      background-color: var(--primary);
      transform: translateX(-50%);
    }
    
    .breadcrumbs {
      margin-top: 1rem;
    }
    
    .breadcrumbs a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .breadcrumbs a:hover {
      color: var(--primary);
    }
    
    .breadcrumbs span {
      color: var(--text-secondary);
      margin: 0 10px;
    }
/* End Sub Page Header Related */

/* Single Column Section */
    .sc-content-container {
      padding: 4rem 0;
      max-width: 850px;
      margin: 0 auto;
      background-color: var(--dark-bg);
    }
    
    /* Single Column Content Styles */
    .sc-content-container h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 15px;
    }
    
    .sc-content-container h2:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 3px;
      background-color: var(--primary);
    }
    
    .sc-content-container h3 {
      font-size: 1.5rem;
      margin: 2rem 0 1rem;
      color: var(--primary);
    }
    
    .sc-content-container p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }
    
    .sc-content-container ul, .sc-content-container ol {
      margin-bottom: 1.5rem;
      padding-left: 2rem;
    }
    
    .sc-content-container li {
      color: var(--text-secondary);
      margin-bottom: 0.7rem;
      line-height: 1.6;
    }
    
    .sc-content-container img {
      width: 100%;
      border-radius: 10px;
      margin: 1.5rem 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .sc-content-container blockquote {
      background-color: rgba(255, 255, 255, 0.05);
      padding: 2rem;
      border-left: 4px solid var(--primary);
      margin: 2rem 0;
      border-radius: 0 10px 10px 0;
    }
    
    .sc-content-container blockquote p {
      font-style: italic;
      font-size: 1.2rem;
      margin-bottom: 0;
    }
    
    .sc-content-container blockquote cite {
      display: block;
      margin-top: 1rem;
      font-size: 1rem;
      font-style: normal;
      font-weight: 600;
      color: var(--primary);
    }
/* End Single Column Section */

/* Responsive Media Queries */
    @media (max-width: 1200px) {
      .sc-content-container {
        padding: 4rem 5%;
      }

.sidebar {
width: 100%;
}

    }
    
    @media (max-width: 768px) {
      
      .page-header h1 {
        font-size: 2rem;
      }
      
      .sc-content-container h2 {
        font-size: 1.8rem;
      }
      
    }
    
    @media (max-width: 576px) {
      .page-header {
        padding: 100px 5% 40px;
      }
      
      .page-header h1 {
        font-size: 1.8rem;
      }
      
      .sc-content-container h2 {
        font-size: 1.6rem;
      }
      
    }
/* End Responsive Media Queries */

/* ===== CONTACT PAGE STYLES - NEW CONTENT ===== */
.contact-container {
  padding: 4rem 0;
  background-color: var(--dark-bg);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 0 5%;
}

.contact-info {
  background-color: var(--dark-accent);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
  color: var(--text);
}

.contact-info h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.info-item {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.info-icon i {
  color: white;
  font-size: 1.2rem;
}

.info-content h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.info-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

.info-content a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--primary);
}

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

.hours-list li {
  padding: 0.3rem 0;
  color: var(--text-secondary);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-form {
  background-color: var(--dark-accent);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 15px;
  color: var(--text);
}

.contact-form h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
}

.form-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
}

.submit-btn:hover {
  background-color: #c41e32;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 29, 48, 0.4);
}

.map-section {
  margin-top: 4rem;
  padding: 0 5%;
}

.map-section h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 15px;
  color: var(--text);
}

.map-section h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  transform: translateX(-50%);
}

.map-embed {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== END CONTACT PAGE STYLES ===== */

    /* ===== MEMBERSHIP OPTIONS PAGE STYLES - NEW CONTENT ===== */
    .membership-container {
      padding: 4rem 0;
      background-color: var(--dark-bg);
      max-width: 1200px;
      margin: 0 auto;
    }

    .membership-intro {
      text-align: center;
      padding: 0 5% 3rem;
    }

    .membership-intro h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
      color: var(--text);
    }

    .membership-intro h2:after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 60px;
      height: 4px;
      background-color: var(--primary);
      transform: translateX(-50%);
    }

    .membership-intro p {
      font-size: 1.2rem;
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 800px;
      margin: 0 auto;
    }

    .membership-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      padding: 0 5%;
    }

    .membership-card {
      background-color: var(--dark-accent);
      border-radius: 15px;
      padding: 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 2px solid transparent;
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .membership-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
      border-color: var(--primary);
      text-decoration: none;
      color: inherit;
    }

    .membership-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), #ff4d4d);
    }

    .membership-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary), #ff4d4d);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      position: relative;
      z-index: 2;
    }

    .membership-icon i {
      font-size: 2rem;
      color: white;
    }

    .membership-card h3 {
      font-size: 1.8rem;
      color: var(--text);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .membership-description {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
      min-height: 60px;
    }

    .membership-btn {
      background: linear-gradient(135deg, var(--primary), #ff4d4d);
      color: white;
      border: none;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-decoration: none;
      display: inline-block;
      position: relative;
      overflow: hidden;
    }

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

    .membership-btn:hover::before {
      left: 100%;
    }

    .membership-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(229, 29, 48, 0.4);
    }

    .membership-btn:active {
      transform: translateY(-1px);
    }

    /* Special styling for featured membership */
    .membership-card.featured {
      border-color: var(--primary);
      background: linear-gradient(135deg, var(--dark-accent), rgba(229, 29, 48, 0.05));
      position: relative;
    }

    .membership-card.featured:hover {
      border-color: var(--primary);
      text-decoration: none;
      color: inherit;
    }

    .membership-card.featured::after {
      content: 'POPULAR';
      position: absolute;
      top: 20px;
      right: -30px;
      background: var(--primary);
      color: white;
      padding: 5px 40px;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 1px;
      transform: rotate(45deg);
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .membership-card.featured .membership-icon {
      background: linear-gradient(135deg, #ff4d4d, var(--primary));
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(229, 29, 48, 0.4);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(229, 29, 48, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(229, 29, 48, 0);
      }
    }

    /* Additional info section */
    .membership-info {
      background-color: var(--dark-accent);
      margin-top: 4rem;
      padding: 3rem 5%;
      border-radius: 15px;
      text-align: center;
    }

    .membership-info h3 {
      font-size: 2rem;
      color: var(--text);
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
    }

    .membership-info h3:after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 50px;
      height: 3px;
      background-color: var(--primary);
      transform: translateX(-50%);
    }

    .membership-info p {
      font-size: 1.1rem;
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 800px;
      margin: 0 auto 2rem;
    }

    .contact-cta {
      background: linear-gradient(135deg, var(--primary), #ff4d4d);
      color: white;
      border: none;
      padding: 1.2rem 3rem;
      font-size: 1.1rem;
      font-weight: 600;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      text-decoration: none;
      display: inline-block;
    }

    .contact-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(229, 29, 48, 0.4);
    }
    /* ===== END MEMBERSHIP OPTIONS PAGE STYLES ===== */

    /* Main Content */
    .content-container {
      display: flex;
      padding: 4rem 0;
      max-width: 1200px;
      margin: 0 auto;
      background-color: var(--dark-bg);
    }
    
    .main-content {
      flex: 2;
      padding-right: 3rem;
    }
    
    .sidebar {
      flex: 1;
      background-color: rgba(255, 255, 255, 0.05);
      padding: 2rem;
      border-radius: 10px;
      height: fit-content;
    }
    
    /* Main Content Styles */
    .main-content a {
      color:#FFFFFF;
      font-weight:bold;
    }

    .main-content a:hover {
      color:#F2F2F2;
      text-decoration: none;
    }

    .main-content h2 {
      font-size: 2rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 15px;
    }
    
    .main-content h2:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 3px;
      background-color: var(--primary);
    }
    
    .main-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
    }
    
    .main-content ul {
      margin-bottom: 1.5rem;
      padding-left: 2rem;
    }
    
    .main-content ul li {
      color: var(--text-secondary);
      margin-bottom: 0.7rem;
      line-height: 1.6;
    }

		.nolistb {
			list-style-type: none;
		}
    
    .main-content img {
      width: 100%;
      border-radius: 10px;
      margin: 1.5rem 0;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .cta-btn {
      background-color: var(--primary);
      color: var(--text);
      border: none;
      padding: 0.8rem 2rem;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 30px;
      cursor: pointer;
      transition: transform 0.3s, background-color 0.3s;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: inline-block;
      margin-top: 1rem;
      text-decoration: none;
    }
    
    .cta-btn:hover {
      transform: translateY(-3px);
      background-color: #ff3333;
    }
    
    /* Sidebar Styles */
    .sidebar h3 {
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 10px;
    }
    
    .sidebar h3:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background-color: var(--primary);
    }
    
    .sidebar-widget {
      margin-bottom: 2.5rem;
    }
    
    .sidebar-widget:last-child {
      margin-bottom: 0;
    }
    
    /* Membership Options */
    .membership-plan {
      background: linear-gradient(135deg, #2a2a2a, #404040);
      border: 2px solid rgba(255, 77, 77, 0.3);
      padding: 1.5rem;
      border-radius: 10px;
      text-align: center;
      margin-bottom: 1rem;
      position: relative;
      overflow: hidden;
    }
    
    .membership-plan::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s;
    }
    
    .membership-plan:hover::before {
      left: 100%;
    }
    
    .membership-plan h4 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: var(--text);
    }
    
    .membership-plan .price {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }
    
    .membership-plan .price span {
      font-size: 1rem;
      font-weight: 400;
      color: var(--text-secondary);
    }
    
    .membership-plan p {
      color: var(--text-secondary);
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }
    
    .membership-plan .btn-outline {
      background: var(--primary);
      border: 2px solid var(--primary);
      color: white;
      padding: 0.6rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s;
      display: inline-block;
    }
    
    .membership-plan .btn-outline:hover {
      background: transparent;
      color: var(--primary);
      transform: translateY(-2px);
    }
    
    /* Quick Contact */
    .quick-contact {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      border-radius: 10px;
      border-left: 4px solid var(--primary);
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    
    .contact-item:last-child {
      margin-bottom: 0;
    }
    
    .contact-item i {
      width: 30px;
      color: var(--primary);
      margin-right: 15px;
    }
    
    .contact-item p {
      margin: 0;
      color: var(--text-secondary);
    }
    
    .contact-item a {
      color: var(--text-secondary);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .contact-item a:hover {
      color: var(--primary);
    }
    
    /* Testimonial */
    .testimonial-box {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 1.5rem;
      border-radius: 10px;
      position: relative;
    }
    
    .testimonial-box:before {
      content: '"';
      font-size: 4rem;
      color: var(--primary);
      position: absolute;
      top: -10px;
      left: 15px;
      line-height: 1;
    }
    
    .testimonial-text {
      font-style: italic;
      color: var(--text-secondary);
      margin-bottom: 1rem;
      padding-left: 30px;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      padding-left: 30px;
    }
    
    .author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      font-weight: 700;
      color: white;
    }
    
    .author-info h5 {
      margin: 0;
      font-size: 1rem;
      color: var(--text);
    }
    
    .author-info p {
      margin: 0;
      font-size: 0.8rem;
      color: var(--text-secondary);
    }
    
    .stars {
      color: #ffd700;
      margin-top: 0.5rem;
    }

    /* Gallery */
    .pg-gallery-container {
      --pg-primary: #ff4d4d;
      --pg-overlay-color: rgba(0, 0, 0, 0.9);
      --pg-hover-shadow: rgba(0, 0, 0, 0.3);
      --pg-hover-overlay: rgba(255, 255, 255, 0.1);
      --pg-text: #ffffff;
      --pg-text-secondary: #b3b3b3;
      --pg-bg-dark: rgba(255, 255, 255, 0.05);
    }
    
    .pg-gallery-container * {
      box-sizing: border-box;
    }
    
    .pg-gallery-container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 20px;
      background-color: #121212;
      min-height: 100vh;
    }

    /* Filter Buttons */
    .pg-filters {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 30px;
    }
    
    .pg-filter-btn {
      background: var(--pg-bg-dark);
      border: 2px solid transparent;
      padding: 8px 20px;
      border-radius: 25px;
      color: var(--pg-text);
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: inherit;
      font-size: 14px;
      outline: none;
    }
    
    .pg-filter-btn:hover,
    .pg-filter-btn.pg-active {
      background: var(--pg-primary);
      color: var(--pg-text);
      border-color: var(--pg-primary);
    }
    
    /* Masonry Grid */
    .pg-gallery {
      column-count: 4;
      column-gap: 20px;
      margin: 0;
      padding: 0;
    }
    
    .pg-item {
      position: relative;
      display: inline-block;
      width: 100%;
      margin-bottom: 20px;
      break-inside: avoid;
      overflow: hidden;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .pg-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px var(--pg-hover-shadow);
    }
    
    .pg-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s ease, filter 0.3s ease;
    }
    
    .pg-item:hover img {
      transform: scale(1.03);
      filter: brightness(1.05);
    }
    
    .pg-item::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--pg-hover-overlay);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .pg-item:hover::after {
      opacity: 1;
    }
    
    /* Hide filtered items */
    .pg-item.pg-hidden {
      display: none;
    }
    
    /* Lightbox */
    .pg-lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--pg-overlay-color);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    
    .pg-lightbox.pg-active {
      display: flex;
    }
    
    .pg-lightbox-content {
      max-width: 90vw;
      max-height: 90vh;
      position: relative;
    }
    
    .pg-lightbox img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 4px;
    }
    
    .pg-close {
      position: absolute;
      top: -40px;
      right: 0;
      background: none;
      border: none;
      color: white;
      font-size: 28px;
      cursor: pointer;
      transition: opacity 0.3s;
      font-family: Arial, sans-serif;
      line-height: 1;
      padding: 0;
      width: 30px;
      height: 30px;
    }
    
    .pg-close:hover {
      opacity: 0.7;
    }

/* Responsive Design */
@media (max-width: 1200px) {
  .sc-content-container {
    padding: 4rem 5%;
  }
  
  .membership-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}


/* Responsive masonry columns */
  @media (max-width: 1200px) {
   .pg-gallery {
   	column-count: 3;
    }
  }

@media (max-width: 768px) {
  header {
    padding: 1rem 3%;
  }
  
  .logo img {
    height: 100px;
  }
  
  .logo h1 {
    font-size: 28px;
  }

  header.scrolled .logo img {
    height: 70px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .menu-btn {
    display: flex;
  }
  
  .footer-col {
    width: 100%;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .sc-content-container h2 {
    font-size: 1.8rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 3%;
  }
  
  .contact-info,
  .contact-form {
    padding: 2rem;
  }
  
  .contact-info h2,
  .contact-form h2,
  .map-section h2 {
    font-size: 1.8rem;
  }
  
  .info-item {
    margin-bottom: 2rem;
  }
  
  .info-icon {
    width: 45px;
    height: 45px;
    margin-right: 1rem;
  }
  
  .info-icon i {
    font-size: 1rem;
  }
  
  .info-content h3 {
    font-size: 1.1rem;
  }
  
  .map-embed {
    height: 300px;
  }
  
  .membership-container {
    padding: 2rem 0;
  }
  
  .membership-intro h2 {
    font-size: 2rem;
  }
  
  .membership-intro p {
    font-size: 1.1rem;
  }
  
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 3%;
  }
  
  .membership-card {
    padding: 2rem;
  }
  
  .membership-card h3 {
    font-size: 1.6rem;
  }
  
  .membership-icon {
    width: 70px;
    height: 70px;
  }
  
  .membership-icon i {
    font-size: 1.8rem;
  }
  
  .membership-info {
    padding: 2rem 3%;
  }
  
  .membership-info h3 {
    font-size: 1.8rem;
  }

      .pg-gallery-container {
        padding: 15px;
      }
      
      .pg-gallery {
        column-count: 2;
        column-gap: 15px;
      }
      
      .pg-item {
        margin-bottom: 15px;
      }
      
      .pg-filters {
        margin-bottom: 20px;
      }
      
      .pg-filter-btn {
        padding: 6px 16px;
        font-size: 13px;
      }
      
      .pg-lightbox {
        padding: 10px;
      }
      
      .pg-close {
        top: -35px;
        font-size: 24px;
      }

}

@media (max-width: 576px) {
  .page-header {
    padding: 100px 5% 40px;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .sc-content-container h2 {
    font-size: 1.6rem;
  }
  
  .contact-container {
    padding: 2rem 0;
  }
  
  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-info h2,
  .contact-form h2,
  .map-section h2 {
    font-size: 1.6rem;
  }
  
  .form-description {
    font-size: 1rem;
  }
  
  .submit-btn {
    padding: 0.8rem 2rem;
  }
  
  .logo img {
    height: 80px;
    border: 0px;
  }
  
  header.scrolled .logo img {
    height: 60px;
  }
  
  .membership-intro h2 {
    font-size: 1.8rem;
  }
  
  .membership-card {
    padding: 1.5rem;
  }
  
  .membership-card h3 {
    font-size: 1.4rem;
  }
  
  .membership-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .contact-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

    @media (max-width: 480px) {
      .pg-gallery {
        column-count: 1;
        column-gap: 0;
      }
      
      .pg-item {
        border-radius: 6px;
        margin-bottom: 15px;
      }
      
      .pg-filters {
        gap: 8px;
      }
      
      .pg-filter-btn {
        padding: 6px 14px;
        font-size: 12px;
      }
    }


/* Prevent body scroll when lightbox is open */
 body.pg-no-scroll {
 	overflow: hidden;
 }


.membership-card-blank {
      background-color: #121212;
      border-radius: 15px;
      padding: 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .membership-card-blank:hover {
      text-decoration: none;
      color: inherit;
    }

    .membership-card-blank::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
    }

/* ===== SIDEBAR RESPONSIVE FIXES ===== */

/* Update the existing content-container media queries */
@media (max-width: 1200px) {
  .content-container {
    flex-direction: column; /* Stack vertically */
    padding: 3rem 5%; /* Add horizontal padding */
  }
  
  .main-content {
    padding-right: 0; /* Remove right padding */
    margin-bottom: 2rem; /* Add space before sidebar */
  }
  
  .sidebar {
    width: 100%;
    order: 2; /* Make sure sidebar comes after main content */
  }
}

@media (max-width: 768px) {
  .content-container {
    padding: 2rem 3%; /* Reduce padding for mobile */
  }
  
  .main-content {
    margin-bottom: 2rem;
  }
  
  .sidebar {
    padding: 1.5rem; /* Reduce sidebar padding */
    margin-top: 1rem;
  }
  
  /* Adjust sidebar widgets for mobile */
  .sidebar-widget {
    margin-bottom: 2rem;
  }
  
  .sidebar h3 {
    font-size: 1.3rem;
  }
  
  /* Make membership plan more compact on mobile */
  .membership-plan {
    padding: 1.2rem;
  }
  
  .membership-plan h4 {
    font-size: 1.2rem;
  }
  
  .membership-plan .price {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .content-container {
    padding: 1.5rem 4%; /* Further reduce padding */
  }
  
  .sidebar {
    padding: 1rem; /* Even less padding for small screens */
    border-radius: 8px; /* Slightly smaller border radius */
  }
  
  /* Stack contact items vertically on very small screens */
  .contact-item {
    flex-direction: row;
    text-align: left;
  }
  
  .contact-item i {
    margin-right: 10px;
    width: 25px;
  }
  
  /* Adjust testimonial for small screens */
  .testimonial-box {
    padding: 1.2rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
    padding-left: 25px;
  }
  
  .author-avatar {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .author-info h5 {
    font-size: 0.9rem;
  }
}

/* ===== ADDITIONAL IMPROVEMENTS ===== */

/* Make images in main content responsive */
@media (max-width: 768px) {
  .main-content img[style*="float"] {
    float: none !important;
    width: 100% !important;
    margin: 1rem 0 !important;
    padding: 0 !important;
  }
  
  /* Adjust trainer bio images specifically */
  .main-content img[src*="personal-training"] {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

/* Improve button spacing on mobile */
@media (max-width: 576px) {
  .cta-btn {
    width: 100%;
    text-align: center;
    margin: 1rem 0;
  }
}


/* Footer Center Alignment Fix */
.footer-content {
  display: flex;
  justify-content: center; /* Changed from space-between to center */
  gap: 3rem; /* Add consistent gaps between columns */
  padding: 0 5% 3rem;
  flex-wrap: wrap;
  max-width: 1800px; /* Add max-width to prevent excessive spreading */
  margin: 0 auto; /* Center the footer content container */
}

.footer-col {
  width: auto; /* Changed from fixed 23% to auto */
  min-width: 200px; /* Ensure minimum width for readability */
  flex: 1; /* Allow columns to grow equally */
  max-width: 280px; /* Prevent columns from getting too wide */
}

/* Keep social icons white on hover instead of red background - applies to all screen sizes */
.social-icon:hover {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer-content {
    gap: 2rem;
  }
  
  .footer-col {
    min-width: 180px;
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    justify-content: center;
    gap: 2rem;
  }
  
  .footer-col {
    width: 48%;
    min-width: 150px;
    max-width: none;
  }
}

@media (max-width: 576px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-col {
    width: 100%;
    max-width: 400px;
  }
  
  /* Center the red lines under headings on mobile */
  .footer-col h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Center social icons on mobile */
  .social-links {
    justify-content: center;
  }
}