/* ================= GLOBAL RESET ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#111;
  color:white;
}


/* ================= HEADER ================= */

.header{
height:120px;
position:fixed;
top:0;
left:0;
width:100%;
background:#000000;
z-index:1000;
display:flex;
align-items:center;
}


/* ================= HERO VIDEO ================= */

.hero-video{
  position:absolute;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translate(-50%, -50%);
  object-position:center 35%;
}


/* ================= HERO SECTION ================= */

.hero{
  position:relative;
  height:65vh;
  min-height:460px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-align:left;
  overflow:hidden;
  padding:80px 20px 40px;
}


/* ================= HEADER BUTTONS ================= */

.header-btn{
display:flex;
align-items:center;
}

.header-btn a{
text-decoration:none;
padding:12px 28px;
border-radius:10px;
font-weight:700;
font-size:16px;
display:inline-flex;
align-items:center;
justify-content:center;
transition:0.3s ease;
}


.header-btn a:first-child{
background: #9FDE32;
color:#000000;
}

.header-btn a:first-child:hover{
background: #9FDE32;
}


.header-btn a:hover{
background: #9FDE32;
}


/* ================= HERO OVERLAY ================= */

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:1;
}


/* ================= HERO CONTENT ================= */

.hero-content{
  position:relative;
  z-index:2;
  max-width:780px;
  margin-top:40px;
}

.hero-content{
  max-width:700px;
}


/* ================= HERO HEIGHT ================= */

.hero{
  height:85vh;
  min-height:340px;
}


/* ================= HERO TEXT ================= */

.hero p{
margin-top:10px;
}

.hero h1{
font-size:64px;
}

.hero p{
  font-size:16px;
}

.hero p{
  font-size:18px;
  margin-bottom:30px;
}


/* ================= HERO BUTTONS ================= */

.hero-buttons button{
  padding:12px 25px;
  margin:10px;
  border:none;
  cursor:pointer;
  font-size:16px;
}

.btn-primary{
  background: #9FDE32;
  color:white;
}

.btn-secondary{
background:transparent;
border:1px solid white;
color:white;
margin-left:15px;
}

.hero-title-mobile span{
display:inline;
}


/* ================= LAYOUT CONTAINER ================= */

.container{
width:100%;
height:100%;
display:flex;
align-items:center;
padding:0 40px;
}


/* ================= LOGO ================= */

.logo img{
height:170px;
width:auto;
display:block;
}


/* ================= hamburger ================= */

.hamburger{
display:none;
flex-direction:column;
justify-content:center;
align-items:center;
gap:5px;
width:40px;
height:40px;
cursor:pointer;
background:none;
border:none;
margin-left:auto;
}

.hamburger span{
width:22px;
height:2px;
background:white;
display:block;
}


/* ================= NAVIGATION ================= */

.nav{
display:flex;
align-items:center;
margin-left:auto;
margin-right:auto;
}

.nav a{
margin:0 28px;
text-decoration:none;
color:#ffffff;
font-size:18px;
font-weight:700;
transition:0.3s ease;
}

.nav a:hover,
.nav a.active{
color:#9FDE32;
}


/* ================= GENERIC SECTION ================= */

.section{
  padding:100px 0;
}

.section-container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.section h2{
  font-size:40px;
  margin-bottom:20px;
  text-align:center;
}

.section p{
  font-size:18px;
  line-height:1.8;
  text-align:center;
  max-width:800px;
  margin:0 auto 20px;
}


/* ================= SERVICES GRID ================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.service-card{
    background:linear-gradient(145deg,#2a2a2a,#1a1a1a);
    padding:50px 40px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.06);
    transition:all 0.35s ease;
}

.service-card:hover{
    transform:translateY(-10px) scale(1.02);
    border-color:#9FDE32;
    box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

.service-card h3{
    font-size:26px;
    margin-bottom:18px;
    font-weight:600;
}

.service-card p{
    font-size:15px;
    line-height:1.7;
    color:#cfcfcf;
}


/* ================= FAQ SECTION ================= */

.faq-section{
    background:#000;
    padding:110px 20px;
}

.faq-container{
    max-width:1100px;
    margin:0 auto;
}

.faq-heading-wrap{
    text-align:center;
    margin-bottom:50px;
}

.faq-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(245,160,0,0.14);
    border:1px solid rgba(245,160,0,0.28);
    color:#9FDE32;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.faq-heading-wrap h2{
    margin:0 0 14px;
    font-size:54px;
    line-height:1.05;
    color:#fff;
}

.faq-heading-wrap p{
    margin:0 auto;
    max-width:680px;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
}


/* ================= FAQ LIST ================= */

.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    overflow:hidden;
    backdrop-filter:blur(10px);
    transition:0.35s ease;
    position:relative;
}

.faq-item::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:#9FDE32;
    opacity:0;
    transition:0.35s ease;
}

.faq-item.active{
    border-color:rgba(245,160,0,0.35);
    box-shadow:0 18px 45px rgba(0,0,0,0.28);
}

.faq-item.active::before{
    opacity:1;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:#fff;
    padding:28px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    font-size:28px;
    font-weight:700;
    text-align:left;
    cursor:pointer;
}


/* ================= FAQ ICON ================= */

.faq-icon{
    width:22px;
    height:22px;
    position:relative;
    flex-shrink:0;
}

.faq-icon::before,
.faq-icon::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    background:#9FDE32;
    transform:translate(-50%, -50%);
    transition:0.3s ease;
    border-radius:2px;
}

.faq-icon::before{
    width:22px;
    height:3px;
}

.faq-icon::after{
    width:3px;
    height:22px;
}

.faq-item.active .faq-icon::after{
    opacity:0;
    transform:translate(-50%, -50%) rotate(90deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.45s ease;
}

.faq-answer p{
    margin:0;
    padding:0 30px 28px;
    color:#cfcfcf;
    font-size:18px;
    line-height:1.8;
    max-width:900px;
}


/* ================= SIGN IN BUTTON ================= */

.header-btn{
display:flex;
align-items:center;
gap:14px;
}

.signin-btn{
padding:10px 22px;
border-radius:10px;
color:#ffffff;
text-decoration:none;
font-weight:600;
background:rgba(255,255,255,0.06);
border:1px solid rgba(255,255,255,0.15);
backdrop-filter:blur(6px);
transition:all 0.25s ease;
display:inline-flex;
align-items:center;
justify-content:center;
min-width:130px;
}

.signin-btn:hover{
background:rgba(255,255,255,0.12);
border-color:rgba(255,255,255,0.35);
transform:translateY(-1px);
}

/* ================= FAQ TABLET RESPONSIVE ================= */

@media (max-width: 991px){
    .faq-section{
        padding:80px 20px;
    }

    .faq-heading-wrap h2{
        font-size:38px;
    }

    .faq-heading-wrap p{
        font-size:16px;
    }

    .faq-question{
        font-size:21px;
        padding:22px 22px;
    }

    .faq-answer p{
        padding:0 22px 22px;
        font-size:16px;
    }
}


/* ================= FOOTER ================= */

.footer{
  padding:30px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  background:#0b0b0b;
}


/* ================= WHATSAPP FLOAT BUTTON ================= */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
z-index:99999;
box-shadow:0 10px 25px rgba(0,0,0,0.25);
animation:whatsappPulse 2s infinite;
}

.whatsapp-float svg{
width:36px;
height:36px;
display:block;
}

.whatsapp-float:hover{
transform:scale(1.06);
}


/* ================= WHATSAPP ANIMATION ================= */

@keyframes whatsappPulse{
0%{
box-shadow:0 0 0 0 rgba(37,211,102,0.55), 0 10px 25px rgba(0,0,0,0.25);
}
70%{
box-shadow:0 0 0 14px rgba(37,211,102,0), 0 10px 25px rgba(0,0,0,0.25);
}
100%{
box-shadow:0 0 0 0 rgba(37,211,102,0), 0 10px 25px rgba(0,0,0,0.25);
}
}


/* ================= TICKER STRIP ================= */

.ticker{
  width:100%;
  background: #9FDE32;
  overflow:hidden;
  padding:16px 0;
}

.ticker-track{
  display:flex;
  align-items:center;
  width:max-content;
  animation:scrollTicker 18s linear infinite;
}

.ticker span{
  font-size:18px;
  font-weight:700;
  color:#ffffff;
  margin-right:40px;
  white-space:nowrap;
}


/* ================= TICKER ANIMATION ================= */

@keyframes scrollTicker{
  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }
}


/* ================= NAV DROPDOWN ================= */

.dropdown{
  position:relative;
  display:flex;
  align-items:center;
}

.dropdown > a{
  text-decoration:none;
  color:#ffffff;
  font-size:18px;
  font-weight:700;
  transition:0.3s ease;
  margin:0 28px;
}

.dropdown > a:hover{
  color:#9FDE32;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#0f0f0f;
  min-width:280px;
  padding:12px 0;
  border-radius:10px;
  display:none;
  box-shadow:0 10px 30px rgba(255, 255, 255, 0.45);
  z-index:999;
}

.dropdown-menu a{
  display:block;
  padding:14px 20px;
  margin:0;
  color:#ffffff;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
}

.dropdown-menu a:hover{
  background:#1a1a1a;
  color:#9FDE32;
}

.dropdown:hover .dropdown-menu{
  display:block;
}


/* ================= POPUP OVERLAY ================= */

.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.75);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}


/* ================= POPUP BOX ================= */

.popup-box{
  background:#111;
  padding:40px;
  border-radius:10px;
  width:420px;
  text-align:center;
  position:relative;
  transform:scale(0.9);
  opacity:0;
  animation:popupFade 0.3s forwards;
}


/* ================= POPUP ANIMATION ================= */

@keyframes popupFade{
  from{
    opacity:0;
    transform:scale(0.9);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}


/* ================= POPUP ELEMENTS ================= */

.popup-box h2{
margin-bottom:20px;
}

.popup-close{
position:absolute;
right:15px;
top:10px;
font-size:24px;
cursor:pointer;
}


/* ================= WHATSAPP BUTTON INSIDE POPUP ================= */

.whatsapp-btn{
  display:block;
  background:#25D366;
  color:#fff;
  padding:14px;
  border-radius:6px;
  margin-bottom:20px;
  text-decoration:none;
  font-weight:700;
  font-size:16px;
  transition:0.2s;
}

.whatsapp-btn:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
}

.popup-divider{
margin:10px 0 20px;
color:#aaa;
}

.popup-form input{
width:100%;
padding:12px;
margin-bottom:12px;
border:none;
border-radius:5px;
}

.popup-form button{
width:100%;
padding:12px;
background: #9FDE32;
border:none;
color:#000;
font-weight:700;
cursor:pointer;
border-radius:5px;
}


/* ================= ABOUT INTRO SECTION ================= */

.about-intro{
  background:#000;
  padding:90px 40px;
}

.about-container{
  max-width:1550px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:55px;
}

.about-left{
  flex:0 0 46%;
  padding-left:40px;
}

.about-left h2{
  font-size:72px;
  line-height:0.98;
  font-weight:800;
  color:#ffffff;
  margin:0 0 26px 0;
  letter-spacing:-1px;
}

.about-left span{
  color:#9FDE32;
}

.about-highlight{
  font-size:28px;
  font-weight:700;
  color:#9FDE32;
  margin:0;
}

.about-divider{
  width:1px;
  height:430px;
  background:rgba(255,255,255,0.55);
  flex:0 0 1px;
}

.about-right{
  flex:0 0 41%;
  padding-right:20px;
}

.about-right p{
  font-size:18px;
  line-height:1.65;
  color:#ffffff;
  margin:0 0 40px 0;
  max-width:650px;
}

.about-link{
  color:#ffffff;
  font-size:20px;
  font-weight:600;
  text-decoration:none;
  letter-spacing:0.3px;
  display:inline-flex;
  align-items:center;
  gap:18px;
  transition:0.3s ease;
}

.about-link:hover{
  color:#9FDE32;
}

/* ================= EMS TECHNOLOGY SECTION ================= */

.ems-section{
background:#000;
padding:120px 40px;
}

.ems-container{
max-width:1400px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
}

.ems-text{
flex:45%;
color:#fff;
}

.ems-text h2{
font-size:54px;
margin-bottom:20px;
}

.ems-text span{
color:#9FDE32;
}

.ems-text p{
font-size:18px;
line-height:1.7;
margin-bottom:30px;
}

.ems-benefits{
list-style:none;
padding:0;
margin-bottom:35px;
}

.ems-benefits li{
margin-bottom:10px;
font-size:16px;
}

.ems-video{
flex:55%;
text-align:center;
}

.ems-video video{
width:100%;
max-width:350px;
}


/* ================= SERVICES SLIDER SECTION ================= */

.workout-slider-section{
background:#000;
padding:30px 40px 70px;
}

.workout-categories{
display:flex;
align-items:center;
gap:18px;
margin-bottom:32px;
flex-wrap:wrap;
scroll-behavior:smooth;
scroll-snap-type:x mandatory;
}

.workout-categories button{
background:transparent;
color:#fff;
border:2px solid rgba(255,255,255,0.7);
border-radius:999px;
padding:12px 22px;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:0.3s ease;
}

.workout-categories button.active,
.workout-categories button:hover{
background:#fff;
color:#000;
}


/* ================= SLIDER WRAPPER ================= */

.workout-slider-wrapper{
position:relative;
display:flex;
align-items:center;
gap:18px;
}

.slider-arrow{
width:54px;
height:54px;
border-radius:50%;
border:none;
background:#fff;
color:#000;
font-size:24px;
cursor:pointer;
flex:0 0 54px;
}

.workout-slider{
display:flex;
gap:22px;
overflow-x:auto;
overflow-y:hidden;
width:100%;
scroll-behavior:smooth;
scrollbar-width:none;
}

.workout-slider::-webkit-scrollbar{
display:none;
}


/* ================= WORKOUT CARD ================= */

.workout-card{
position:relative;
flex:0 0 calc(25% - 17px);
min-width:240px;
height:200px;
border-radius:24px;
overflow:hidden;
background:#111;
scroll-snap-align:start;
}

.workout-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.workout-overlay{
position:absolute;
inset:0;
display:flex;
flex-direction:column;
justify-content:flex-end;
padding:18px;
background:linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.14));
}

.workout-overlay h3{
color:#fff;
font-size:18px;
line-height:1.15;
font-weight:700;
margin:0 0 12px 0;
}

.workout-tags{
display:flex;
gap:10px;
flex-wrap:wrap;
}

.workout-tags span{
background:rgba(0,0,0,0.65);
color:#fff;
font-size:12px;
font-weight:600;
padding:7px 11px;
border-radius:999px;
}


/* ================= LOGO INTRO VIDEO ================= */

.logo-intro{
margin-top:-80px;
margin-bottom:10px;
display:flex;
justify-content:center;
}

.logo-intro video{
width:350px;
max-width:100%;
}


/* ================= SERVICES HEADER ================= */

.services-header{
display:flex;
justify-content:flex-start;
margin-bottom:35px;
padding:0 40px;
}

.services-title{
font-size:54px;
font-weight:800;
color:#9FDE32;
letter-spacing:1px;
}


/* ================= SLIDER TABLET RESPONSIVE ================= */

@media (max-width:991px){

.workout-slider-wrapper{
gap:12px;
}

.workout-card{
min-width:220px;
height:185px;
}

.slider-arrow{
width:46px;
height:46px;
flex:0 0 46px;
font-size:20px;
}

}


/* ================= EMS STATS SECTION ================= */

.ems-stats-section{
background:#000;
padding:90px 20px;
}

.ems-stats-container{
max-width:1200px;
margin:0 auto;
}

.ems-stats-top{
display:grid;
grid-template-columns:1fr auto 1fr auto 1fr;
align-items:start;
gap:30px;
margin-bottom:70px;
}

.ems-stat-item{
text-align:center;
position:relative;
}

.ems-stat-item h2{
display:inline-block;
font-size:70px;
line-height:1;
font-weight:800;
color:#9FDE32;
margin:0;
}

.stat-symbol{
display:inline-block;
font-size:48px;
line-height:1;
font-weight:800;
color:#9FDE32;
vertical-align:top;
margin-left:4px;
}

.ems-stat-item h4{
margin:14px 0 16px;
font-size:18px;
font-weight:600;
color:#ffffff;
}

.stat-line{
width:50px;
height:3px;
background:#9FDE32;
margin:0 auto;
}

.ems-stat-divider{
width:1px;
height:72px;
background:rgba(255,255,255,0.2);
align-self:center;
}

.ems-stats-text{
max-width:1100px;
margin:0 auto;
text-align:center;
}

.ems-stats-text p{
font-size:20px;
line-height:1.7;
color:#d0d0d0;
}

.ems-stats-text strong{
color:#ffffff;
}

.ems-stats-highlight{
font-weight:700;
color:#ffffff;
}

/* ================= SCROLL REVEAL ANIMATION ================= */

.reveal-up{
    opacity:0;
    transform:translateY(50px);
    transition:all 1.6s ease;
}

.reveal-up.active{
    opacity:1;
    transform:translateY(0);
}


/* ================= EMS STATS ANIMATION ================= */

.ems-stat-item{
    opacity:0;
    transform:translateY(50px);
    transition:all 1.4s ease;
}

.ems-stat-item.active{
    opacity:1;
    transform:translateY(0);
}


/* ================= CONTACT BOOKING SECTION ================= */

.contact-section{
    padding:100px 40px;
    background:#000;
}

.contact-booking-wrap{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:40px;
    align-items:stretch;
}


/* ================= CONTACT IMAGE ================= */

.contact-booking-image{
    position:relative;
    min-height:620px;
    border-radius:28px;
    overflow:hidden;
    background:#111;
    box-shadow:0 20px 60px rgba(0,0,0,0.35);
}

.contact-booking-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.contact-image-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:42px;
    background:linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.18));
}

.contact-image-overlay span{
    display:inline-block;
    width:fit-content;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(245,160,0,0.16);
    border:1px solid rgba(245,160,0,0.32);
    color:#9FDE32;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.contact-image-overlay h2{
    font-size:52px;
    line-height:1.05;
    margin:0 0 14px;
    color:#fff;
}

.contact-image-overlay p{
    margin:0;
    max-width:520px;
    color:rgba(255,255,255,0.85);
    font-size:18px;
    line-height:1.7;
}


/* ================= CONTACT FORM BOX ================= */

.contact-booking-form-box{
    background:linear-gradient(180deg,#111,#0a0a0a);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:28px;
    padding:42px;
    box-shadow:0 20px 60px rgba(0,0,0,0.35);
}

.contact-form-top{
    margin-bottom:30px;
}

.contact-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(245,160,0,0.14);
    border:1px solid rgba(245,160,0,0.28);
    color:#9FDE32;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.contact-form-top h2{
    font-size:54px;
    line-height:1.05;
    margin:0 0 14px;
    color:#fff;
}

.contact-form-top p{
    margin:0;
    color:#c9c9c9;
    font-size:17px;
    line-height:1.8;
}


/* ================= CONTACT FORM ================= */

.contact-booking-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.form-row.single{
    grid-template-columns:1fr;
}

.contact-booking-form input,
.contact-booking-form select,
.contact-booking-form textarea{
    width:100%;
    background:#151515;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    padding:18px 18px;
    color:#fff;
    font-size:16px;
    outline:none;
    transition:0.3s ease;
}

.contact-booking-form input::placeholder,
.contact-booking-form textarea::placeholder{
    color:#9c9c9c;
}

.contact-booking-form select{
    color:#bdbdbd;
}

.contact-booking-form input:focus,
.contact-booking-form select:focus,
.contact-booking-form textarea:focus{
    border-color:#9FDE32;
    box-shadow:0 0 0 4px rgba(245,160,0,0.08);
}

.contact-booking-form textarea{
    resize:none;
    min-height:140px;
}


/* ================= CONTACT BUTTON ================= */

.contact-submit-btn{
    width:100%;
    margin-top:6px;
    background:#9FDE32;
    color:#000;
    border:none;
    border-radius:16px;
    padding:18px 24px;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
    transition:0.3s ease;
}

.contact-submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 35px rgba(245,160,0,0.24);
}


/* ================= CONTACT RESPONSIVE ================= */

@media (max-width: 991px){

    .contact-section{
        padding:80px 20px;
    }

    .contact-booking-wrap{
        grid-template-columns:1fr;
    }

    .contact-booking-image{
        min-height:420px;
    }

    .contact-image-overlay h2,
    .contact-form-top h2{
        font-size:38px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-booking-form-box{
        padding:28px;
    }
}


/* ================= REVIEWS SECTION ================= */

.reviews-section{
    background:#000;
    padding:110px 20px;
}

.reviews-container{
    max-width:1280px;
    margin:0 auto;
}

.reviews-heading{
    text-align:center;
    margin-bottom:55px;
}

.reviews-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(245,160,0,0.14);
    border:1px solid rgba(245,160,0,0.28);
    color:#9FDE32;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.reviews-heading h2{
    margin:0 0 14px;
    font-size:58px;
    line-height:1.05;
    color:#fff;
}

.reviews-heading p{
    margin:0 auto;
    max-width:700px;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
}


/* ================= REVIEWS GRID ================= */

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
}

.review-card{
    background:linear-gradient(145deg,#1a1a1a,#111);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:26px;
    padding:30px;
    min-height:260px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:all 0.35s ease;
    box-shadow:0 16px 40px rgba(0,0,0,0.22);
}

.review-card:hover{
    transform:translateY(-8px);
    border-color:rgba(245,160,0,0.35);
    box-shadow:0 22px 50px rgba(0,0,0,0.32);
}

.review-card.featured{
    border-color:rgba(245,160,0,0.45);
    box-shadow:0 0 0 1px rgba(245,160,0,0.12), 0 20px 50px rgba(0,0,0,0.3);
}


/* ================= REVIEW CONTENT ================= */

.review-stars{
    color:#9FDE32;
    font-size:20px;
    letter-spacing:3px;
    margin-bottom:18px;
}

.review-text{
    margin:0 0 26px;
    color:#d8d8d8;
    font-size:18px;
    line-height:1.8;
}

.review-meta h4{
    margin:0 0 6px;
    font-size:28px;
    color:#fff;
    font-weight:800;
}

.review-meta span{
    color:#9f9f9f;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
}

/* ================= REVIEWS RESPONSIVE - TABLET ================= */

@media (max-width: 1100px){
    .reviews-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}


/* ================= REVIEWS RESPONSIVE - MOBILE ================= */

@media (max-width: 767px){
    .reviews-section{
        padding:80px 20px;
    }

    .reviews-heading h2{
        font-size:40px;
    }

    .reviews-heading p{
        font-size:16px;
    }

    .reviews-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .review-card{
        min-height:auto;
        padding:24px;
    }

    .review-meta h4{
        font-size:24px;
    }

    .review-text{
        font-size:16px;
    }
}


/* ================= EMS STATS RESPONSIVE ================= */

@media (max-width: 991px){
    .ems-stats-top{
        grid-template-columns:1fr;
        gap:35px;
        margin-bottom:50px;
    }

    .ems-stat-divider{
        display:none;
    }

    .ems-stat-item h2{
        font-size:64px;
    }

    .stat-symbol{
        font-size:42px;
    }

    .ems-stat-item h4{
        font-size:18px;
    }

    .ems-stats-text p{
        font-size:18px;
    }
}


/* ================= HOW IT WORKS SECTION ================= */

.how-it-works{
    background:#000;
    padding:120px 20px;
    text-align:center;
}

.how-it-works h2{
    font-size:48px;
    color:#fff;
    margin-bottom:70px;
}


/* ================= SERVICES GRID - HOW IT WORKS ================= */

.services-grid{
    gap:30px;
    max-width:1200px;
    margin:60px auto 0;
}

.service-card{
    background:linear-gradient(145deg,#161616,#0d0d0d);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    padding:40px 32px;
    transition:all 0.35s ease;
    box-shadow:0 12px 30px rgba(0,0,0,0.25);
    scroll-snap-align:start;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#9FDE32;
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

.service-card h3{
    font-size:24px;
    color:#fff;
    margin-bottom:16px;
}

.service-card p{
    font-size:17px;
    line-height:1.7;
    color:#cfcfcf;
}


/* ================= HOW IT WORKS RESPONSIVE ================= */

@media (max-width: 991px){
    .how-it-works{
        padding:80px 20px;
    }

    .how-it-works h2{
        font-size:36px;
        margin-bottom:40px;
    }

    .services-grid{
        gap:20px;
        margin-top:40px;
    }

    .service-card{
        padding:28px 22px;
    }

    .service-card h3{
        font-size:22px;
    }

    .service-card p{
        font-size:16px;
    }
}


/* ================= GLOBAL TABLET RESPONSIVE ================= */

@media (max-width: 991px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:38px;
    }

    .nav{
        display:none;
    }
}


/* ================= BENEFITS SECTION ================= */

.benefits{
    background:#111;
}


/* ================= PRIMARY / SECONDARY BUTTONS ================= */

.btn-primary,
.btn-secondary{
display:inline-block;
padding:12px 24px;
text-decoration:none;
border:none;
cursor:pointer;
font-size:16px;
font-weight:600;
transition:0.3s ease;
}

.btn-primary{
background:#00c896;
color:#fff;
}

.btn-primary:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.25);
}

.btn-secondary{
background:transparent;
border:1px solid #fff;
color:#fff;
}


/* ================= CTA BUTTONS ================= */

.cta-buttons{
display:flex;
justify-content:center;
align-items:center;
gap:16px;
flex-wrap:wrap;
margin-top:24px;
}

.cta-btn{
display:inline-block;
padding:14px 28px;
text-decoration:none;
font-size:16px;
font-weight:600;
border-radius:0;
transition:0.3s ease;
}

.cta-btn-primary{
background:#00c896;
color:#ffffff;
}

.cta-btn-primary:hover{
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.25);
}

.cta-btn-secondary{
background:transparent;
color:#ffffff;
border:1px solid #ffffff;
}

.cta-btn-secondary:hover{
background:rgba(255,255,255,0.08);
}


/* ================= SITE FOOTER ================= */

.site-footer{
    background:#0f0f0f;
    border-top:1px solid rgba(255,255,255,0.08);
    padding:60px 0 25px;
    margin-top:80px;
}

.site-footer-grid{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
    display:grid;
    grid-template-columns:1.2fr 0.8fr 0.8fr;
    gap:60px;
    align-items:start;
}

.site-footer-brand{
    text-align:left;
}

.site-footer-logo{
    width:180px;
    display:block;
    margin-bottom:18px;
}

.site-footer-brand p{
    margin:0;
    color:#bdbdbd;
    font-size:15px;
    line-height:1.8;
    max-width:340px;
}

.site-footer-links,
.site-footer-reviews{
    text-align:left;
}

.site-footer-links h4,
.site-footer-reviews h4{
    margin:0 0 18px;
    font-size:20px;
    color:#ffffff;
}

.site-footer-links a{
    display:block;
    margin-bottom:12px;
    color:#cfcfcf;
    text-decoration:none;
    font-size:15px;
    transition:0.3s ease;
}

.site-footer-links a:hover{
    color:#ff9800;
    transform:translateX(4px);
}

.site-review-img{
    width:170px;
    display:block;
    margin-bottom:14px;
    border-radius:10px;
    transition:0.3s ease;
}

.site-review-img:hover{
    transform:translateY(-4px) scale(1.03);
}

.site-footer-bottom{
    max-width:1200px;
    margin:35px auto 0;
    padding:20px 40px 0;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
}

.site-footer-bottom p{
    margin:0;
    color:#8f8f8f;
    font-size:14px;
}


/* ================= SITE FOOTER RESPONSIVE ================= */

@media (max-width: 991px){
    .site-footer-grid{
        grid-template-columns:1fr;
        gap:35px;
        padding:0 24px;
    }

    .site-footer-brand,
    .site-footer-links,
    .site-footer-reviews{
        text-align:center;
    }

    .site-footer-logo{
        margin:0 auto 18px;
    }

    .site-footer-brand p{
        margin:0 auto;
    }

    .site-review-img{
        margin:0 auto 14px;
    }

    .site-footer-bottom{
        padding:20px 24px 0;
    }
}





/* ================= MOBILE FIX - HEADER + HERO ================= */

@media (max-width: 768px){

  .header{
    height: 82px;
    padding: 0 14px;
  }

  .header-btn{
    gap: 5px;
    margin-left: auto;
  }

  .header-btn a{
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 6px;
  }


  .hamburger{
    display:flex;
  }


  .hero{
    height: auto;
    min-height: 90vh;
    padding: 110px 18px 40px;
    align-items: center;
  }

  .hero-video{
    object-position: center center;
  }

  .hero-content{
    max-width: 100%;
    margin-top: 0;
  }

  .hero h1{
    font-size: 36px;
    line-height: 1.12;
  }

  .hero p{
    font-size: 16px;
    line-height: 1.6;
    margin-top: 12px;
    margin-bottom: 22px;
  }
}

@media (max-width: 480px){

  .header{
    height: 76px;
    padding: 0 10px;
  }

  .header-btn{
    gap: 6px;
  }

  .header-btn a{
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero{
    min-height: 84vh;
    padding: 100px 14px 30px;
  }

  .hero h1{
    font-size: 30px;
    line-height: 1.1;
  }

  .hero p{
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
}

/* ================= MOBILE FIX - NAV + BUTTONS + CONTAINER ================= */

@media (max-width:768px){

/* container */
.container{
padding:0 18px;
}

/* logo */
.logo img{
height:70px;
margin-left:-25px;
}


.nav{
display:none;
}

.nav.active{
display:flex;
flex-direction:column;
background:#0b0b0b;
position:absolute;
top:70px;
left:0;
width:100%;
padding:20px;
gap:16px;
}


/* navigation */
.nav{
display:none;
}

/* hero buttons */
.hero-buttons button{
width:auto;
max-width:none;
padding:12px 18px;
font-size:14px;
margin:0;
}

.hero-buttons button{
width:auto;
}

/* generic sections */
.section{
padding:70px 0;
}

.section h2{
font-size:32px;
}

.section p{
font-size:16px;
line-height:1.6;
padding:0 10px;
}


.hero-title-mobile span{
display:block;
}

.hero h1.hero-title-mobile{
font-size:26px !important;
line-height:1.15 !important;
max-width:260px !important;
margin-bottom:10px !important;
text-align:left !important;
font-weight:700 !important;
}


.hero-content{
position:absolute;
left:18px;
right:auto;
top:50%;
transform:translateY(-50%);
text-align:left !important;
align-items:flex-start !important;
max-width:250px;
}

.hero-content h1{
font-size:28px !important;
line-height:1.12 !important;
max-width:240px;
margin:0 0 10px 0;
text-align:left !important;
}

.hero-content p{
font-size:13px !important;
line-height:1.45 !important;
max-width:220px;
margin:0 0 14px 0;
text-align:left !important;
}

.hero-buttons{
display:flex;
justify-content:flex-start;
align-items:flex-start;
width:auto;
}

.hero-buttons .btn-primary{
width:auto !important;
min-width:130px !important;
padding:10px 16px !important;
font-size:13px !important;
border-radius:10px !important;
margin:0 !important;
display:inline-flex !important;
justify-content:center !important;
align-items:center !important;
}

}

@media (max-width:480px){

/* container */
.container{
padding:0 14px;
}

/* logo */
.logo img{
height:60px;
}

/* titles */
.section h2{
font-size:28px;
}

.section p{
font-size:15px;
}

/* buttons */
.hero-buttons button{
max-width:100%;
}

}

/* ================= MOBILE FIX - SERVICES ================= */

@media (max-width:768px){

.services-grid{
grid-template-columns:1fr;
gap:24px;
margin-top:40px;
padding:0 16px;
}

.service-card{
padding:28px 24px;
border-radius:12px;
}

.service-card h3{
font-size:22px;
margin-bottom:12px;
}

.service-card p{
font-size:15px;
line-height:1.6;
}

}


/* ================= MOBILE FIX - FAQ ================= */

@media (max-width:768px){

.faq-section{
padding:70px 16px;
}

.faq-heading-wrap h2{
font-size:32px;
}

.faq-heading-wrap p{
font-size:16px;
}

.faq-question{
font-size:20px;
padding:22px 20px;
}

.faq-answer p{
padding:0 20px 20px;
font-size:16px;
line-height:1.6;
}

}


/* ================= SMALL PHONES ================= */

@media (max-width:480px){

.faq-heading-wrap h2{
font-size:28px;
}

.faq-question{
font-size:18px;
padding:20px 18px;
}

.faq-answer p{
font-size:15px;
}

.service-card{
padding:24px 20px;
}

}

/* ================= MOBILE FIX - SIGN IN BUTTON ================= */

@media (max-width:768px){

.header-btn{
gap:8px;
}

.signin-btn{
padding:6px 10px !important;
font-size:12px !important;
min-width:auto !important;
height:34px !important;
}

}


/* ================= MOBILE FIX - TICKER ================= */

@media (max-width:768px){

.ticker{
padding:12px 0;
}

.ticker span{
font-size:14px;
margin-right:25px;
}

}


/* ================= MOBILE FIX - DROPDOWN ================= */

@media (max-width:768px){

.dropdown-menu{
display:none !important;
}

}


/* ================= MOBILE FIX - WHATSAPP BUTTON ================= */

@media (max-width:768px){

.whatsapp-float{
width:56px;
height:56px;
bottom:18px;
right:18px;
}

.whatsapp-float svg{
width:28px;
height:28px;
}

}


/* ================= MOBILE FIX - FOOTER ================= */

@media (max-width:768px){

.footer{
padding:22px 16px;
font-size:14px;
}

}

/* ================= MOBILE FIX - POPUP ================= */

@media (max-width:768px){

.popup-box{
width:90%;
padding:28px 20px;
border-radius:8px;
}

.popup-box h2{
font-size:22px;
}

.popup-form input{
padding:10px;
font-size:14px;
}

.popup-form button{
padding:12px;
font-size:14px;
}

.whatsapp-btn{
font-size:14px;
padding:12px;
}

}


/* ================= MOBILE FIX - ABOUT INTRO ================= */

@media (max-width:768px){

.about-intro{
padding:70px 20px;
}

.about-container{
flex-direction:column;
gap:35px;
text-align:center;
}

.about-left{
flex:100%;
padding-left:0;
}

.about-left h2{
font-size:38px;
line-height:1.1;
}

.about-highlight{
font-size:20px;
}

.about-divider{
display:none;
}

.about-right{
flex:100%;
padding-right:0;
}

.about-right p{
font-size:16px;
line-height:1.6;
margin-bottom:25px;
}

.about-link{
font-size:16px;
justify-content:center;
}

}


/* ================= SMALL PHONES ================= */

@media (max-width:480px){

.about-left h2{
font-size:32px;
}

.about-highlight{
font-size:18px;
}

.about-right p{
font-size:15px;
}

}

/* ================= MOBILE FIX - EMS SECTION ================= */

@media (max-width:768px){

.ems-section{
padding:70px 20px;
}

.ems-container{
flex-direction:column;
gap:40px;
text-align:center;
}

.ems-text{
flex:100%;
}

.ems-text h2{
font-size:34px;
line-height:1.2;
}

.ems-text p{
font-size:16px;
line-height:1.6;
margin-bottom:20px;
}

.ems-benefits li{
font-size:15px;
}

.ems-video{
flex:100%;
}

.ems-video video{
max-width:260px;
}

}


/* ================= MOBILE FIX - SERVICES SLIDER ================= */

@media (max-width:768px){

.workout-slider-section{
padding:40px 20px 60px;
}

.workout-categories{
gap:10px;
margin-bottom:20px;
justify-content:center;
}

.workout-categories button{
padding:10px 16px;
font-size:13px;
}

.slider-arrow{
display:none;
}

.workout-slider{
gap:16px;
}

.workout-card{
flex:0 0 80%;
min-width:240px;
height:180px;
}

.workout-overlay{
padding:14px;
}

.workout-overlay h3{
font-size:16px;
}

.workout-tags span{
font-size:11px;
padding:6px 10px;
}

}


/* ================= MOBILE FIX - LOGO INTRO ================= */

@media (max-width:768px){

.logo-intro{
margin-top:-40px;
margin-bottom:20px;
}

.logo-intro video{
width:220px;
}

}


/* ================= SMALL PHONES ================= */

@media (max-width:480px){

.ems-text h2{
font-size:28px;
}

.workout-card{
flex:0 0 90%;
height:170px;
}

.logo-intro video{
width:180px;
}

}

/* ================= MOBILE FIX - SERVICES HEADER ================= */

@media (max-width:768px){

.services-header{
justify-content:center;
margin-bottom:25px;
padding:0 20px;
}

.services-title{
font-size:32px;
text-align:center;
letter-spacing:0.5px;
}

}


/* ================= MOBILE FIX - EMS STATS ================= */

@media (max-width:768px){

.ems-stats-section{
padding:70px 20px;
}

.ems-stats-top{
grid-template-columns:1fr;
gap:35px;
margin-bottom:40px;
}

.ems-stat-divider{
display:none;
}

.ems-stat-item h2{
font-size:52px;
}

.stat-symbol{
font-size:36px;
}

.ems-stat-item h4{
font-size:16px;
}

.stat-line{
width:40px;
}

.ems-stats-text p{
font-size:16px;
line-height:1.6;
}


.ems-stats{
display:flex;
flex-direction:row;
justify-content:space-between;
align-items:center;
gap:10px;
}


.ems-stat{
flex:1;
text-align:center;
}


.ems-stat h3{
font-size:28px;
}


}


/* ================= MOBILE FIX - CONTACT SECTION ================= */

@media (max-width:768px){

.contact-section{
padding:70px 20px;
}

.contact-booking-wrap{
grid-template-columns:1fr;
gap:30px;
}

.contact-booking-image{
min-height:360px;
border-radius:18px;
}

.contact-image-overlay{
padding:25px;
}

.contact-image-overlay h2{
font-size:32px;
line-height:1.2;
}

.contact-image-overlay p{
font-size:15px;
line-height:1.6;
}

.contact-image-overlay span{
font-size:12px;
padding:8px 14px;
}


.ems-stats-top{
display:flex;
flex-direction:row;
justify-content:space-between;
align-items:flex-start;
gap:10px;
}

.ems-stat-item{
flex:1;
text-align:center;
}

.ems-stat-divider{
display:none;
}


.count-number{
font-size:28px;
}

.ems-stat-item h4{
font-size:12px;
line-height:1.3;
}


}


/* ================= SMALL PHONES ================= */

@media (max-width:480px){

.services-title{
font-size:28px;
}

.ems-stat-item h2{
font-size:44px;
}

.stat-symbol{
font-size:30px;
}

.contact-image-overlay h2{
font-size:28px;
}

.contact-image-overlay p{
font-size:14px;
}

}

/* ================= GLOBAL MOBILE FIX ================= */

@media (max-width:768px){

/* HEADER */

.header{
height:80px;
padding:0 20px;
}

.logo img{
height:95px;
}

/* HERO */

.hero{
height:auto;
min-height:420px;
padding:100px 12px 50px;
text-align:left;
justify-content:center;
}

.hero-content{
margin-top:0;
max-width:250px;
text-align:left;
display:flex;
flex-direction:column;
align-items:flex-start;
padding-left:0;
margin-left:0;
}


.hero .container{
margin:0 !important;
padding-left:14px !important;
text-align:left !important;
}


.hero h1{
font-size:26px;
line-height:1.1;
max-width:240px;
margin-bottom:8px;
text-align:left;
}

.hero p{
font-size:12px;
line-height:1.4;
max-width:220px;
margin-bottom:12px;
text-align:left;
}


.hero-buttons{
display:flex;
flex-direction:column;
align-items:flex-start;
justify-content:flex-start;
width:auto;
}


.hero-buttons a,
.hero-buttons button{
width:auto;
min-width:130px;
padding:10px 16px;
font-size:13px;
border-radius:10px;
display:inline-flex;
align-items:center;
justify-content:center;
}

/* CONTAINER */

.container{
max-width:1200px;
margin:0 auto;
text-align:center;
}

/* SERVICES GRID */

.services-grid{
grid-template-columns:1fr;
gap:22px;
}

.service-card{
padding:28px 22px;
}

/* EMS SECTION */

.ems-container{
flex-direction:column;
gap:40px;
text-align:center;
}

.ems-text h2{
font-size:36px;
}

.ems-text p{
font-size:16px;
}

.ems-video video{
max-width:280px;
}

/* WORKOUT SLIDER */

.workout-slider-section{
padding:30px 20px 60px;
}

.workout-categories{
justify-content:center;
}

.workout-card{
flex:0 0 75%;
min-width:260px;
height:200px;
}

/* ABOUT */

.about-container{
flex-direction:column;
gap:35px;
text-align:center;
}

.about-left{
padding-left:0;
}

.about-left h2{
font-size:38px;
}

.about-divider{
display:none;
}

.about-right{
padding-right:0;
}

/* CONTACT */

.contact-form-top h2{
font-size:32px;
}

.contact-form-top p{
font-size:15px;
}

/* REVIEWS */

.reviews-heading h2{
font-size:36px;
}

.review-text{
font-size:16px;
}

/* FOOTER */

.site-footer{
padding:50px 0 25px;
}

}


/* ================= SMALL PHONES ================= */

@media (max-width:480px){

.hero h1{
font-size:30px;
}

.hero-buttons button{
width:100%;
}

.services-title{
font-size:28px;
}

.about-left h2{
font-size:32px;
}

.ems-text h2{
font-size:30px;
}

.review-meta h4{
font-size:20px;
}

}

/* =========================
   PRICING PAGE
========================= */

.pricing-page{
    background:#000;
    color:#fff;
}

/* HERO */
.pricing-hero{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px 80px;
    background:
        linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.70)),
        url("images/pricing-hero.jpg") center center / cover no-repeat;
    overflow:hidden;
}

.pricing-hero-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center, rgba(181,245,61,0.08), transparent 55%);
    pointer-events:none;
}

.pricing-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.pricing-hero-subtitle{
    margin:0 0 12px;
    color:#b7f53d;
    font-size:14px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.pricing-hero h1{
    margin:0 0 16px;
    font-size:72px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    font-style:italic;
}

.pricing-hero h1 span{
    color:#b7f53d;
}

.pricing-hero p{
    margin:0;
    color:#f0f0f0;
    font-size:20px;
    line-height:1.6;
}

/* GREEN STRIP */
.pricing-strip{
    background:#b7f53d;
    overflow:hidden;
    white-space:nowrap;
    padding:18px 0;
}

.pricing-strip-track{
    display:inline-flex;
    align-items:center;
    gap:42px;
    min-width:max-content;
    animation:pricingTicker 22s linear infinite;
}

.pricing-strip-track span{
    color:#000;
    font-size:18px;
    font-weight:800;
}

@keyframes pricingTicker{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* GENERAL SECTION TOP */
.pricing-plans-section{
    padding:90px 20px;
    text-align:center;
    background:#000;
}

.section-top{
    max-width:850px;
    margin:0 auto 38px;
}

.section-label{
    margin:0 0 14px;
    color:#b7f53d;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-top h2,
.pricing-includes h2,
.pricing-cta h2{
    margin:0 0 14px;
    font-size:52px;
    line-height:1.1;
    font-weight:900;
    text-transform:uppercase;
    font-style:italic;
}

.section-top h2 span{
    color:#b7f53d;
}

.section-text{
    margin:0;
    color:#f2f2f2;
    font-size:18px;
    line-height:1.6;
}

/* TOGGLE */
.pricing-toggle{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
    margin:38px 0 46px;
}

.toggle-btn{
    min-width:290px;
    padding:18px 24px;
    border:none;
    border-radius:8px;
    background:#3a3a3a;
    color:#fff;
    font-size:18px;
    font-weight:900;
    cursor:pointer;
    transition:0.25s ease;
    text-transform:uppercase;
}

.toggle-btn.active{
    background:#b7f53d;
    color:#000;
    box-shadow:0 0 0 2px rgba(255,255,255,0.18);
}

/* PLAN WRAPPERS */
.plans-wrapper{
    display:none;
    justify-content:center;
    align-items:stretch;
    gap:24px;
    flex-wrap:nowrap;
}

.plans-wrapper.active{
    display:flex;
}

/* CARD */
.pricing-card{
    width:100%;
    max-width:320px;
    background:#3a3a3a;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,0.35);
}

.pricing-card.featured{
    position:relative;
    border:2px solid #b7f53d;
    box-shadow:0 0 30px rgba(183,245,61,0.22);
}

.pricing-card.featured::before{
    content:"MOST POPULAR";
    position:absolute;
    top:-5px;
    right:-5px;
    background:#b7f53d;
    color:#000;
    font-size:11px;
    font-weight:900;
    padding:8px 14px;
    border-radius:999px;
    letter-spacing:0.6px;
    box-shadow:0 6px 16px rgba(0,0,0,0.35);
}

.price-circle{
    width:130px;
    height:130px;
    margin:18px auto 18px;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border:4px solid rgba(255,255,255,0.28);
    box-shadow:0 0 24px rgba(255,255,255,0.20);
    text-align:center;
    color:#fff;
}

.pricing-card.blue .price-circle{
    background:linear-gradient(180deg,#39c7ff,#1d97da);
}

.pricing-card.purple .price-circle{
    background:linear-gradient(180deg,#c837ff,#8b25ff);
}

.pricing-card.pink .price-circle{
    background:linear-gradient(180deg,#df7dd5,#b55ab8);
}

.price-circle h3{
    margin:0;
    font-size:19px;
    line-height:1.1;
    font-weight:900;
}

.price-circle span{
    margin-top:7px;
    font-size:13px;
    font-weight:700;
}

.card-title-bar{
    background:#2d2d2d;
    padding:16px 14px;
    text-align:center;
}

.card-title-bar h3{
    margin:0;
    font-size:20px;
    font-weight:800;
    color:#fff;
}

.card-content{
    padding:20px 20px 24px;
    text-align:left;
}

.including{
    margin:0 0 16px;
    color:#fff;
    font-size:18px;
    font-weight:800;
}

.card-content ul{
    list-style:none;
    margin:0 0 24px;
    padding:0;
}

.card-content ul li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    color:#f2f2f2;
    line-height:1.5;
}

.card-content ul li::before{
    content:"✓";
    color:#b7f53d;
    font-weight:900;
    font-size:14px;
}

.join-btn{
    display:block;
    width:fit-content;
    min-width:120px;
    margin:0 auto 14px;
    padding:11px 18px;
    border-radius:4px;
    background:#b7f53d;
    color:#000;
    text-decoration:none;
    font-size:15px;
    font-weight:800;
    text-align:center;
    transition:0.25s ease;
}

.join-btn:hover{
    transform:translateY(-2px);
}

.card-content small{
    display:block;
    text-align:center;
    color:#fff;
    font-size:10px;
    font-weight:700;
    text-transform:uppercase;
}

/* INCLUDES */
.pricing-includes{
    background:#353535;
    padding:90px 20px;
}

.pricing-includes .section-top{
    text-align:center;
    margin-bottom:50px;
}

.includes-grid{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2, minmax(280px, 1fr));
    gap:42px 48px;
}

.include-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.include-icon{
    width:68px;
    height:68px;
    min-width:68px;
    border:1px solid #b7f53d;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#b7f53d;
    font-size:28px;
}

.include-box h3{
    margin:0 0 8px;
    color:#fff;
    font-size:22px;
    font-weight:800;
}

.include-box p{
    margin:0;
    color:#fff;
    font-size:15px;
    line-height:1.8;
}

/* CTA */
.pricing-cta{
    text-align:center;
    padding:90px 20px;
    background:
        linear-gradient(to bottom, rgba(255,255,255,0.16), rgba(0,0,0,0.92)),
        #111;
}

.pricing-cta p{
    margin-left:auto;
    margin-right:auto;
    max-width:880px;
    color:#fff;
    font-size:16px;
    line-height:1.7;
}

.cta-whatsapp{
    display:inline-block;
    margin-top:20px;
    padding:14px 30px;
    border-radius:6px;
    background:#b7f53d;
    color:#000;
    text-decoration:none;
    font-size:18px;
    font-weight:900;
}

/* TABLET */
@media (max-width: 991px){

    .pricing-hero h1{
        font-size:52px;
    }

    .section-top h2,
    .pricing-includes h2,
    .pricing-cta h2{
        font-size:38px;
    }

    .includes-grid{
        grid-template-columns:1fr;
    }

    .pricing-card.featured{
        transform:none;
    }
}

.checkout-flow-shell{
    width:100%;
    max-width:900px;
    height:560px;
    position:relative;
    margin:0 auto;
}

.checkout-slider{
    position:relative;
    width:100%;
    height:100%;
}

.checkout-step-card{
    position:absolute;
    top:50%;
    left:50%;
    width:620px;
    max-width:76%;
    min-height:470px;
    background:#ffffff;
    border:1px solid #e8e8ed;
    border-radius:28px;
    padding:22px;
    box-sizing:border-box;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
    transform:translate(-50%, -50%) scale(0.96);
    opacity:0;
    pointer-events:none;
    z-index:1;
}

.checkout-step-card.active{
    transform:translate(-50%, -50%) scale(1);
    opacity:1;
    pointer-events:auto;
    z-index:3;
}

.checkout-step-card.prev{
    transform:translate(-67%, -50%) scale(0.93);
    opacity:0.26;
    z-index:2;
}

.checkout-step-card.next{
    transform:translate(-33%, -50%) scale(0.93);
    opacity:0.26;
    z-index:2;
}

.checkout-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.checkout-form .checkout-field.full-width,
.checkout-form .express-pay-box,
.checkout-form .checkout-divider,
.checkout-form .checkout-step-actions{
    grid-column:1 / -1;
    margin-bottom: 12px;
}

.checkout-form .checkout-divider{
    margin-bottom:-10px;
}

.express-pay-btn{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
}

.pay-icon{
height:18px;
width:auto;
}


/* MOBILE */
@media (max-width: 767px){

    .pricing-hero{
        min-height:320px;
        padding:90px 16px 60px;
    }

    .pricing-hero h1{
        font-size:38px;
        line-height:1.1;
    }

    .pricing-hero p{
        font-size:16px;
    }

    .pricing-plans-section,
    .pricing-includes,
    .pricing-cta{
        padding:70px 16px;
    }

    .section-top h2,
    .pricing-includes h2,
    .pricing-cta h2{
        font-size:28px;
    }

    .section-text{
        font-size:15px;
    }

    .pricing-toggle{
        gap:14px;
        margin:30px 0 34px;
    }

    .toggle-btn{
        min-width:100%;
        font-size:15px;
        padding:15px 16px;
    }

    .plans-wrapper{
        gap:18px;
    }

    .pricing-card{
        width:320px;
    }

    .price-circle{
        width:112px;
        height:112px;
    }

    .price-circle h3{
        font-size:17px;
    }

    .price-circle span{
        font-size:12px;
    }

    .card-content{
        padding:18px 16px 20px;
    }

    .card-content ul li{
        font-size:14px;
    }

    .join-btn{
        width:100%;
    }

    .pricing-strip-track span{
        font-size:15px;
    }
}

.checkout-page{
    min-height:100vh;
    background:#f5f5f7;
    padding:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.checkout-page{
    min-height:100vh;
    background:#f5f5f7;
    padding:40px 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.checkout-flow-shell{
    width:100%;
    max-width:980px;
    height:620px;
    position:relative;
    margin:0 auto;
}

.checkout-slider{
    position:relative;
    width:100%;
    height:100%;
}

.checkout-step-card{
    position:absolute;
    top:50%;
    left:50%;
    width:620px;
    max-width:76%;
    min-height:470px;
    background:#ffffff;
    border:1px solid #e8e8ed;
    border-radius:28px;
    padding:22px;
    box-sizing:border-box;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
    transform:translate(-50%, -50%) scale(0.96);
    opacity:0;
    pointer-events:none;
    z-index:1;
}

.checkout-step-card.active{
    transform:translate(-50%, -50%) scale(1);
    opacity:1;
    pointer-events:auto;
    z-index:3;
}

.checkout-step-card.prev{
    transform:translate(-67%, -50%) scale(0.93);
    opacity:0.26;
    z-index:2;
}

.checkout-step-card.next{
    transform:translate(-33%, -50%) scale(0.93);
    opacity:0.26;
    z-index:2;
}

.checkout-label{
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    color:#666;
    margin:0 0 10px;
}

.checkout-step-card h1{
    font-size:34px;
    line-height:1.1;
    margin:0 0 8px;
    color:#111;
}

.checkout-step-card h2{
    font-size:24px;
    line-height:1.1;
    margin:0 0 14px;
    color:#111;
}

.checkout-sub{
    font-size:16px;
    color:#666;
    margin:0 0 16px;
}

.checkout-price-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
    border-top:1px solid #ededf1;
    border-bottom:1px solid #ededf1;
    margin-bottom:18px;
}

.checkout-price-box span{
    font-size:18px;
    color:#666;
}

.checkout-price-box strong{
    font-size:26px;
    color:#111;
}

.checkout-features{
    list-style:none;
    margin:0 0 26px;
    padding:0;
}

.checkout-features li{
    position:relative;
    padding:10px 0 10px 24px;
    border-bottom:1px solid #f1f1f3;
    font-size:14px;
    color:#111;
    line-height:1.5;
}

.checkout-features li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:10px;
    font-weight:900;
    color:#111;
}

.checkout-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.express-pay-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:2px;
}

.checkout-step-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:4px;
}

.checkout-step-card:nth-child(2){
    width:600px;
    max-width:72%;
    min-height:420px;
}



.checkout-form .checkout-field.full-width,
.checkout-form .express-pay-box,
.checkout-form .checkout-divider,
.checkout-form .checkout-step-actions{
    grid-column:1 / -1;
}


.checkout-field{
    display:flex;
    flex-direction:column;
    gap:7px;
    margin-bottom:-15px;
}

.checkout-field label{
    font-size:14px;
    font-weight:700;
}

.checkout-field input,
.checkout-field select{
    width:100%;
    height:40px;
    padding:0 14px;
    border:1px solid #dcdce1;
    border-radius:14px;
    background:#fff;
    font-size:15px;
    outline:none;
    color:#111;
    box-sizing:border-box;
}

.checkout-field input:focus,
.checkout-field select:focus{
    border-color:#111;
}

.express-pay-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:20px;
}

.express-pay-btn{
    height:46px;
    border:none;
    border-radius:14px;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
}

.apple-pay-btn{
    background:#000;
    color:#fff;
}

.google-pay-btn{
    background:#fff;
    color:#111;
    border:1px solid #dcdce1;
    margin-bottom: -5px;
}

.checkout-divider{
    position:relative;
    text-align:center;
    margin:5px 0 4px;
}

.checkout-divider::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    height:1px;
    background:#e5e5ea;
    transform:translateY(-50%);
}

.checkout-divider span{
    position:relative;
    z-index:1;
    background:#fff;
    padding:0 12px;
    color:#777;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.checkout-step-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:4px;
}

.checkout-main-btn,
.checkout-secondary-btn,
.whatsapp-link-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:48px;
    padding:0 20px;
    border:none;
    border-radius:14px;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
    cursor:pointer;
    box-sizing:border-box;
}

.checkout-main-btn{
    background:#28A745;
    color:#fff;
    flex:1;
}

.checkout-secondary-btn{
    background:#f1f1f4;
    color:#111;
    flex:1;
}

.final-payment-box{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.checkout-inline-fields{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.payment-note-box{
    padding:16px;
    border:1px solid #ececf1;
    border-radius:20px;
    background:#fafafa;
    font-size:14px;
    line-height:1.7;
    color:#444;
}

.checkout-kicker{
    margin:0 0 8px;
    font-size:15px;
    font-weight:700;
    color:#666;
}

/* SUMMARY CARD */
.step-summary{
    width:620px;
    max-width:72%;
    min-height:420px;
}

/* BOOKING FORM CARD */
.step-booking{
    width:600px;
    max-width:68%;
    min-height:460px;
}

.checkout-step-card.step-summary{
    width:620px !important;
    max-width:72% !important;
    min-height:420px !important;
}

.checkout-step-card.step-booking{
    width:600px !important;
    max-width:68% !important;
    min-height:460px !important;
}

/* FINAL PAYMENT STEP LAYOUT */

.final-payment-box{
    margin-top:20px;
}

.bank-details-box{
    background:#f7f7f9;
    border:1px solid #e7e7ec;
    border-radius:16px;
    padding:20px;
    margin-bottom:18px;
    line-height:1.9;
}

.payment-note-box{
    background:#f7f7f9;
    border:1px solid #e7e7ec;
    border-radius:16px;
    padding:18px;
    margin-bottom:24px;
}

/* UNIVERSAL PAYMENT ACTION BUTTON */

.payment-action-btn{
    display:inline-block;
    padding:16px 26px;
    border-radius:14px;
    background:#000;
    color:#fff;
    font-weight:600;
    font-size:16px;
    border:none;
    cursor:pointer;
    transition:all 0.25s ease;
    margin-bottom:18px;
}

.payment-action-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,0.15);
}


@media (max-width: 768px){
    .checkout-page{
        padding:14px;
        align-items:flex-start;
    }

    .checkout-step-card{
        flex:0 0 calc(100% - 40px);
        width:calc(100% - 40px);
        min-height:auto;
        padding:24px;
    }

    .checkout-step-card h1{
        font-size:40px;
    }

    .checkout-step-card h2{
        font-size:32px;
    }

    .checkout-price-box strong{
        font-size:28px;
    }

    .express-pay-box,
    .checkout-inline-fields,
    .checkout-step-actions{
        grid-template-columns:1fr;
        flex-direction:column;
    }
}

.checkout-flow-shell{
    height:640px;
}

.checkout-step-card{
    width:92%;
    max-width:92%;
    min-height:auto;
    padding:20px;
}

.checkout-step-card.prev{
    transform:translate(-56%, -50%) scale(0.97);
    opacity:0.10;
}

.checkout-step-card.next{
    transform:translate(-44%, -50%) scale(0.97);
    opacity:0.10;
}

.checkout-form{
    grid-template-columns:1fr;
}

.express-pay-box{
    display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
}

.payment-method-options{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.payment-method-btn{
    width:100%;
    min-height:48px;
    padding:12px 14px;
    border:1px solid #dcdce1;
    border-radius:14px;
    background:#fff;
    color:#111;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:0.2s ease;
}

.payment-method-btn.active{
    background:#28A745;
    color:#fff;
    border-color:#28A745;
}

