*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #060606;
  --bg-soft: #111111;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.09);
  --white: #ffffff;
  --text: #f5f5f5;
  --muted: #b7b7b7;
  --border: rgba(255, 209, 59, 0.16);
  --primary: #ffd43b;
  --primary-2: #ffb800;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 22px;
  --radius-sm: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 212, 59, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at 82% 16%,
      rgba(255, 184, 0, 0.08),
      transparent 20%
    ),
    linear-gradient(135deg, #050505 0%, #0c0c0c 48%, #121212 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  animation: pageFade 0.5s ease;
  
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
} /* LOGO */
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 209, 59, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px;
} /* BACKGROUND */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: -2;
  animation: floatOrb 12s ease-in-out infinite;
}
.orb-1 {
  width: 280px;
  height: 280px;
  background: rgba(255, 212, 59, 0.14);
  top: 80px;
  left: -80px;
}
.orb-2 {
  width: 320px;
  height: 320px;
  background: rgba(255, 184, 0, 0.1);
  bottom: 40px;
  right: -100px;
  animation-delay: -4s;
}
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent);
  z-index: -3;
} /* LAYOUT */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 64px;
  flex: 1;
  padding-top: 24px !important;
}
section {
  margin-bottom: 72px;
} /* FORCE HERO GAP FIX */
main > section:first-child,
main > .hero:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
  align-content: start !important;
}
.hero-copy,
.hero-image-card {
  align-self: start !important;
} /* GLASS CARD */
.glass-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 212, 59, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
} /* NAVBAR */
.topbar-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(6, 6, 6, 0.68);
  border-bottom: 1px solid rgba(255, 209, 59, 0.12);
  margin-bottom: 0 !important;
}
.topbar {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--white);
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: 0.25s ease;
  font-size: 0.92rem;
  border: 1px solid transparent;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 212, 59, 0.08);
  border-color: rgba(255, 212, 59, 0.14);
}
.nav-links a.active {
  color: #111111;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 28px rgba(255, 212, 59, 0.28);
}
.nav-cta {
  font-weight: 600;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 1px solid rgba(255, 209, 59, 0.18);
  padding: 8px;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 99px;
  transition: 0.3s ease;
} /* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
}
.hero > * {
  min-width: 0;
}
.hero-copy {
  padding: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.hero-copy::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 212, 59, 0.14),
    transparent 70%
  );
  right: -80px;
  bottom: -80px;
}
.hero-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe27a;
  background: rgba(255, 212, 59, 0.08);
  border: 1px solid rgba(255, 212, 59, 0.16);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow.light {
  background: rgba(255, 212, 59, 0.1);
  color: #fff1a8;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #fff3bf 45%, #ffd43b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: var(--muted);
  max-width: 60ch;
  font-size: 1rem;
  margin: 0 0 0 0;
  text-align: left;
}
.page-hero p {
  color: var(--muted);
  max-width: 700px;
  font-size: 1rem;
  margin: 10px auto 0;
  text-align: center;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 24px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 212, 59, 0.28);
}
.stat-card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2px;
}
.stat-card span {
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-micro {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-image-card {
  position: relative;
  min-height: 540px;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-width: 0;
  animation: softFloat 5s ease-in-out infinite;
}
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-badges {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-image-badges span {
  background: rgba(0, 0, 0, 0.72);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 59, 0.12);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
} /* BUTTONS */
.btn-primary,
.btn-ghost,
.pricing-btn {
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.28s ease;
  font-weight: 700;
}
.btn-primary,
.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #111111;
  padding: 0.92rem 1.55rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(255, 212, 59, 0.22);
}
.btn-primary:hover,
.primary-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 36px rgba(255, 212, 59, 0.3);
}
.light-btn {
  background: white;
  color: #111111;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  padding: 0.92rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 212, 59, 0.14);
}
.btn-ghost:hover {
  background: rgba(255, 212, 59, 0.08);
  transform: translateY(-2px);
}
.btn-primary:active,
.btn-ghost:active,
.pricing-btn:active {
  transform: scale(0.98);
} /* HEADERS */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}
.section-header.left {
  justify-content: flex-start;
}
.section-header h2 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  margin-bottom: 4px;
}
.section-header p {
  color: var(--muted);
  max-width: 44ch;
}
.page-hero {
  text-align: center;
  padding: 12px 0 8px;
}
.page-hero h1 {
  margin-bottom: 8px;
} /* GRIDS */
.feature-grid,
.pricing-grid,
.progress-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card {
  padding: 24px;
}
.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 212, 59, 0.18),
    rgba(255, 184, 0, 0.1)
  );
  margin-bottom: 16px;
}
.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.feature-card p {
  color: var(--muted);
} /* INSTRUCTORS */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.instructor-card {
  display: flex;
  gap: 18px;
  padding: 20px;
}
.instructor-card:hover {
  transform: translateY(-10px) scale(1.02);
}
.instructor-photo {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 22px;
  flex-shrink: 0;
}
.instructor-info {
  flex: 1;
}
.instructor-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.badge {
  display: inline-block;
  font-size: 0.78rem;
  color: #111111;
  background: rgb(250, 0, 0);
  border: 1px solid rgb(0, 0, 0);
  padding: 6px 11px;
  border-radius: 999px;
  font-weight: 600;
}
.rating {
  text-align: right;
}
.stars {
  color: #ffd43b;
  display: block;
  font-size: 0.92rem;
}
.rating-value {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}
.instructor-info p {
  color: white;
}
.feedback {
  margin-top: 10px;
  padding: 12px 14px;
  border-left: 3px solid var(--primary);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  font-style: italic;
  color: #f1f1f1 !important;
} /* PREMIUM INSTRUCTORS */
.premium-instructor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.premium-card {
  display: flex;
  gap: 20px;
  padding: 22px;
  border-radius: 26px;
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.premium-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 212, 59, 0.28);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}
.instructor-photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.instructor-photo-wrap .instructor-photo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 209, 59, 0.12);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}
.instructor-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.8);
  color: #fff3bf;
  border: 1px solid rgba(255, 209, 59, 0.16);
  backdrop-filter: blur(8px);
}
.instructor-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.rating-pill {
  min-width: 78px;
  text-align: center;
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 209, 59, 0.1);
}
.rating-pill .stars {
  display: block;
  font-size: 0.88rem;
  color: #ffd43b;
  line-height: 1.1;
}
.rating-pill .rating-value {
  display: block;
  margin-top: 2px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
}
.premium-feedback {
  margin-top: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--primary);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 14px;
  font-style: italic;
  color: #f1f1f1 !important;
}
.premium-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 59, 0.1), transparent 70%);
  pointer-events: none;
} /* TESTIMONIALS */
.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.testimonial-card {
  padding: 20px;
}
.testimonial-card h3 {
  margin-bottom: 8px;
}
.testimonial-card p {
  color: var(--muted);
} /* PRICING */
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pricing-card {
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.pricing-card.highlight {
  transform: scale(1.03);
  border-color: rgba(255, 212, 59, 0.26);
  animation: softFloat 5s ease-in-out infinite;
}
.pricing-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #111111;
}
.price {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 12px 0 8px;
  background: linear-gradient(135deg, #fff7d6, #ffd43b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.saving {
  color: #ffdf70;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-note {
  color: var(--muted);
  margin-bottom: 18px;
}
.pricing-btn {
  margin-top: 8px;
  padding: 0.88rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  width: 100%;
  border: 1px solid rgba(255, 209, 59, 0.12);
}
.pricing-btn:hover {
  background: rgba(255, 212, 59, 0.08);
  transform: translateY(-2px);
} /* FORMS / BOOKING */
.booking-card,
.progress-card,
.latest-booking-card,
.history-card {
  padding: 26px;
}
.form-grid {
  display: grid;
  gap: 16px;
}
.form-row-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
label {
  display: block;
  font-size: 0.88rem;
  color: #e7d48e;
  margin-bottom: 6px;
}
input[type="date"],
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 209, 59, 0.14);
  outline: none;
}
input[type="date"]:focus,
select:focus {
  border-color: rgba(255, 212, 59, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 212, 59, 0.1);
}
.package-group {
  margin-top: 18px;
}
.package-options {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}
.package-option {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 209, 59, 0.1);
  cursor: pointer;
  transition: 0.28s ease;
}
.package-option:hover,
.package-option.active {
  transform: translateY(-3px);
  background: rgba(255, 212, 59, 0.08);
  border-color: rgba(255, 212, 59, 0.22);
}
.highlight-option {
  box-shadow: inset 0 0 0 1px rgba(255, 212, 59, 0.16);
}
.pkg-main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pkg-name {
  font-weight: 700;
  color: var(--white);
}
.pkg-price,
.pkg-save {
  color: var(--muted);
}
.booking-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
} /* PROGRESS */
.progress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.metric-card {
  padding: 28px;
  text-align: center;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.metric-card h3 {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 8px;
}
.metric-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
}
.progress-bar-wrap {
  width: 100%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin: 16px 0 10px;
}
.progress-bar {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  transition: width 1s ease;
}
.progress-text {
  color: var(--muted);
}
.progress-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.latest-booking,
.history-list {
  display: grid;
  gap: 12px;
}
.booking-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 209, 59, 0.08);
}
.booking-item h4 {
  margin-bottom: 6px;
}
.booking-item p {
  color: var(--muted);
} /* CTA */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 212, 59, 0.12),
    rgba(255, 184, 0, 0.08)
  );
  border: 1px solid rgba(255, 209, 59, 0.14);
  box-shadow: var(--shadow);
  animation: softFloat 5s ease-in-out infinite;
}
.cta-box p {
  color: #eadfb0;
} /* ABOUT / CONTACT / FAQ */
.about-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}
.contact-side {
  display: grid;
  gap: 20px;
}
.contact-card {
  padding: 22px;
}
.contact-card h3 {
  margin-bottom: 10px;
  color: var(--white);
}
.contact-card p {
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 209, 59, 0.14);
  outline: none;
  font: inherit;
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.faq-list {
  display: grid;
  gap: 18px;
}
.faq-card {
  padding: 0;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--white);
  border: none;
  padding: 20px 22px;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question span:last-child {
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
.faq-card.active .faq-question span:last-child {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 22px;
}
.faq-card.active .faq-answer {
  max-height: 180px;
  padding: 0 22px 20px;
}
.faq-answer p {
  color: var(--muted);
} /* UTILITY BAR */
.utility-bar {
  width: 100%;
  padding: 8px 20px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: #ffe27a;
  background: rgba(255, 212, 59, 0.04);
  border-bottom: 1px solid rgba(255, 212, 59, 0.1);
  backdrop-filter: blur(14px);
}
.utility-bar span {
  opacity: 0.9;
} /* TRUST STRIP */
.trust-strip-section {
  margin-top: -20px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 212, 59, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 209, 59, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.trust-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 209, 59, 0.08);
}
.trust-item strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.trust-item span {
  color: var(--muted);
  font-size: 0.86rem;
} /* STAGGER */
.feature-grid > *,
.instructor-grid > *,
.testimonial-grid > *,
.pricing-grid > *,
.progress-grid > * {
  animation: cardFadeUp 0.7s ease both;
}
.feature-grid > *:nth-child(2),
.instructor-grid > *:nth-child(2),
.testimonial-grid > *:nth-child(2),
.pricing-grid > *:nth-child(2),
.progress-grid > *:nth-child(2) {
  animation-delay: 0.08s;
}
.feature-grid > *:nth-child(3),
.instructor-grid > *:nth-child(3),
.testimonial-grid > *:nth-child(3),
.pricing-grid > *:nth-child(3),
.progress-grid > *:nth-child(3) {
  animation-delay: 0.16s;
}
.feature-grid > *:nth-child(4),
.instructor-grid > *:nth-child(4),
.testimonial-grid > *:nth-child(4) {
  animation-delay: 0.24s;
} /* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.35);
}
.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1rem;
}
.whatsapp-text {
  white-space: nowrap;
} /* LOCATION + MAP */
.location-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}
.location-card,
.map-card {
  padding: 24px;
}
.location-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--white);
}
.location-card p {
  color: var(--muted);
  margin-bottom: 10px;
}
.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.location-chips span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 209, 59, 0.1);
  color: #fff1a8;
  font-size: 0.82rem;
  font-weight: 600;
}
.real-map {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 209, 59, 0.12);
  background: #0c0c0c;
}
.real-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(110%) brightness(78%);
}
.map-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
} /* LIVE SLOT CHIP */
.live-chip {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 212, 59, 0.08);
  border: 1px solid rgba(255, 212, 59, 0.16);
  color: #00ff08;
  font-size: 0.86rem;
  font-weight: 600;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6fff00;
  box-shadow: 0 0 0 6px rgba(255, 212, 59, 0.14);
  animation: pulseDot 1.8s infinite;
} /* TRAINING CARS */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.car-card {
  overflow: hidden;
  padding: 0;
}
.car-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.car-content {
  padding: 20px;
}
.car-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.car-top h3 {
  color: var(--white);
  font-size: 1.08rem;
}
.car-card p {
  color: var(--muted);
}
.car-badge {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #111111;
  background: rgba(152, 237, 239, 0.9);
  border: 1px solid rgb(0, 0, 0);
}
.car-card img {
  transition: transform 0.45s ease;
}
.car-card:hover img {
  transform: scale(1.04);
} /* SCROLL BAR */
.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #ffd43b, #ffb800);
  z-index: 9999;
} /* SLOT AVAILABILITY PANEL */
.slot-panel {
  margin-top: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 209, 59, 0.08);
}
.slot-panel-top {
  margin-bottom: 14px;
}
.slot-panel-top h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.slot-panel-top p {
  color: var(--muted);
  font-size: 0.86rem;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.slot-chip {
  border: 1px solid rgba(255, 209, 59, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-radius: 16px;
  padding: 14px 12px;
  text-align: left;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.slot-chip span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}
.slot-chip.available:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 212, 59, 0.3);
  background: rgba(255, 212, 59, 0.08);
}
.slot-chip.fast {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.08);
}
.slot-chip.fast span {
  color: #fbbf24;
}
.slot-chip.full {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: rgba(239, 68, 68, 0.18);
  background: rgba(239, 68, 68, 0.06);
}
.slot-chip.full span {
  color: #fca5a5;
}
.slot-chip.selected {
  border-color: rgba(255, 212, 59, 0.4);
  background: linear-gradient(
    135deg,
    rgba(255, 212, 59, 0.14),
    rgba(255, 184, 0, 0.08)
  );
  box-shadow: 0 10px 24px rgba(255, 212, 59, 0.12);
} /* FOOTER */
.footer {
  background: linear-gradient(180deg, #0d0d0d 0%, #000000 100%);
  color: #ffffff;
  padding: 70px 8% 25px;
  border-top: 2px solid #f4c400;
  margin-top: 80px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-col h2,
.footer-col h3 {
  color: #f4c400;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-brand h2 {
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 340px;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #f4c400;
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.footer-bottom p span {
  color: #f4c400;
  font-weight: 600;
}

.footer-bottom a {
  text-decoration: none;
  color: #f4c400;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 55px 6% 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand h2 {
    font-size: 1.6rem;
  }
} /* POPUP */
.booking-popup {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-15px) scale(0.96);
  transition: 0.28s ease;
  min-width: 320px;
  max-width: 420px;
}
.booking-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.booking-popup-content {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 209, 59, 0.12);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  border-radius: 20px;
  backdrop-filter: blur(16px);
}
.booking-popup-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.booking-popup.success .booking-popup-icon {
  background: rgba(255, 212, 59, 0.16);
  color: #ffd43b;
}
.booking-popup.error .booking-popup-icon {
  background: rgba(239, 68, 68, 0.16);
  color: #ff9f9f;
}
.booking-popup-text h4 {
  margin-bottom: 4px;
}
.booking-popup-text p {
  color: var(--muted);
  font-size: 0.92rem;
}
.booking-popup-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
} /* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
} /* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #2a2200, #050505 65%);
  display: grid;
  place-items: center;
  z-index: 99999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-ring {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-top-color: #ffd43b;
  border-right-color: #ffb800;
  animation: spin 1s linear infinite;
  margin: 0 auto 14px;
}
.loader-text {
  color: #fff1a8;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.92rem;
} /* CURSOR GLOW */
.cursor-glow {
  position: fixed;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
    circle,
    rgba(255, 212, 59, 0.16),
    transparent 68%
  );
  filter: blur(10px);
  transition: transform 0.08s linear;
} /* CARD SHINE */
.glass-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.09),
    transparent 42%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.glass-card:hover::before,
.stat-card:hover::before {
  opacity: 1;
}
.glass-card,
.stat-card {
  position: relative;
  overflow: hidden;
} /* BUTTON RIPPLE BASE */
button {
  position: relative;
  overflow: hidden;
}
button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  opacity: 0;
}
button:active::after {
  width: 200px;
  height: 200px;
  opacity: 0;
  transition: 0.4s;
} /* NAV ICON */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
} /* ANIMATIONS */
@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-18px) translateX(10px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 212, 59, 0.22);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 7px rgba(255, 212, 59, 0.08);
  }
}
@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} /* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .pricing-grid,
  .progress-grid,
  .cars-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .instructor-grid,
  .premium-instructor-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-card {
    min-height: 420px;
  }
  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 18px !important;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    background: rgba(6, 6, 6, 0.96);
    border: 1px solid rgba(255, 209, 59, 0.08);
    box-shadow: var(--shadow);
  }
  .nav-links.show {
    display: flex;
  }
  .hero {
    gap: 20px;
  }
  .hero-copy {
    padding: 24px;
  }
  .hero-stats,
  .testimonial-grid,
  .progress-grid,
  .form-row-inline,
  .trust-strip,
  .slot-grid {
    grid-template-columns: 1fr;
  }
  .instructor-card,
  .premium-card {
    flex-direction: column;
  }
  .instructor-photo,
  .instructor-photo-wrap .instructor-photo {
    width: 100%;
    height: 240px;
    border-radius: 22px;
  }
  .instructor-tag {
    left: 14px;
    bottom: 14px;
  }
  .instructor-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .rating-pill {
    min-width: auto;
  }
  .booking-popup {
    left: 14px;
    right: 14px;
    min-width: auto;
    max-width: none;
    top: 14px;
  }
  .utility-bar {
    gap: 10px;
    font-size: 0.72rem;
    padding: 8px 12px;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px;
  }
  .whatsapp-text {
    display: none;
  }
}
@media (max-width: 767px) {
  .cursor-glow {
    display: none;
  }
  .hero-image-card,
  .cta-box,
  .pricing-card.highlight {
    animation: none;
  }
}
