/* ============================================================
   MY FITNESS – Premium Gym Website Stylesheet
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --accent: #B6FF00;
  --accent-alt: #A3FF12;
  --bg: #0D0D0D;
  --bg2: #111111;
  --bg3: #1A1A1A;
  --text: #FFFFFF;
  --muted: #B3B3B3;
  --border: rgba(255,255,255,0.08);
  --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition: 0.3s ease;
  --radius: 4px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === UTILITY === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.center { text-align: center; }
.center-btn { text-align: center; margin-top: 48px; }
.accent { color: var(--accent); }
.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 52px;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 56px;
  text-transform: uppercase;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: 44px;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.link-arrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 12px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-alt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(182,255,0,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
/* Shine effect */
.shine-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.shine-btn:hover::after { left: 150%; }
.play-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 10px;
  flex-shrink: 0;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  min-width: 200px;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all var(--transition);
  padding: 8px 0;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--muted);
}
.dropdown-menu li a:hover { color: var(--accent); background: rgba(182,255,0,0.05); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 10s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.6) 50%, rgba(13,13,13,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4%;
}
.hero-text { max-width: 1000px; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(72px, 11vw, 130px);
  line-height: 0.9;
  letter-spacing: 4px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.15);
  margin-bottom: 24px;
  animation: titleReveal 1s ease forwards;
}
@keyframes titleReveal {
  from { opacity: 0; transform: translateY(40px); -webkit-text-stroke-color: transparent; }
  to { opacity: 1; transform: translateY(0); -webkit-text-stroke-color: rgba(255,255,255,0.15); }
}
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}
.slider-btn {
  width: 48px; height: 48px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { border-color: var(--accent); color: var(--accent); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--accent); transform: scale(1.3); }
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* === TICKER === */
.ticker-strip {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 80px;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  flex-shrink: 0;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* === ABOUT TEASER === */
.about-teaser { border-bottom: 1px solid var(--border); }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-right p { color: var(--muted); margin-bottom: 16px; }

/* === SERVICES === */
.services { background: var(--bg2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
  z-index: 0;
}
.service-card:hover::before, .service-card.active::before { transform: scaleY(1); }
.service-icon, .service-card h3, .service-card p, .card-link { position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition);
}
.service-icon svg { width: 28px; height: 28px; stroke: var(--accent); transition: stroke var(--transition); }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.service-card p { font-size: 14px; color: var(--muted); margin-bottom: 24px; transition: color var(--transition); }
.card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  transition: color var(--transition);
}
.service-card:hover h3, .service-card:hover p, .service-card:hover .card-link,
.service-card.active h3, .service-card.active p, .service-card.active .card-link { color: #000; }
.service-card:hover .service-icon, .service-card.active .service-icon { border-color: #000; }
.service-card:hover .service-icon svg, .service-card.active .service-icon svg { stroke: #000; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(182,255,0,0.2); }

/* === WHY CHOOSE US === */
.why-us { background: var(--bg); }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.why-left img {
  border-radius: 4px;
  height: 600px;
  width: 100%;
  object-fit: cover;
}
.why-right p { color: var(--muted); margin-bottom: 36px; }
.why-features { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 20px; align-items: flex-start; }
.why-icon {
  width: 56px; height: 56px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.why-icon:hover { background: var(--accent); }
.why-icon:hover svg { stroke: #000; }
.why-icon svg { width: 26px; height: 26px; stroke: var(--accent); transition: stroke var(--transition); }
.why-text h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.why-text p { font-size: 14px; color: var(--muted); margin-bottom: 0; }

/* === ACHIEVEMENTS === */
.achievements { background: var(--bg2); }
.achievements-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.progress-bars { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.progress-item {}
.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}
.progress-num { color: var(--accent); }
.progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 10px rgba(182,255,0,0.6);
}

/* Stats */
.stats-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.stat-item {
  padding: 40px 24px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: background var(--transition);
}
.stat-item:hover { background: rgba(182,255,0,0.04); }
.stat-num {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  display: inline-block;
}
.stat-plus {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--accent);
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 8px;
  text-transform: uppercase;
}

/* === TESTIMONIALS === */
.testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(182,255,0,0.3);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}
.stars { color: var(--accent); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p { font-size: 15px; color: var(--muted); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.testimonial-author strong { display: block; font-weight: 700; }
.testimonial-author span { font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }

/* === CTA BANNER === */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.85);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.cta-content p { color: var(--muted); margin-bottom: 36px; font-size: 18px; }

/* === FOOTER === */
.footer { background: #080808; border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: all var(--transition);
}
.social-links a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--text);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.contact-info li { font-size: 14px; color: var(--muted); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s !important; }
.delay-2 { transition-delay: 0.3s !important; }
.delay-3 { transition-delay: 0.45s !important; }

/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

/* === PAGE HERO (inner pages) === */
.page-hero {
  height: 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  margin-top: 72px;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(13,13,13,0.8); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 64px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.breadcrumb { font-size: 14px; color: var(--muted); margin-top: 8px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { margin: 0 8px; }

/* === ABOUT PAGE === */
.about-story { background: var(--bg); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-img { position: relative; }
.about-story-img img { border-radius: 4px; height: 500px; object-fit: cover; width: 100%; }
.about-story-img .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px; height: 120px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
}
.experience-badge .big-num { font-family: var(--font-heading); font-size: 42px; line-height: 1; }
.experience-badge .small-text { font-size: 11px; font-weight: 700; text-align: center; line-height: 1.2; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--muted); margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.check-list li::before { content: '✓'; color: var(--accent); font-weight: 900; font-size: 16px; }

/* Team */
.team { background: var(--bg2); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.team-img { position: relative; overflow: hidden; }
.team-img img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 20px 20px 24px; }
.team-info h4 { font-family: var(--font-heading); font-size: 20px; letter-spacing: 1px; margin-bottom: 4px; }
.team-info span { font-size: 12px; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; }

/* === SERVICES PAGE === */
.services-full { background: var(--bg); }
.services-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-full-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 40px 36px;
  border-radius: var(--radius);
  display: flex;
  gap: 28px;
  transition: all var(--transition);
}
.service-full-card:hover {
  border-color: rgba(182,255,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.sf-icon {
  width: 64px; height: 64px;
  background: rgba(182,255,0,0.1);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sf-icon svg { width: 32px; height: 32px; stroke: var(--accent); }
.sf-text h3 { font-family: var(--font-heading); font-size: 24px; letter-spacing: 1px; margin-bottom: 10px; }
.sf-text p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }

/* === PRICING PAGE === */
.pricing-section { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.pricing-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.05);
}
.pricing-card.featured * { color: #000 !important; }
.pricing-card.featured .btn-primary { background: #000; color: var(--accent) !important; border-color: #000; }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
}
.pricing-card h3 { font-family: var(--font-heading); font-size: 28px; letter-spacing: 2px; margin-bottom: 24px; }
.price { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin-bottom: 12px; flex-wrap: wrap; }
.price-currency {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-top: 16px;
  color: var(--muted);
  align-self: flex-start;
}
.pricing-card.featured .price-currency { color: rgba(0,0,0,0.6); }
.price-num { font-family: var(--font-heading); font-size: 72px; line-height: 1; }
.price-period { font-size: 14px; color: var(--muted); align-self: flex-end; margin-bottom: 10px; }
.pricing-card.featured .price-period { color: rgba(0,0,0,0.6); }
.pricing-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.pricing-features li { font-size: 14px; display: flex; align-items: center; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 900; }
.pricing-card.featured .pricing-features li::before { color: #000; }
/* Toggle animation for pricing grid */
#monthlyPlans, #yearlyPlans { animation: pricingFadeIn 0.4s ease; }
@keyframes pricingFadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* === CONTACT PAGE === */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.contact-info-col { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-info-icon {
  width: 56px; height: 56px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 24px; height: 24px; stroke: var(--accent); }
.contact-info-item h4 { font-family: var(--font-heading); font-size: 18px; letter-spacing: 1px; margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; color: var(--muted); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-status { padding: 14px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 600; display: none; }
.form-status.success { background: rgba(182,255,0,0.1); border: 1px solid var(--accent); color: var(--accent); display: block; }
.form-status.error { background: rgba(255,60,60,0.1); border: 1px solid #ff3c3c; color: #ff3c3c; display: block; }
.btn-loading { pointer-events: none; opacity: 0.7; }
.btn-loading::after { content: '...'; animation: dots 1s infinite; }
@keyframes dots { 0%{content:'.'} 33%{content:'..'} 66%{content:'...'} }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-teaser-grid,
  .why-us-grid,
  .achievements-grid,
  .about-story-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-right { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .section-title { font-size: 38px; }
  .section-heading { font-size: 32px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--bg3);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; z-index: 1001; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 60px; }
  .scroll-indicator { display: none; }
  .stat-num { font-size: 56px; }
  .page-hero h1 { font-size: 44px; }
  .about-story-img .experience-badge { right: 16px; bottom: 16px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */

/* Upgraded play-icon wrapper on the hero button */
.video-play-btn { background: none; }
.play-icon-wrap {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-play-btn:hover .play-icon-wrap {
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(182,255,0,0.6);
}
.play-icon-wrap .play-icon {
  width: auto; height: auto;
  background: transparent;
  border-radius: 0;
  color: #000;
  font-size: 11px;
  margin-left: 2px; /* optical centre for ▶ */
}

/* Modal overlay */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

/* Frosted dark backdrop */
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

/* Modal container */
.video-modal-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 960px;
  transform: scale(0.88) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  opacity: 0;
}
.video-modal.active .video-modal-container {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Inner wrapper keeps 16:9 ratio */
.video-modal-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(182,255,0,0.15);
}
.profile-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

/* Close button */
.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  color: #fff;
}
.video-modal-close svg { width: 18px; height: 18px; }
.video-modal-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: rotate(90deg);
}
.video-modal-close:hover svg { stroke: #000; }

/* Responsive */
@media (max-width: 600px) {
  .video-modal-container { width: 96%; }
  .video-modal-close { top: -44px; width: 36px; height: 36px; }
}
