/* RESET */
* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* For Firefox */
html {
  scrollbar-width: none;
  scroll-behavior: smooth;
}

/* For IE / old Edge */
html {
  -ms-overflow-style: none;
}

body {
  overflow-y: scroll;
  /* keeps scrolling working */
}

/* Hide scrollbar everywhere */
body::-webkit-scrollbar {
  display: none;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* ROOT  */
:root {

  /* Brand */
  --primary: #ff0c00;
  --primary-light: #ff3b2f;

  /* Background */
  --bg-main: #0f0f0f;
  --bg-secondary: #151515;
  --bg-card: #1a1a1a;

  /* Text */
  --heading: #ffffff;
  --text: #cccccc;
  --muted: #888888;

  /* Border */
  --border: #2a2a2a;

  /* Spacing */
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 40px;
  --space-xl: 80px;

  /* Typography */
  --h1: 56px;
  --h2: 36px;
  --h3: 22px;
  --text-md: 16px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;

}

/* BODY */

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-main);
  color: var(--heading);
}

/* BODY TEXT */
body {
  font-family: 'Poppins', sans-serif;
}

/* HEADINGS (STRONG GYM FEEL 💪) */
h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* CONTAINER */

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-s);
}

/* TYPOGRAPHY */
h1 {
  font-size: var(--h1);
  line-height: 1.2;
}

h2 {
  font-size: var(--h2);
}

h3 {
  font-size: var(--h3);
}

p {
  font-size: var(--text-md);
  color: var(--text);
}

/* BUTTON */
.btn {
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

a {
  text-decoration: none;
  color: inherit;
}

/* SECTION */
section {
  padding: var(--space-xl) 0;
}

/* CARD */
.card {
  background: var(--bg-card);
  padding: var(--space-m);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

/* NAVBAR */

/* NAV WRAPPER */
.nav-main {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s ease;
  will-change: transform;
}

.nav-hidden {
  transform: translateY(-120%);
}

/* NAV CONTAINER BOX */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 25px;

  border-radius: 50px;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  /* DEPTH */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* LOGO */
.logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  z-index: 1000;
  padding-top: 0px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LINKS */
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  opacity: 0.8;
  position: relative;
  transition: 0.3s;
}

/* HOVER EFFECT */
.nav-links a:hover {
  opacity: 1;
  color: var(--primary);
}

/* UNDERLINE ANIMATION */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.nav-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
}

.mobile-top {
  display: none;
}

/* HAMBURGER */
.hamburger {
  display: none;
  position: relative;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 2001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

/* ACTIVE = X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* RESPONSIVE */
/* @media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;

    width: 70%;
    height: 100vh;
    background: #111;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    transition: 0.4s ease;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

} */

/* FOOTER SECTION */

.footer {
  background: #0a0a0a;
  padding: 100px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

/* BRAND */
.footer-brand h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #999;
  line-height: 1.6;
  max-width: 260px;
}

/* TITLES */
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 15px;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #aaa;
}

.footer-col a {
  color: #aaa;
  transition: 0.3s;
}

.footer-col a:hover {
  color: var(--brand-primary);
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.footer-bottom p {
  color: #777;
  font-size: 13px;
}

/* SOCIALS */
.socials {
  display: flex;
  align-items: center;
}

/* ICON BOX */
.socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: 50%;
  margin-left: 10px;
  color: #fff;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* HOVER */
.socials a:hover {
  background: var(--brand-primary);
  color: #fff;

  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 12, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

/* WHATSAPP FLOAT  */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 55px;
  height: 55px;

  background: #25D366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  z-index: 999;
  transition: 0.3s;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.1);

  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* .whatsapp-float::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;

  background: #25D366;
  opacity: 0.5;

  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
} */

/* VIDEO MODLE */

.video-modal {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.9);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

/* ACTIVE */
.video-modal.show {
  display: flex;
}

/* CONTENT */
.video-content {
  width: 80%;
  max-width: 800px;
  position: relative;
}

/* VIDEO */
.video-content iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

/* CLOSE */
.close-video {
  position: absolute;
  top: -40px;
  right: 0;

  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* HOME PAGE : HERO SECTION */

.hero {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  padding-top: 90px;

  /* Background glow */
  background: radial-gradient(circle at 75% 50%,
      #ff3b2f 0%,
      #0f0f0f 60%);
}

/* WRAPPER */

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-image {
  position: relative;
  flex: 1;
  text-align: right;
}

.hero-text {
  flex: 1;
}

/* TEXT AREA */
.hero-text {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

/* HEADING */
.hero-text h1 {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
}

/* DESCRIPTION */
.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text);
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* VIDEO BUTTON */
.video-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

/* OPTIONAL PLAY ICON STYLE */
.video-btn::before {
  content: "▶";
  font-size: 12px;
}

/* BUTTON WRAPPER */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* VIDEO CTA */
.video-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  transition: 0.3s;
}

.video-btn:hover {
  color: var(--primary);
}

/* PLAY ICON */
.play-icon {
  font-size: 12px;
}

/* REVIEWS */
.hero-reviews {
  margin-top: 25px;
  font-size: 14px;
  color: var(--text);
}

/* TAGS */
.hero-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--text);
  transition: 0.3s;
}

/* TAG HOVER */
.hero-tags span:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* IMAGE */
/* .hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
} */

/* IMAGE SIZE */
.hero-image img {
  max-width: 550px;
  transform: scale(1.1);
  height: auto;
}

/* SVG animation */
.cta-btn svg {
  transition: transform 0.3s ease;
}

/* Hover effect */
.cta-btn:hover svg {
  transform: translateX(6px);
}

/* =========================
   RESPONSIVE (IMPORTANT 📱)
========================= */
@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-image img {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero-wrapper {
    text-align: center;
  }

  .hero-text {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-tags {
    justify-content: center;
  }

  .hero-image {
    position: relative;
    margin-top: 40px;
    text-align: center;
  }

  .hero-image img {
    max-width: 300px;
  }
}

/* HOME PAGE : SERVICES SECTION */

.services {
  padding: 100px 0;
  background: var(--bg-main);
}

.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  /* 🔥 KEY FIX */
  gap: 30px;
  margin-bottom: 60px;
}

/* TEXT */
.services-text {
  max-width: 600px;
}

.tag {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
  letter-spacing: 1px;
}

.services-text h2 {
  font-size: 42px;
  line-height: 1.3;
}

.services-text h2 span {
  color: var(--primary);
}

.services-text p {
  margin-top: 15px;
  color: var(--text);
}

.services-arrows {
  display: flex;
  margin-bottom: 10px;
  gap: 10px;
}

.arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.arrow svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  transition: 0.3s ease;
}

.arrow:hover {
  background: #ff0c00;
  border-color: #ff0c00;
}

.arrow:hover svg {
  transform: translateX(2px);
}

.services-cards {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 40px;
}

/* HIDE SCROLLBAR */
.services-cards::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  min-width: 350px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;

  transition: transform 0.3s ease;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.2),
      transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

/* TEXT */
.overlay h3 {
  font-size: 18px;
  color: white;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card:hover img {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .services-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-text h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .services-text h2 {
    font-size: 28px;
  }

  .service-card {
    min-width: 240px;
    height: 200px;
  }
}

/* HOME PAGE : TRANSFORM SECTION */

.transform {
  position: relative;
  min-height: 600px;
  height: 700px;

  background: url("images/transformation-img.webp") top center / cover no-repeat;

  display: flex;
  align-items: center;
}

.transform-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.95) 20%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.2) 100%);
}

/* INNER */
.transform-inner {
  display: flex;
  align-items: center;
  height: 100%;

  padding-left: 80px;
}

/* CONTENT */
.transform-content {
  max-width: 480px;
  z-index: 2;
}

/* TEXT */
.transform-content h2 {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;
}

.transform-content h2 span {
  color: var(--primary);
}

.transform-content p {
  margin: 20px 0 25px;
  font-size: 17px;
}

/* POINTS */
.transform-points {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}

.transform-points span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
}

.transform-content .btn {
  padding: 18px 36px;
  font-size: 16px;
  border-radius: 10px;
}

/* svg icons */

.transform-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;

  color: var(--text);
  transition: 0.3s;
}

/* SVG COLOR CONTROL */
.transform-points svg {
  color: var(--primary);
}

.transform-points span:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* HOME PAGE : PRICING SECTION */

.pricing {
  background: #0f0f0f;
  padding: 120px 0;
}

/* TOP */
.pricing-top {
  margin-bottom: 60px;
}

.pricing-top h2 span {
  color: var(--primary);
}

/* CARDS WRAPPER */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}

.pricing-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 35px;
  width: 300px;
  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TITLE */
.pricing-card h3 {
  font-size: 22px;
  font-weight: 600;
}

/* PRICE */
.pricing-card h4 {
  font-size: 38px;
  font-weight: 700;
  margin: 15px 0;
}

.pricing-card h4 span {
  font-size: 14px;
  color: #aaa;
}

/* LIST */
.pricing-card ul {
  margin: 20px 0;
  padding: 0;
}

.pricing-card li {
  margin-bottom: 12px;
  color: #bbb;
  font-size: 14px;
}

/* BUTTON */
.pricing-card .btn {
  margin-top: auto;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-size: 14px;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary);

  box-shadow: 0 20px 60px rgba(255, 12, 0, 0.25);

  background: linear-gradient(135deg,
      rgba(255, 12, 0, 0.08),
      rgba(255, 12, 0, 0.02));
}

.pricing-card.active {
  transform: scale(1.05);
  border: 1px solid var(--primary);
}

/* STRONGER HOVER FOR ACTIVE */
.pricing-card.active:hover {
  box-shadow: 0 25px 80px rgba(255, 12, 0, 0.5);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);

  background: #fff;
  color: #000;

  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 90%;
  }

  .pricing-card.active {
    transform: none;
  }
}

/* HOME PAGE : TESTIMONIALS SECTION */

.testimonials {
  /* background: #0f0f0f; */
  background: #0c0c0c;
  padding: 120px 0;
}

/* TOP */
.testimonials-top {
  margin-bottom: 60px;
}

.testimonials-top h2 span {
  color: var(--primary);
}

/* CARDS */
.testimonials-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}

/* CARD */
.testimonial-card {
  background: linear-gradient(180deg, #1a1a1a, #111);
  border-radius: 20px;
  padding: 25px;
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--brand-primary);

  box-shadow: 0 20px 60px rgba(255, 12, 0, 0.25);
}

/* TEXT */
.testimonial-card p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* NAME */
.user h4 {
  font-size: 14px;
}

.user span {
  font-size: 12px;
  color: #888;
}

/* STARS */
.stars {
  color: var(--primary);
  font-size: 14px;
  margin-top: 10px;
}

/* HOME PAGE : CTA SECTION  */

.cta {
  background: #0f0f0f;
  padding: 120px 0;
}

/* BOX */
.cta-box {
  background: linear-gradient(135deg,
      rgba(255, 12, 0, 0.2),
      rgba(255, 12, 0, 0.05));

  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;

  text-align: center;
  padding: 60px 30px;

  max-width: 800px;
  margin: auto;
}

/* HEADLINE */
.cta-box h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-box h2 span {
  color: var(--primary);
}

/* TEXT */
.cta-box p {
  color: #bbb;
  margin-bottom: 0px;
}

/* BUTTON */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 33px;
}

/* BASE BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 14px 28px;
  height: 52px;

  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;

  transition: all 0.3s ease;
}


.cta-btn.primary {
  background: var(--primary);
  color: #fff;

  box-shadow: 0 10px 30px rgba(255, 12, 0, 0.4);
}

.cta-btn.primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 50px rgba(255, 12, 0, 0.6);
}


.cta-btn.secondary {
  background: transparent;
  border: 2px solid #25D366;
  color: #25D366;
}

.cta-btn.secondary:hover {
  background: #25D366;
  color: #fff;
  transform: translateY(-3px) scale(1.03);
}

/* TRUST TEXT */
.cta-subtext {
  font-size: 13px;
  color: #aaa;
  margin-top: 12px;
}