 /* Custom dark theme styling */
 body {
  background-color: #363636;
  color: #fff;
  font-family: 'GothamPro', 'HelveticaNeue', Arial, sans-serif;
  font-weight: 400; /* normal */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
a, a:hover {
  color: #fff;
  text-decoration: none;
}
.container {
  max-width: 1500px;
}
header {
  padding: 1rem 2rem;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}
.logo {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #fff;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}
nav li {
  position: relative;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
}
nav li.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}

/* Navbar base */
nav {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.logo {
  flex: 0 0 auto;
  font-weight: bold;
  font-size: 1.5rem;
}
.container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; /* allows wrapping on small screens */
}
.menu a {
  color: white;
  text-decoration: none;
  padding-bottom: 0.3rem;
}
.menu a.active {
  border-bottom: 2px solid red;
  font-weight: bold;
}
.toggle {
  display: none;
  flex: 0 0 auto;
  font-size: 1.5rem;
  cursor: pointer;
}
/* Mobile styles */
@media (max-width: 767px) {
  .container-fluid {
    flex-direction: column; /* logo on row 1, menu on row 2 */
    align-items: center;
  }
  .menu {
    margin-top: 0.7rem; 
    gap: 0.7rem; /* tighter spacing on mobile */
  }
  .menu a {
    font-size: 0.6rem;        /* slightly smaller text on mobile */
  }
}
/* @media (max-width: 767px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #121212;
    position: absolute;
    top: 3.5rem; */
    /* left: 0;  */
    /* right: 0;
    padding: 1rem;
  }
  .menu.show {
    display: flex;
  }
  .toggle {
    display: block;
    margin-left: auto;
  }

} */


/* For bold text */

h1, h2, h3, .bold-text {
  font-family: 'GothamPro', 'HelveticaNeue', Arial, sans-serif;
  font-weight: 700;
}
/* For light text */
.light-text, .about-text p {
  font-family: 'GothamPro', 'HelveticaNeue', Arial, sans-serif;
  font-weight: 300;
}
/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-weight: 300;
  font-size: 6rem;
  margin: 0;
  line-height: 1;
  letter-spacing: 4px;
}
.hero p {
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-top: 1rem;
}
.hero-logo {
  height: 50px;  /* smaller size for mobile */
}
/* About Section */
.about {
  height: 100%;               /* full viewport height */
  display: flex;               /* use flexbox */
  justify-content: center;     /* center horizontally */
  align-items: center;         /* center vertically */
  padding: 2rem;               /* optional padding */
  background-color: #363636;   /* or your chosen background */
  text-align: center;          /* center text */
  flex-direction: row;      /* stack items vertically */
  gap: 2rem;                   /* space between items */
}

/* Optional: style for text container */
.about-text {
  max-width: 700px;
  color: #ccc;
}

/* Optional: if you want the image below the text on small screens */
@media (max-width: 768px) {
  .about {
    flex-direction: row;
    text-align: left;
  }
  .about-text {
    max-width: 50%;
    text-align: left;
  }
  .about-image {
    max-width: 50%;
  }
}
.about-text h2 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 300;
  color: #ccc;
}
.about-image {
  flex: 1;
  max-width: 500px;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
  /* box-shadow: 0 0 15px rgba(0,0,0,0.8); */
  object-fit: cover;
}

.about-logo {
  max-width: 150px;   /* adjust size if needed */
  margin-bottom: 1.5rem;  /* space between logo and text */
}
/* Space Section */
.space-section {
  padding: 3rem 0;
  background-color: #363636;
  color: white;
  text-align: center;
  overflow-x: hidden; /* prevent horizontal scroll */
  /* text-align: center; or left if you prefer */
}

.space-section h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}

/* Full width image container */
.space-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100vw;  /* full viewport width */
  max-width: 100vw;
  margin: 0 auto;
}

/* Each image takes 25% */
.space-images img {
  width: 100%;
  /* height: 400px; adjust as needed */
  object-fit: cover;
  display: block;
}

.space {
  background-color: #222;
  padding: 4rem 2rem;
  color: white;
  max-width: 1500px;
  margin: 0 auto;
}

.space h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

/* Grid container */
.space-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 0; /* no gap for seamless */
  width: 100%;
}

/* Images styling */
.space-grid img {
  width: 100%;
  height: 200px; /* adjust height as needed */
  object-fit: cover;
  display: block;
}
.full-width-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow-x: hidden;
}

/* Custom Slider */
.custom-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  flex: 0 0 25%; /* always 3 slides per screen on desktop */
  padding: 10px;
  box-sizing: border-box;
}
.slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
  display: inline-block;
  cursor: pointer;
}
.slider-dots span.active {
  background: #ffffff;
}
@media (max-width: 768px) {
  .slide {
    flex: 0 0 100%; /* 1 per screen on mobile */
  }
}

/* Team slider */
.team-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  text-align: center; /* center the text below */
  background: #000; /* optional */
}

.team-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.team-slide {
  flex: 0 0 16.6%; /* 6 slides per screen on desktop */
  padding: 10px;
  box-sizing: border-box;
  text-align: -webkit-center;
}

.team-slide img {
  /* width: 100%; */
  /* height: auto; */
  /* border-radius: 10px; */
  display: block;
  /* width: 211px;         fixed width */
  height: 628px;        /* fixed height */
  object-fit: cover;
}
/* Dots for team slider */
.team-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.name-overlay {
  margin-top: 10px;        /* gap below image */
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}
.team-slider-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
  display: inline-block;
  cursor: pointer;
}

.team-slider-dots span.active {
  background: #ffffff;
}
.team-slider .slide {
  flex: 0 0 calc(100% / 5); /* desktop shows 5 */
}

/* Mobile view: only 1 at a time */
@media (max-width: 768px) {
  .team-slide {
    flex: 0 0 33.333%; /* 1 per screen on mobile */
  }
  .team-slider .slide {
    flex: 0 0 50%; /* mobile shows 1 */
  }
}

@media (min-width: 576px) and (max-width: 1024px) {
  .team-slide { flex: 0 0 33.333%; } /* 3 images */
}
@media (min-width: 1025px) {
  .team-slide { flex: 0 0 16.666%; } /* 6 images */
}

/* Swiper */
/* .swiper {
  width: 100%;
  padding-bottom: 3rem;
}
.swiper-slide {
  width: auto;
  max-width: 300px;
  border-radius: 8px;
  overflow: hidden;
}
.swiper-slide img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  height: 300px;
} */

/* App Download Section */
.app-download {
  display: flex;
  width: 100vw;          /* full viewport width */
  height: 400px;         /* adjust height as needed */
  background: #fff;
  color: #222;
  padding: 0 2rem;
  align-items: stretch;  /* stretch children to full height */
  box-sizing: border-box;
}
.app-download img {
  height: 100%;        /* fill container height */
  width: auto;         /* maintain aspect ratio */
  /* border-radius: 20px; */
  /* box-shadow: 0 0 25px rgba(0,0,0,0.15); */
  object-fit: contain; /* contain inside the height */
}
.app-download-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
  max-width: 600px;  /* optional max width on text */
}
.app-download-text h2 {
  font-weight: 350;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #363636;
}
.app-download-text p {
  font-weight: 300;
  font-size: 1.25rem;
  color: #b3b3b3;
}
.store-buttons img {
  height: 50px;   /* adjust size of icons */
  transition: transform 0.3s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .download-app {
    flex-direction: column;
    text-align: center;
  }

  .store-buttons {
    justify-content: center;
  }
}

/* Team Section */
.team-section {
  background-color: #363636;
  color: white;
  padding: 4rem 0.5rem;
  text-align: center;
}

.team-section h2 {
  font-weight: 300;
  font-size: 3rem;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;

  max-width: 1500px;
  margin-left: 13vw;  /* pushes title about 25% from left viewport */
  margin-right: auto; /* keep right margin auto for alignment */
  text-align: left;
}

.team-members {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  max-width: 1500px;
  margin: 0 auto;
  justify-content: center;
}

.team-member {
  flex: 1 1 0;
  max-width: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.team-member img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Text overlay at bottom
.name-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 12px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
} */



/* Footer */
/* Footer base */
.footer {
  background-color: #1a1a1a;
  color: #eee;
  padding: 3rem 1rem;
  font-family: 'Helvetica Neue', sans-serif;
  width: 100%;
}

/* Container inside footer to limit content width but keep padding */
.footer-container {
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center; /* Center horizontally */
}
.footer-logo {
  margin-bottom: 1rem;
  max-width: 150px;
  height: 30px;
}
/* Each footer column */
.footer-col {
  flex: 1 1 300px;
  min-width: 250px;
}

/* Left column styles */
.footer-left h2 {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.footer-left p.tagline {
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.footer-left .social-icons {
  font-size: 1.5rem;
  display: flex;
  gap: 1rem;
}

.footer-left .social-icons a {
  color: #eee;
  text-decoration: none;
}

/* Middle column */
.footer-middle h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #bbb;
}

.footer-middle p {
  margin: 0.2rem 0;
  color: #bbb;
}

/* Right column */
.footer-right h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-right form input,
.footer-right form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: #333;
  border: none;
  color: #eee;
  font-family: inherit;
  font-size: 1rem;
  resize: none;
}

.footer-right form button {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  border: 1px solid #eee;
  color: #eee;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.footer-right form button:hover {
  background-color: #444;
}

/* Responsive: stack columns on narrow screens */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-col {
    max-width: 100%;
  }
}

/* Responsive */
@media (max-width: 576px) {
  header {
    padding: 1.5rem;
  }
  nav ul {
    gap: 1.2rem;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero p {
    font-size: 0.7rem;
  }
  .team-slider .swiper-slide {
    max-width: 140px;
  }
  .about {
    height: 100%;      
  }
  .app-download {
    height: 500px;         /* adjust height as needed */
  }
  .about-text, .about-image, .app-download-text, .app-download img {
    max-width: 70%;
  }
  .app-download-text h2 {
    font-size: 1.1rem;
  }
  .app-download-text p {
    font-size: 0.9rem;
  }
  .space-section h2 {
    font-size: 2rem;
  }
  .team-section h2 {
    font-size: 2rem;
  }
  .team-slide img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .space-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .space-grid img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .space-grid {
    grid-template-columns: 1fr;
  }
  .space-grid img {
    height: 200px;
  }
}
@media (max-width: 768px) {
  .space-images img {
    width: 50vw;  /* two images per row on smaller screens */
    height: 250px;
  }
  .about, .app-download {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }

  .about-text, .about-image, .app-download-text, .app-download img {
    max-width: 100%;
    margin: 0 auto;
  }

  .space-images {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    gap: 0;
  }

  .space-images img {
    flex: 0 0 100vw;      /* full viewport width */
    max-width: 100vw;
    scroll-snap-align: start;
    height: 250px;        /* adjust height as needed */
    object-fit: cover;
  }

  /* Optional: hide scrollbar */
  .space-images::-webkit-scrollbar {
    display: none;
  }
  .space-images {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;     /* Firefox */
  }

  .team-members {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    max-width: 100%;
    justify-content: flex-start;
  }

  .team-member {
    flex: 0 0 80vw;       /* 80% viewport width on mobile */
    max-width: none;      /* override desktop max-width */
    scroll-snap-align: center;
  }

  .team-member img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .team-section h2 {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }
}
@media (max-width: 1024px) {
  .about-text, .about-image, .app-download-text, .app-download img {
    max-width: 100%;
    margin: 0 auto;
  }
  .about {
      flex-direction: column;
  }
}

@media (max-width: 480px) {
  .space-images img {
    height: 200px;
    width: 100vw;  /* one image per row on very small screens */
  }
  .space-images {
    grid-template-columns: 1fr;
  }
}
@font-face {
  font-family: 'GothamPro';
  src: url('Font/gothampro.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'GothamPro';
  src: url('Font/gothampro_bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'GothamPro';
  src: url('Font/gothampro_light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

/* Helvetica Neue can be system font fallback or add if you have file */
@font-face {
  font-family: 'HelveticaNeue';
  src: url('Font/HelveticaNeue.ttc') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Studios page styles */
.studios-page {
  max-width: 100vw; /* full viewport width */
  margin: 3rem auto 5rem;
  /* padding: 0 2rem; */
}
.page-title-wrapper {
  background-color: #000;
  padding: 6rem 2rem;
}
.page-title {
  font-weight: 700;
  font-size: 5rem; /* keep it big */
  letter-spacing: 0.12em;
  margin-bottom: 10rem; /* doubled space below the heading */
  padding: 6rem 2rem; /* add vertical padding top and bottom */
  /* background-color: #000; black background */
  color: white; /* ensure text is white */
  text-align: left;
  max-width: 100vw;
}

/* Each studio block */
.studio-item {
  position: relative;
  height: 100vh;  /* increased height */
  /* margin-bottom: 5rem; */
  background-size: cover;
  /* background-position: center center; */
  display: flex;
  align-items: flex-start;
  padding: 5rem 4rem 0 6rem; /* more padding for text */
  box-sizing: border-box;
  /* box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.45); slightly stronger overlay */
}

.studio-text {
  max-width: 600px; /* wider text container */
  color: white;
}

.studio-text h2 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
}

.studio-text p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  max-width: 600px; /* wider text container */
}
.image-content {
  position: absolute;
  bottom: 2rem;   /* space from bottom */
  left: 2rem;     /* space from left */
  color: white;   /* or whatever color fits */
  max-width: 40%; /* optional to limit content width */
  z-index: 10;    /* ensure it’s above the image */
  padding: 5rem 4rem 6rem;
}
.image-section {
  position: relative;
  /* image styles here */
}
/* Background images - replace paths with your assets */
.studio-form {
  background-image: url('../media/image/w2.jpg');
}

.studio-cycle {
  background-image: url('../media/image/w3.jpg');
}

.studio-rack {
  background-image: url('../media/image/w1.jpg');
}

.studio-form2 {
  background-image: url('assets/images/studio-form2.jpg');
}
.desktop-text { display: block; }
.mobile-text { display: none; }
/* Responsive */
@media (max-width: 768px) {
  .studio-item {
    /* height: 500px; taller on mobile too */
    padding: 3rem 2rem 0 3rem;
    height: 60vh; /* smaller than full screen, so less cropping */
    background-size: cover;
    background-position: center;
  }
  .desktop-text { display: none; }
  .mobile-text { display: block; }
  .studio-text {
    /* max-width: 100%; */
    position: absolute;
    bottom: 1rem;     /* space from bottom */
    left: 1rem;       /* space from left */
    right: 1rem;      /* prevent overflowing text */
    max-width: 90%;   /* keep text box from being too wide */
    padding: 0.5rem 0.75rem;
    /* background: rgba(0,0,0,0.4); optional: dark overlay for readability */
  }
  .studio-text h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .studio-text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .page-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}

/* Page container */
.membership-page {
  background-color: #363636;  /* dark background */
  color: white;
  padding: 6rem 4rem; /* more vertical spacing */
  font-family: 'GothamPro', 'Helvetica Neue', sans-serif;
}

/* Main heading */
.membership-page h1.page-title {
  font-size: 4rem;
  max-width: 100%;
  /* padding: 0 1rem; */
  word-break: break-word; /* break long words if any */
}

/* Section subtitle */
.membership-page h2.section-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

/* Container for cards */
.membership-page .cards-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Individual card style */
.membership-card {
  background-color: #868686; /* translucent */
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  width: 300px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Price */
.membership-card .price {
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
}

/* Package title */
.membership-card .package-title {
  background-color: #4c4c4c;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  margin: 0 auto;
  width: max-content;
  letter-spacing: 0.05em;
  width: 90%;
}

/* Details list */
.membership-card ul.details {
  list-style-type: disc;
  padding-left: 1.5rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}

/* Discount card style */
.discount-card {
  background-color: #000000; /* translucent */
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  width: 300px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.discount-title{
  font-weight: 700;
}
.discount-brief{
  font-weight: 200;
  color: darkgrey;
}
.discount-details{
  font-weight: 400;
}
.dual-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6rem;   /* horizontal gap between the two sections */
  align-items: start;
  margin-top: 5rem;   /* vertical gap from the section above */
  justify-content: center;
}

.dual-section .section-block {
  margin-top: 0; /* remove any extra margin each block may add */
}
/* Dual membership section start */
/* ===== Dual Membership Section ===== */
.dual-membership-section {
  margin: 5rem auto;
  color: white;
  font-family: 'GothamPro', 'Helvetica Neue', sans-serif;
  max-width: 625px; /* ✅ narrower section for just 2 cards */
  text-align: center;
}

/* ===== Headings Row ===== */
.dual-heading-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.dual-heading {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
  /* border-bottom: 2px solid #4c4c4c; */
  padding-bottom: 0.5rem;
}

/* ===== Membership Cards Container ===== */
.dual-membership-container {
  display: flex;
  justify-content: center; /* ✅ centered cards */
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: nowrap;
  margin: 0 auto;
}

/* ===== Cards ===== */
.dual-card {
  flex: 0 0 48%; /* ✅ narrower cards */
  background-color: #868686;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dual-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.6);
}

/* Inner elements */
.dual-card .price {
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.dual-card .package-title {
  background-color: #4c4c4c;
  padding: 0.8rem 1.2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1.1rem;
  display: inline-block;
  margin: 0 auto 1rem;
  width: 100%;
}

.dual-card ul.details {
  list-style-type: disc;
  padding-left: 0.2rem;
  font-size: 0.95rem;
  text-align: left;
  flex-grow: 1;
}
.dual-card ol {
  padding: 0;
}

/* ===== Responsive Fix ===== */
@media (max-width: 768px) {
  .dual-membership-section {
    max-width: 100%;
    /* padding: 0 1rem; */
  }

  .dual-heading-row {
    gap: 1rem;
  }

  .dual-heading {
    font-size: 0.9rem;
    /* border-bottom: 1px solid #555; */
  }

  .dual-membership-container {
    gap: 0.8rem;
  }

  .dual-card {
    flex: 1 1 48%;
    padding: 1rem 0.5rem;
  }

  .dual-card .price {
    font-size: 1.2rem;
  }

  .dual-card .package-title {
    font-size: 0.7rem;
    padding: 0.6rem;
    font-weight: 500;
  }

  .dual-card ul.details {
    font-size: 0.6rem;
    font-weight: 200;
  }
}


/* end */
.membership-card ol{
  padding: 0;
}
.discount-card ol{
  padding: 0;
}

@media (max-width: 768px) {
  .dual-section {
    /* grid-template-columns: 1fr;
    row-gap: 3rem;  
    margin-top: 3rem; */
    column-gap: 1rem;
  }
  .membership-page h2.section-subtitle {
    font-size: 0.9rem;
  }

  .membership-page {
    padding: 8rem 2rem;
  }
  
  .membership-page .cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 1rem; /* spacing between cards */
  }

  .membership-card {
    width: 100%; /* two per row */
    max-width: none;          /* remove max-width limit */
    padding: 1rem 0.5rem;     /* tighter padding for small screens */
    font-size: 0.9rem;        /* slightly smaller text */
  }
  .discount-card {
    width: 100%; /* two per row */
    max-width: none;          /* remove max-width limit */
    padding: 1rem 0.5rem;     /* tighter padding for small screens */
    font-size: 0.9rem;        /* slightly smaller text */
  }
/* Smaller screens adjustments */
  .membership-page h1.page-title {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }

  .membership-card .price {
    font-size: 1.2rem;
  }
  .membership-card ul.details {
    font-weight: 200;
    font-size: 0.6rem;
  }
  .membership-card .package-title {
    font-weight: 550;
    font-size: 0.7rem;
    padding: 0.8rem 1rem;
  }
  .hide-on-mobile {
    display: none !important;
  }
  .dual-extra-1 {
    width:118%;
    height: 109%;
  }
  .dual-extra-2 {
    width:180%;
  }
}
