:root {
  --primary: #facc15;
  --primary-dark: #eab308;
  --secondary: #111111;
  --secondary-2: #181818;
  --bg-dark: #0b0b0b;
  --bg-card: #161616;
  --bg-soft: #1d1d1d;
  --text: #ffffff;
  --text-light: #cfcfcf;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --radius-sm: 12px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}

/* Top Strip */
.top-strip {
  background: #000;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.top-strip-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip p {
  color: var(--text-light);
}

.top-strip a {
  color: var(--primary);
  font-weight: 700;
}

.top-strip a:hover {
  color: #fff;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.nav-wrap {
  min-height: 78px; /* header ki height yahi se control ho rahi hai */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo span {
  color: var(--primary);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 22px;
}

.navbar a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.navbar a:hover,
.navbar a.active {
  color: #fff;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #111;
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
  color: #fff;
}

.btn-secondary:hover,
.btn-outline:hover {
  background: #fff;
  color: #111;
  transform: translateY(-3px);
}

.btn-outline {
  border-color: rgba(250, 204, 21, 0.45);
  color: var(--primary);
  background: transparent;
}

.full-btn {
  width: 100%;
}

.section-btn {
  margin-top: 20px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.7)),
    url("../images/hero-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

.about-page-hero {
  min-height: 78vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.74)),
    url("../images/hero-bg.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(250, 204, 21, 0.12), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(250, 204, 21, 0.08), transparent 28%);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.35;
  animation: floatShape 6s ease-in-out infinite;
}

.hero-shape-1 {
  width: 220px;
  height: 220px;
  background: rgba(250, 204, 21, 0.12);
  top: 15%;
  right: 8%;
}

.hero-shape-2 {
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.08);
  bottom: 12%;
  left: 5%;
  animation-delay: 1.3s;
}

@keyframes floatShape {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-text {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--primary);
  border: 1px solid rgba(250, 204, 21, 0.24);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.04;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  max-width: 680px;
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 18px;
  max-width: 620px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
}

.hero-stats h3 {
  color: var(--primary);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-stats p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
}

/* Sections */
.section {
  padding: 95px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-head h2,
.about-content h2,
.contact-info h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-head p,
.about-content p,
.contact-info p {
  color: var(--text-light);
  font-size: 16px;
}

/* About */
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.about-image {
  min-height: 540px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.38)),
    url("../images/gallery-1.jpg") center/cover no-repeat;
  transition: transform 0.7s ease;
  z-index: 0;
}

.about-image:hover::before {
  transform: scale(1.1);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.25));
  z-index: 1;
  pointer-events: none;
}

.about-card-float {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 360px;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.about-card-float i {
  font-size: 22px;
  color: var(--primary);
  margin-top: 3px;
}

.about-card-float h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.about-card-float p {
  color: var(--text-light);
  font-size: 14px;
}

.about-content p + p {
  margin-top: 12px;
}

.about-points {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.mini-card,
.contact-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 16px;
  transition: var(--transition);
}

.mini-card:hover,
.contact-box:hover {
  transform: translateY(-6px);
  border-color: rgba(250, 204, 21, 0.25);
}

.mini-card i,
.contact-box i {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--primary);
  font-size: 18px;
}

.mini-card h4,
.contact-box h4 {
  margin-bottom: 6px;
  font-size: 18px;
}

.mini-card p,
.contact-box p {
  color: var(--text-light);
  font-size: 15px;
}

/* Cards */
.programs,
.testimonials,
.contact {
  background: linear-gradient(180deg, #101010 0%, #0a0a0a 100%);
}

.program-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card,
.plan-card,
.story-card,
.trainer-card,
.contact-form-wrap,
.testimonial-slider,
.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.program-card,
.plan-card {
  padding: 28px;
}

.program-card:hover,
.plan-card:hover,
.story-card:hover,
.trainer-card:hover,
.gallery-item:hover,
.contact-form-wrap:hover,
.testimonial-slider:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 204, 21, 0.24);
}

.program-card i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
}

.program-card h3,
.plan-card h3,
.story-content h3,
.trainer-info h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.program-card p,
.story-content p,
.trainer-info p,
.story-text {
  color: var(--text-light);
}

/* Trainers */
.trainer-grid,
.story-grid,
.gallery-grid {
  display: grid;
  gap: 24px;
}

.trainer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-grid {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trainer-image,
.gallery-item,
.story-card img {
  overflow: hidden;
}

.trainer-image img,
.gallery-item img,
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trainer-card:hover .trainer-image img,
.gallery-item:hover img,
.story-card:hover img {
  transform: scale(1.08);
}

.trainer-image img {
  height: 360px;
}

.trainer-info,
.story-content {
  padding: 22px;
}

.trainer-info span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

/* Plans */
.price {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

.price span {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 600;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}

.plan-card ul li {
  position: relative;
  padding-left: 24px;
  color: var(--text-light);
}

.plan-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.featured {
  border-color: rgba(250, 204, 21, 0.35);
  transform: translateY(-4px);
}

.plan-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  padding: 36px;
  max-width: 860px;
  margin: auto;
  text-align: center;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.45s ease;
}

.testimonial p {
  font-size: 20px;
  color: #f3f4f6;
  margin-bottom: 18px;
}

.testimonial h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.testimonial span {
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.testimonial-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-controls button:hover {
  background: var(--primary);
  color: #111;
}

/* Gallery */
.gallery-item img {
  height: 300px;
}

/* FAQ */
.faq-wrap {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 18px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(250, 204, 21, 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
}

.faq-answer p {
  color: var(--text-light);
}

/* Contact */
.contact-boxes {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.contact-form-wrap {
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid var(--border);
  outline: none;
  color: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(250, 204, 21, 0.45);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.08);
}

/* Footer */
.footer {
  background: #050505;
  padding-top: 70px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer p,
.footer li a {
  color: var(--text-light);
}

.footer h4 {
  margin-bottom: 16px;
  font-size: 19px;
}

.footer ul {
  display: grid;
  gap: 12px;
}

.footer ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer ul li a i {
  color: var(--primary);
  width: 16px;
  font-size: 13px;
}

.footer li a:hover {
  color: var(--primary);
  padding-left: 3px;
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #111;
  color: #fff;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.05);
  background: var(--primary);
  color: #111;
  box-shadow: 0 10px 24px rgba(250, 204, 21, 0.22);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
  z-index: 999;
  animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

/* Floating Call */
.floating-call {
  position: fixed;
  right: 18px;
  bottom: 86px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a73e8;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 14px 28px rgba(26, 115, 232, 0.30);
  z-index: 999;
  animation: pulseCall 2s infinite;
}

.floating-call:hover {
  transform: scale(1.08);
}

@keyframes pulseCall {
  0% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(26, 115, 232, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 115, 232, 0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .navbar {
    gap: 16px;
  }

  .program-grid,
  .trainer-grid,
  .plan-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0d0d0d;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 16px 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .navbar.active {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 95px 0 70px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .program-grid,
  .trainer-grid,
  .plan-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trainer-image img,
  .gallery-item img {
    height: auto;
  }

  .about-image {
    min-height: 420px;
  }

  .section {
    padding: 78px 0;
  }

  .footer {
    padding-top: 55px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .top-strip-inner {
    min-height: auto;
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    font-size: 26px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p,
  .section-head p,
  .about-content p,
  .contact-info p {
    font-size: 15px;
  }

  .btn {
    min-height: 48px;
    padding: 0 20px;
    font-size: 14px;
  }

  .testimonial-slider {
    padding: 24px 18px;
  }

  .testimonial p {
    font-size: 17px;
  }

  .contact-form-wrap,
  .program-card,
  .plan-card {
    padding: 22px;
  }
}