
                                                                                
:root{
  --bg:#0b0b0b;
  --muted:#9a9a9a;
  --accent:#ff6a00; /* orange */
  --card:#0f0f0f;
  --glass: rgba(255,255,255,0.03);
  --radius:18px;
  --font-main: 'League Spartan', sans-serif;
}

*{box-sizing:border-box}
body{
  background:var(--bg); 
  color:#fff; 
  font-family:'Montserrat',system-ui,Arial;
  margin:0; padding:0;
}
a{color:inherit; text-decoration:none;}

.nav-big {
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 15px 2rem;
  transition: all 0.3s ease;
}

.nav-small .nav-logo-left {
  height: 38px;
}

.navbar-nav .nav-link {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff !important;
  margin-left: 1rem;
}

.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
}

/* Logo resize */
.nav-logo-left {
  height: 55px;
  transition: all 0.3s ease;
}

/* Shrink on scroll */
.nav-small .nav-logo-left {
  height: 38px;
}

/* Hamburger styling */
.navbar-toggler {
  border-color: rgba(255,255,255,0.6);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.8%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* ============================= */
/* Product Grid Responsive Full  */
/* ============================= */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  transition: transform 0.38s cubic-bezier(.2,.9,.2,1), box-shadow 0.38s;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  position: relative;
  cursor: pointer;
  margin: 0 auto;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
  transform: translateY(-10px) rotate(-2deg) scale(1.05);
}

.price-badge{
  background:linear-gradient(90deg, rgba(0,0,0,0.3), rgba(255,255,255,0.02)); 
  padding:.45rem .75rem; 
  border-radius:12px;
}

.btn-accent{
  background:var(--accent); 
  color:#0b0b0b; 
  font-weight:700; 
  border-radius:12px; 
  padding:.65rem 1.1rem;
  font-family: 'League Spartan', sans-serif;
}



.footer {
    background: #111;
    color: #fff;
    padding: 50px 0;
    margin-top: 40px;
    font-family: 'League Spartan', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-social a {
    font-size: 22px;
    margin-right: 15px;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    opacity: 0.6;
}

/* FAQ BUTTON — LEFT SIDE */
.faq-btn {
    position: fixed;
    left: 25px;     /* was right */
    bottom: 25px;
    background: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: rgb(0, 0, 0);
    font-size: 26px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    z-index: 99999;
    transition: 0.25s ease;
}

.faq-btn:hover {
    transform: scale(1.1);
}

/* FAQ POPUP — LEFT SIDE */
.faq-popup {
    position: fixed;
    left: 25px;     /* was right */
    bottom: 95px;
    width: 320px;
    padding: 20px;
    border-radius: 18px;
    display: none;

    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);

    color: white;
    z-index: 999999;
    animation: slideUpFaq .3s ease forwards;
}

/* TEXT STYLE */
.faq-popup h3 {
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
}

.faq-popup ul {
    margin: 0;
    padding-left: 18px;
}

.faq-popup li {
    margin-bottom: 10px;
    line-height: 1.4;
}

/* ACTIVE STATE */
.faq-popup.active {
    display: block !important;
}

/* ANIMATION */
@keyframes slideUpFaq {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Container flex horizontal */
.marquee-gallery-container {
  display: flex;
  align-items: center;
  gap: 20px; /* jarak antara marquee dan gallery */
  overflow: hidden;
  padding: 12px 0;
}

/* Marquee kiri */
.insta-marquee {
  flex: 1; /* occupy left side */
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
}

.marquee-track {
  display: inline-block;
  animation: marqueeLeft 15s linear infinite;
}

.insta-marquee:hover .marquee-track {
  animation-play-state: paused; /* hover pause */
}

.marquee-track span {
  display: inline-block;
  margin-right: 60px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #d1d1d1;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.marquee-track i.fab {
  margin-right: 8px;
  color: #fff;
}

/* Animation marquee left */
@keyframes marqueeLeft {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* Gym gallery kanan */
.gym-gallery {
  flex: 1; /* occupy right side */
  overflow: hidden;
  position: relative;
}

.gallery-wrapper {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  animation: scrollRight 15s linear infinite;
}

.gallery-wrapper:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 0 10px rgba(255,255,255,0.25),
              0 4px 15px rgba(0,0,0,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,255,255,0.4),
              0 6px 20px rgba(0,0,0,0.4);
}
/* ============================= */
/* SECTION WRAPPER FIX          */
/* ============================= */
.coach-section, .plan-section {
  width: 100%;
  padding: 60px 30px;
  max-width: 1300px;
  margin: auto;
}

/* ============================= */
/* COACH SECTION FIXED          */
/* ============================= */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  text-align: left;
}

.coach-row {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.coach-card {
  background: #1c1c1c;
  padding: 1rem;
  border-radius: 16px;
  width: 230px;
  text-align: left;
  transition: .3s;
  border: 1px solid rgba(255,255,255,0.12);
}

.coach-card:hover {
  transform: translateY(-6px);
}

.coach-card img {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  object-fit: cover;
}

/* ============================= */
/* TRAINING PLAN GRID FIX        */
/* ============================= */
.plan-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: .3s;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 20px 40px rgba(0,0,0,0.5);
}

.plan-card h4 {
  color: #ff6f00;
  margin-bottom: .7rem;
}

.plan-card p {
  color: #ddd;
  font-size: .9rem;
  margin-bottom: 1.3rem;
}

.btn-book {
  width: 100%;
  padding: .7rem;
  border: none;
  background: #ff6f00;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.btn-book:hover {
  background: #ff8c42;
}

/* ============================= */
/* MODAL FIX                     */
/* ============================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 14px;
  width: 350px;
  color: #fff;
}

.modal-content input {
  width: 100%;
  padding: .7rem;
  margin-top: .4rem;
  border-radius: 10px;
  border: 1px solid #444;
  background: #292929;
  color: #fff;
}

#submitBooking {
  margin-top: 1.5rem;
  width: 100%;
  padding: .8rem;
  border: none;
  background: #ff6f00;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.close-modal {
  margin-top: .7rem;
  width: 100%;
  padding: .7rem;
  background: #333;
  border: none;
  color: #fff;
  border-radius: 10px;
}
