: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:1px solid rgba(255,255,255,0.15);
  box-shadow:0 10px 30px rgba(0,0,0,0.5);
  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;
  position:relative;
}

.navbar-nav .nav-link:after {
   content:"";
  position:absolute;
  bottom:-5px;
  left:0;
  width:0%;
  height:2px;
  background:var(--accent);
  transition:0.3s;
}
.nav-link:hover::after{
  width:100%;
}

/* 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");
}
/* ===== ADMIN NAV ===== */
.admin-nav{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* FORCE KECIK */
.admin-logo{
  width:26px;
  height:26px;
  max-width:26px;
  max-height:26px;
  object-fit:contain;
  display:block;
}

/* TEXT */
.admin-text{
  font-size:10px;
  margin-top:2px;
  color:#fff;
}
.admin-nav:hover .admin-logo{
  transform:scale(1.1);
}





.hero-grid .hero-block{
  position: relative;
  background: rgba(255,255,255,0.1); /* glass */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 1rem;
  overflow: hidden;
  min-height: 200px;

  /* Outline putih */
  border: 2px solid rgba(255,255,255,0.8);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

/* Hero main block */
.hero-main {
  height:100%;
  min-height:400px;
}
.hero-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}


/* Overlay effect */
.hero-overlay{
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  background:rgba(0,0,0,0.5);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  transition: background 0.3s ease;
}

.hero-overlay h3{
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size:1.5rem;
  color: #fff;
  text-align: center;
}

.hero-overlay a{
  margin-top:0.5rem;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

/* Hover effect */
.hero-block:hover {
  transform: scale(1.03);
  border: 2px solid #fff; /* lebih terang */
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.hero-block:hover .hero-overlay {
  background: rgba(0,0,0,0.25); /* overlay lebih terang */
}

/* Hero CTA block */
.hero-cta {
  background: #1a1a1a;
  color: #fff;
  border-radius: 1rem;
  padding: 1rem 2rem;
  display: inline-block;
  font-weight: 700;
  transition: background 0.3s ease;
}

.hero-cta:hover {
  background: #2a2a2a;
}

/* Hero features */
.hero-feature {
  height:200px;
  margin-top:1rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.hero-feature:hover {
  transform: scale(1.03);
  border: 2px solid #fff;
  box-shadow: 0 10px 20px rgba(255,255,255,0.15);
}

/* Responsive tweak */
@media screen and (max-width:768px){
  .hero-grid .hero-block, .hero-feature {
    min-height: 180px;
  }
  .hero-overlay h3 {
    font-size: 1.3rem;
  }
}

.features-section {
  padding: 4rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.features-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  cursor: default;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255,255,255,0.15);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.feature-desc {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media screen and (max-width: 768px){
  .features-container {
    flex-direction: column;
    align-items: center;
  }
}



/* 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);
}

/* Animation scroll right */
@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}



/* Others */
.about-section{background:transparent;color:#fff;}
.about-section h3{font-family: var(--font-main); font-weight:700;}
.about-section p{font-family: var(--font-main); font-weight:400;}

/* ============================= */
/* 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; /* desktop max width */
  position: relative;
  cursor: pointer;
  margin: 0 auto;
}

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
 box-shadow: 
    0 0 25px rgba(255,106,0,0.4),
    0 20px 60px rgba(0,0,0,0.6);
}

.product-img {
  width: 100%;
  aspect-ratio: 4/3; /* maintain ratio responsive */
  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);
}

.product-info {
  margin-top: 1rem;
  text-align: center;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

/* ============================= */
/* Parallax Shapes Responsive    */
/* ============================= */
.parallax-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.14;
  transform: translateZ(0);
  pointer-events: none;
}

.shape-1 {
  width: 420px; height: 420px;
  right: -120px; top: -100px;
  background: linear-gradient(135deg, var(--accent), #ff9a3c);
}

.shape-2 {
  width: 300px; height: 300px;
  left: -80px; top: 120px;
  background: linear-gradient(135deg, #ff3b6b, var(--accent));
}

/* ============================= */
/* Responsive Adjustments        */
/* ============================= */
@media screen and (max-width: 992px) {
  .product-card {
    max-width: 280px;
  }
  .product-img {
    aspect-ratio: 1.2/1;
  }
}

@media screen and (max-width: 768px) {
  .product-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .product-card {
    max-width: 90%;
  }
  .product-img {
    aspect-ratio: 1/1; /* kotak lebih sesuai untuk mobile */
  }
  .product-title {
    font-size: 1.1rem;
  }
  .product-price {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .product-card {
    padding: 0.8rem;
  }
  .product-title {
    font-size: 1rem;
  }
  .product-price {
    font-size: 0.9rem;
  }
}

/* Footer */
footer{padding:3rem 0; color:var(--muted)}

/* Responsive tweaks */
@media(min-width:992px){
  .hero{padding:8rem 0 6rem}
  .product-img{height:320px}
}

/* Smooth card overlay */
.price-badge{
  background:linear-gradient(90deg, rgba(0,0,0,0.3), rgba(255,255,255,0.02)); 
  padding:.45rem .75rem; 
  border-radius:12px;
}

/* CTA button */
.btn-accent1{
  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);
    }
}



.testimonial-section {
  padding: 4rem 2rem;
}

.testi-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Testimonial Glass Card */
.glass-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: 300px; /* tetap size */
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

/* Pulse animation for card */
.glass-card.pulse {
  animation: pulseCard 0.3s ease;
}

@keyframes pulseCard {
  0% { transform: scale(0.95); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Testimonial items */
.testi-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
}

.testi-item.active {
  display: block;
  opacity: 1;
}

/* Text styles */
.testi-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.testi-quote {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.testi-author {
  font-size: 0.95rem;
  font-weight: 500;
  text-shadow: 0 0 5px rgba(0,0,0,0.3);
}

/* Controls */
.testi-controls {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.testi-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testi-controls button:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* Right: Image placeholder */
.testi-right {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.testi-right img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Promo Image Slider */
.testi-right {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  position: relative;
}

.promo-img {
  width: 100%;
  border-radius: 15px;
  display: none;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: opacity 0.6s ease;
}

.promo-img.active {
  display: block;
  opacity: 1;
}

/* Responsive */
@media screen and (max-width: 768px){
  .testi-container {
    flex-direction: column;
  }
}
.quick-info-section {
  padding: 4rem 2rem;
}

.quick-container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.quick-card {
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.quick-card {
  position: relative;
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-size: cover;
  background-position: center;

  /* Glass + outline putih */
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255,255,255,0.6);

  transition: transform 0.3s ease, border 0.3s ease;
}

/* overlay untuk effect gelap → terang */
.quick-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  transition: background 0.3s ease;
  z-index: 1;
}

.quick-card:hover .quick-overlay {
  background: rgba(0,0,0,0.2);
}

/* text */
.quick-card h2 {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 200px;
  transition: transform 0.3s ease;
}

.quick-card:hover h2 {
  transform: scale(1.05);
}

/* hover border effect */
.quick-card:hover {
  border: 2px solid #fff;
}

/* Responsive */
@media screen and (max-width: 768px){
  .quick-card {
    min-width: 90%;
    height: 180px;
  }
  .quick-card h2 {
    line-height: 180px;
    font-size: 1.3rem;
  }
}
/* ===================== LAST HOMEPAGE SECTION ===================== */
.home-last-section {
  padding: 5rem 2rem;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 2px solid rgba(255,255,255,0.1);
}

.home-last-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
}

/* Newsletter CTA */
.newsletter-card {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, border 0.3s ease;
}

.newsletter-card:hover {
  transform: scale(1.03);
  border-color: #fff;
}

.newsletter-card h2 {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.newsletter-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 150px;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter-form button {
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #0b0b0b;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.newsletter-form button:hover {
  opacity: 0.85;
}

/* Mini Testimonial */
.mini-testimonial {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  padding: 2rem;
  position: relative;
  text-align: center;
}

.testimonial-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
}

.testimonial-item p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.testimonial-item span {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.8;
}

/* Controls */
.testimonial-controls {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.testimonial-controls button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-controls button:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
}

/* Social links */
.social-links {
  flex-basis: 100%;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  font-size: 1.8rem;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--accent);
  transform: scale(1.2);
}

/* Responsive */
@media screen and (max-width: 768px){
  .home-last-container {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input, .newsletter-form button {
    flex: 1 1 100%;
  }
}
/* FAQ Chatbot */
.faq-chatbot {
  max-width: 700px;
}

.chat-box {
  background: #0f0f0f;
  border-radius: 15px;
  padding: 20px;
  height: 250px;
  overflow-y: auto;
  color: white;
  font-family: Poppins;
}

.bot-msg, .user-msg {
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 12px;
  width: fit-content;
  max-width: 80%;
  animation: fadeIn 0.4s ease;
}

.bot-msg {
  background: #ff7a00;
}

.user-msg {
  background: #222;
  margin-left: auto;
}

.faq-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.faq-options button {
  background: transparent;
  border: 1px solid #ff7a00;
  color: white;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-options button:hover {
  background: #ff7a00;
}

/* Feedback Form */
.feedback-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feedback-form input,
.feedback-form textarea,
.feedback-form select {
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #1a1a1a;
  color: white;
}

.feedback-form button {
  background: #ff7a00;
  border: none;
  padding: 12px;
  border-radius: 30px;
  color: black;
  font-weight: bold;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ================= BMI SECTION ================= */
.bmi-section{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:120px 20px 80px;
  background: radial-gradient(circle at left, rgba(255,106,0,0.15), transparent 40%),
              radial-gradient(circle at right, rgba(255,106,0,0.15), transparent 40%);
}

.bmi-card{
  background: rgba(255,255,255,0.03); /* glass effect */
  backdrop-filter: blur(18px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:50px;
  max-width:600px;
  width:100%;
  box-shadow:0 0 40px rgba(255,106,0,0.1);
}

.bmi-card h2{
  text-align:center;
  font-weight:800;
  margin-bottom:40px;
}

/* ================= FORM ================= */
.bmi-input{
  width:100%;
  padding:14px 18px;
  margin-bottom:20px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.1);
  background:#111;
  color:#fff;
  font-size:1rem;
}

.bmi-input:focus{
  outline:none;
  border-color: var(--accent);
}

.btn-accent{
  width:100%;
  padding:14px;
  border:none;
  border-radius:30px;
  background: var(--accent);
  color:#fff;
  font-weight:700;
  letter-spacing:1px;
  cursor:pointer;
  transition:0.3s ease;
}

.btn-accent:hover{
  background:#ff7f26;
  transform:translateY(-2px);
}

/* ================= RESULT ================= */
.bmi-result{
  margin-top:30px;
  padding:25px;
  border-radius:14px;
  background:#111;
  display:none;
  border:1px solid rgba(255,255,255,0.08);
}

.bmi-result h3{
  margin-bottom:15px;
}

.result-value{
  font-size:2.5rem;
  font-weight:800;
  color: var(--accent);
}

.suggestion{
  margin-top:15px;
  font-size:0.95rem;
  line-height:1.6;
  color: var(--muted);
  white-space:pre-line;
}

.join-btn{
  margin-top:25px;
  text-align:center;
}

.join-btn a{
  display:inline-block;
  padding:12px 30px;
  background: var(--accent);
  border-radius:30px;
  font-weight:700;
  transition:0.3s ease;
}

.join-btn a:hover{
  background:#ff7f26;
}
.playlist-hero{
  text-align:center;
  padding:100px 20px;
  background:linear-gradient(to bottom,#0b0b0b,#111);
}

