/* =============================================
   SP DRIVING SCHOOL V2 — Global CSS
   style.css
   ============================================= */

/* ---------- RESET & ROOT ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:     #F26522;
  --orange-dk:  #D4551A;
  --orange-lt:  rgba(242,101,34,.1);
  --black:      #1A1A1B;
  --blue:       #0056b3;
  --blue-lt:    rgba(0,86,179,.08);
  --white:      #FFFFFF;
  --off-white:  #F8F9FA;
  --grey:       #6B7280;
  --grey-lt:    #9CA3AF;
  --light:      #E5E7EB;
  --green:      #16A34A;
  --font-head:  'Bebas Neue', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 8px 28px rgba(0,0,0,.11);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --trans:      all .3s cubic-bezier(.4,0,.2,1);
  --nav-h:      68px;
  --bar-h:      38px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

.orange { color: var(--orange); }
.blue   { color: var(--blue);   }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: var(--trans);
  height: var(--nav-h);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-wrap {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none; color: inherit; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font-head); font-size: 1.2rem;
  letter-spacing: .08em; color: var(--black);
}
.logo-sub {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .2em; color: var(--orange);
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: .25rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--black);
  font-size: .88rem; font-weight: 600;
  padding: .45rem .9rem; border-radius: 8px;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); background: var(--orange-lt); }

.nav-right { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-cta {
  display: flex; align-items: center; gap: .4rem;
  background: var(--orange); color: white;
  text-decoration: none; font-weight: 700;
  font-size: .85rem;
  padding: .55rem 1.2rem; border-radius: 50px;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(242,101,34,.4); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .4rem;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: white; z-index: 850;
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--light);
  flex-direction: column; gap: .4rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none; color: var(--black);
  font-weight: 600; font-size: 1rem;
  padding: .7rem 1rem; border-radius: 10px;
  transition: var(--trans);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--orange); background: var(--orange-lt); }
.mobile-nav .m-cta {
  background: var(--orange); color: white !important;
  text-align: center; margin-top: .5rem;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  z-index: 800; background: var(--blue);
  color: white; font-size: .74rem; font-weight: 600;
  padding: .4rem 1rem; text-align: center;
  height: var(--bar-h);
}
.trust-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center;
  gap: .6rem; flex-wrap: wrap;
  justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: .3rem; }
.trust-sep { opacity: .35; }

/* ---------- PAGE HERO BANNER (inner pages) ---------- */
.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + var(--bar-h) + 3rem) 1.5rem 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(242,101,34,.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-size: .7rem; font-weight: 800;
  letter-spacing: .3em; color: var(--orange);
  text-transform: uppercase; margin-bottom: .6rem;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white; letter-spacing: .02em; line-height: 1;
  margin-bottom: .75rem;
}
.page-hero p {
  color: rgba(255,255,255,.6); font-size: 1rem;
  max-width: 560px; margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  justify-content: center; margin-top: 1.2rem;
}
.breadcrumb a, .breadcrumb span {
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.4); text-decoration: none;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }
.breadcrumb .current { color: var(--orange); }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--orange); color: white;
  text-decoration: none; font-weight: 700; font-size: .95rem;
  padding: .85rem 2rem; border-radius: 50px;
  transition: var(--trans);
  box-shadow: 0 6px 24px rgba(242,101,34,.35);
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(242,101,34,.5); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; color: var(--black);
  text-decoration: none; font-weight: 700; font-size: .95rem;
  padding: .85rem 2rem; border-radius: 50px;
  border: 2px solid var(--black); transition: var(--trans);
}
.btn-secondary:hover { background: var(--black); color: white; transform: translateY(-2px); }

.btn-outline-orange {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; color: var(--orange);
  text-decoration: none; font-weight: 700; font-size: .9rem;
  padding: .75rem 1.75rem; border-radius: 50px;
  border: 2px solid var(--orange); transition: var(--trans);
}
.btn-outline-orange:hover { background: var(--orange); color: white; transform: translateY(-2px); }

/* ---------- SECTION HEADERS ---------- */
.section-label {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .28em; color: var(--orange);
  text-transform: uppercase; margin-bottom: .5rem;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.05; letter-spacing: .01em;
  margin-bottom: .6rem;
}
.section-sub {
  font-size: .97rem; color: var(--grey);
  max-width: 540px; margin-bottom: 2.5rem;
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--black);
  padding: 3rem 1.5rem;
}
.stats-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.stat-block {
  text-align: center; padding: 1rem 2.5rem;
  flex: 1; min-width: 140px;
}
.stat-big {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--orange); letter-spacing: .02em;
}
.stat-desc {
  font-size: .75rem; font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .12em; margin-top: .2rem;
}
.stat-divider { width: 1px; height: 55px; background: rgba(255,255,255,.1); }

/* ---------- CARD STYLES ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--light);
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ---------- CHIP ---------- */
.chip {
  background: var(--off-white);
  border: 1px solid var(--light);
  font-size: .75rem; font-weight: 600;
  padding: .28rem .8rem; border-radius: 50px; color: #374151;
}
.chip-orange {
  background: var(--orange-lt); border-color: rgba(242,101,34,.25);
  color: var(--orange-dk);
}
.chip-blue {
  background: var(--blue-lt); border-color: rgba(0,86,179,.2);
  color: var(--blue);
}
.chip-green {
  background: rgba(22,163,74,.08); border-color: rgba(22,163,74,.25);
  color: var(--green);
}

/* ---------- REVIEW CARD ---------- */
.review-card {
  background: white; border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--light); transition: var(--trans);
  position: relative;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card.featured { border-color: var(--orange); border-width: 2px; }
.review-header { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  color: white; font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .93rem; }
.review-stars { color: #F59E0B; font-size: .8rem; letter-spacing: .08em; }
.google-badge {
  margin-left: auto; width: 26px; height: 26px; border-radius: 50%;
  background: #4285F4; color: white; font-weight: 800; font-size: .75rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.review-text { font-size: .86rem; color: #374151; line-height: 1.7; margin-bottom: .6rem; }
.review-text strong { color: var(--orange); }
.review-date { font-size: .7rem; color: var(--grey-lt); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--light);
  cursor: pointer; user-select: none;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; font-weight: 600; font-size: .95rem;
  transition: color .2s;
}
.faq-item:hover .faq-q { color: var(--orange); }
.faq-arrow {
  font-size: 1.4rem; font-weight: 300;
  color: var(--orange); transition: transform .3s; flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  font-size: .88rem; color: var(--grey); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1rem; }

/* ---------- FOOTER ---------- */
.footer {
  background: #0d0d0e;
  padding: 3.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 1.5rem;
}
.footer-brand-col .footer-name {
  font-family: var(--font-head); font-size: 1.15rem;
  color: white; letter-spacing: .1em;
}
.footer-brand-col .footer-tagline {
  font-size: .75rem; color: var(--orange);
  font-weight: 600; font-style: italic; margin-top: .1rem;
}
.footer-brand-col p {
  color: rgba(255,255,255,.4); font-size: .82rem;
  line-height: 1.7; margin-top: 1rem; max-width: 260px;
}
.footer-cert {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(242,101,34,.12); border: 1px solid rgba(242,101,34,.25);
  color: var(--orange); font-size: .7rem; font-weight: 700;
  padding: .35rem .75rem; border-radius: 8px; margin-top: 1rem;
  letter-spacing: .04em;
}
.footer-col h4 {
  color: white; font-size: .78rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,.45);
  text-decoration: none; font-size: .84rem;
  padding: .22rem 0; transition: color .2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex; gap: .7rem; margin-bottom: .8rem;
}
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.footer-contact-item .label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: .15rem;
}
.footer-contact-item .val {
  font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.5;
}
.footer-contact-item a { color: var(--orange) !important; display: inline; }
.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .73rem; color: rgba(255,255,255,.25); }
.footer-bottom-links { display: flex; gap: 1.2rem; }
.footer-bottom-links a {
  font-size: .73rem; color: rgba(255,255,255,.25);
  text-decoration: none; transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--orange); }

/* ---------- FIXED MOBILE CTA BAR ---------- */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 950; display: none;
  background: white; border-top: 1px solid var(--light);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.mobile-cta-call, .mobile-cta-whatsapp {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: .5rem; padding: 1rem .5rem;
  font-weight: 700; font-size: .88rem; text-decoration: none;
  transition: var(--trans);
}
.mobile-cta-call { color: var(--black); border-right: 1px solid var(--light); }
.mobile-cta-call:hover { background: var(--off-white); }
.mobile-cta-whatsapp { background: #25D366; color: white; }
.mobile-cta-whatsapp:hover { background: #1ebe5a; }

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 940; width: 58px; height: 58px;
  border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.12); animation: none; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  50%      { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

/* ============================================================
   HOME PAGE (index.html)
   ============================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + var(--bar-h) + 2rem) 1.5rem 4rem;
  background: var(--white); position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 70% 45%, rgba(242,101,34,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 85%, rgba(0,86,179,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--orange-lt); color: var(--orange-dk);
  font-size: .78rem; font-weight: 800;
  padding: .38rem 1rem; border-radius: 50px;
  border: 1px solid rgba(242,101,34,.25);
  margin-bottom: 1.2rem; letter-spacing: .03em;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: .97; letter-spacing: .01em;
  color: var(--black); margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: 1.02rem; color: var(--grey);
  line-height: 1.7; margin-bottom: 1.4rem; max-width: 460px;
}
.hero-sub strong { color: var(--black); }

/* Unlimited KM callout */
.unlimited-callout {
  display: flex; align-items: center; gap: .75rem;
  background: linear-gradient(135deg, var(--black) 0%, #2d2d2e 100%);
  border-radius: var(--radius-sm); padding: .9rem 1.2rem;
  margin-bottom: 1.5rem; border-left: 4px solid var(--orange);
}
.unlimited-icon { font-size: 1.5rem; flex-shrink: 0; }
.unlimited-text .big {
  font-family: var(--font-head);
  font-size: 1.1rem; color: var(--orange); letter-spacing: .04em;
}
.unlimited-text .small { font-size: .78rem; color: rgba(255,255,255,.55); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.hero-chips { display: flex; gap: .5rem; flex-wrap: wrap; }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-card-stack { position: relative; }
.hero-main-visual {
  border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
  background: #F0F4FF;
}
.road-svg { width: 100%; height: auto; display: block; }
.hero-stat-card {
  position: absolute; background: white;
  border-radius: 14px; box-shadow: var(--shadow-md);
  padding: .85rem 1.1rem; text-align: center;
  min-width: 90px; border: 2px solid var(--orange); z-index: 2;
}
.hsc-num { font-family: var(--font-head); font-size: 1.6rem; color: var(--orange); line-height: 1; }
.hsc-label { font-size: .6rem; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: .1em; }
.card-float-1 { top: -16px; left: -16px; animation: floatCard 4s ease-in-out infinite; }
.card-float-2 { bottom: -16px; right: -16px; animation: floatCard 4s ease-in-out infinite .6s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }

.wave-divider { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.wave-divider svg { width: 100%; }

/* Certifications */
.certifications {
  padding: 5rem 1.5rem; background: var(--off-white);
}
.cert-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 700px) {
  .cert-grid { grid-template-columns: 1fr; }
}
.cert-card {
  background: white; border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--light);
  box-shadow: var(--shadow-sm); transition: var(--trans);
  position: relative; overflow: hidden;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cert-card.featured-cert {
  background: var(--black); border-color: var(--orange);
  border-width: 2px;
}
.cert-card.featured-cert h3 { color: white; }
.cert-card.featured-cert p { color: rgba(255,255,255,.55); }
.cert-ribbon {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--orange); color: white;
  font-size: .6rem; font-weight: 800; letter-spacing: .1em;
  padding: .2rem .6rem; border-radius: 50px; text-transform: uppercase;
}
.cert-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.cert-card h3 {
  font-family: var(--font-head); font-size: 1.15rem;
  letter-spacing: .02em; margin-bottom: .5rem;
}
.cert-card p { font-size: .86rem; color: var(--grey); line-height: 1.65; }

/* Why Us (Problem Solver) */
.why-us { padding: 5rem 1.5rem; background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.why-card {
  background: var(--off-white); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--light);
  transition: var(--trans);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: white; }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 {
  font-family: var(--font-head); font-size: 1.2rem;
  letter-spacing: .02em; margin-bottom: .5rem;
}
.why-card p { font-size: .88rem; color: var(--grey); line-height: 1.65; }
.why-card strong { color: var(--black); }

/* Services Overview */
.services-overview { padding: 5rem 1.5rem; background: var(--off-white); }
.services-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.25rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.75rem; border: 1px solid var(--light);
  position: relative; transition: var(--trans);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-main {
  background: var(--black); color: white; border-color: var(--black);
}
.service-main p, .service-main .inst-tag { color: rgba(255,255,255,.55); }
.service-main .service-features li { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.08); }
.service-tag {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--orange); color: white;
  font-size: .62rem; font-weight: 800; padding: .22rem .65rem;
  border-radius: 50px; letter-spacing: .08em; text-transform: uppercase;
}
.service-icon-wrap { margin-bottom: 1.1rem; }
.service-card h3 {
  font-family: var(--font-head); font-size: 1.5rem;
  letter-spacing: .02em; margin-bottom: .5rem;
}
.service-card p { font-size: .88rem; color: var(--grey); line-height: 1.6; margin-bottom: .8rem; }
.service-features { list-style: none; margin-bottom: 1rem; }
.service-features li {
  font-size: .83rem; color: var(--grey); padding: .22rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.service-features li:last-child { border: none; }
.service-instructor {
  display: flex; align-items: center; gap: .7rem;
  margin-top: 1.1rem; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.inst-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; color: white; flex-shrink: 0;
}
.inst-orange { background: var(--orange); }
.inst-blue { background: var(--blue); }
.inst-name { font-weight: 700; font-size: .88rem; }
.inst-tag { font-size: .7rem; color: var(--grey); }
.btn-service {
  display: inline-flex; align-items: center;
  background: var(--orange); color: white; text-decoration: none;
  font-weight: 700; font-size: .86rem; padding: .62rem 1.3rem;
  border-radius: 50px; transition: var(--trans); margin-top: 1.1rem;
  box-shadow: 0 4px 14px rgba(242,101,34,.3);
}
.btn-service:hover { background: var(--orange-dk); transform: translateY(-2px); }
.btn-service-outline {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--black); text-decoration: none;
  font-weight: 700; font-size: .86rem; padding: .62rem 1.3rem;
  border-radius: 50px; border: 2px solid var(--light);
  transition: var(--trans); margin-top: 1.1rem;
}
.btn-service-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* Reviews */
.reviews-section { padding: 5rem 1.5rem; background: white; }
.review-wall {
  display: grid; grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1.25rem; margin-bottom: 2rem;
}
.review-cta-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--off-white); border-radius: var(--radius);
  padding: 1.5rem 2rem; flex-wrap: wrap; gap: 1rem;
}
.review-summary { display: flex; align-items: center; gap: 1rem; }
.summary-stars { color: #F59E0B; font-size: 1.2rem; }
.summary-text { font-size: .9rem; color: var(--grey); }

/* Home CTA band */
.cta-band {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--orange) 0%, #e0541a 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white; letter-spacing: .02em; margin-bottom: .75rem;
  position: relative; z-index: 1;
}
.cta-band p {
  color: rgba(255,255,255,.8); font-size: 1.05rem;
  margin-bottom: 2rem; position: relative; z-index: 1;
}
.cta-band .cta-buttons {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.btn-white {
  display: inline-flex; align-items: center; gap: .4rem;
  background: white; color: var(--orange-dk);
  text-decoration: none; font-weight: 800; font-size: .95rem;
  padding: .85rem 2rem; border-radius: 50px; transition: var(--trans);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.btn-white-outline {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; color: white;
  text-decoration: none; font-weight: 700; font-size: .95rem;
  padding: .85rem 2rem; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6); transition: var(--trans);
}
.btn-white-outline:hover { background: rgba(255,255,255,.1); border-color: white; }

/* ============================================================
   COURSES PAGE (courses.html)
   ============================================================ */
.courses-page { padding: 5rem 1.5rem; }
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-bottom: 4rem;
}
.program-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--light); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--trans);
  display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.program-card.featured-prog { border-color: var(--orange); border-width: 2px; }
.program-header {
  padding: 1.5rem 1.75rem;
  background: var(--off-white); border-bottom: 1px solid var(--light);
  position: relative;
}
.program-card.featured-prog .program-header { background: var(--black); }
.program-card.featured-prog .program-header h3 { color: white; }
.program-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--orange); color: white;
  font-size: .62rem; font-weight: 800; padding: .2rem .6rem;
  border-radius: 50px; letter-spacing: .08em; text-transform: uppercase;
}
.program-icon { font-size: 2rem; margin-bottom: .75rem; }
.program-header h3 {
  font-family: var(--font-head); font-size: 1.4rem;
  letter-spacing: .02em; margin-bottom: .3rem;
}
.program-header p { font-size: .83rem; color: var(--grey); }
.program-card.featured-prog .program-header p { color: rgba(255,255,255,.5); }
.program-body { padding: 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.program-features { list-style: none; margin-bottom: 1.25rem; flex: 1; }
.program-features li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .87rem; color: var(--grey); padding: .35rem 0;
  border-bottom: 1px solid var(--light);
}
.program-features li:last-child { border: none; }
.program-features li .fi { color: var(--orange); font-style: normal; flex-shrink: 0; margin-top: .1rem; }
.program-chips-row {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  margin-top: .75rem;
}
.program-chips-row .btn-primary {
  margin-top: 0 !important; white-space: nowrap; flex-shrink: 0;
  font-size: .82rem !important; padding: .55rem 1.1rem;
}
.program-chips { display: flex; gap: .4rem; flex-wrap: wrap; }

/* Special Sessions */
.special-sessions { padding: 5rem 1.5rem; background: var(--black); }
.special-sessions .section-title { color: white; }
.special-sessions .section-sub { color: rgba(255,255,255,.5); }
.special-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) {
  .special-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .special-grid { grid-template-columns: 1fr; }
}
.special-card {
  background: rgba(255,255,255,.05); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid rgba(255,255,255,.08);
  transition: var(--trans);
}
.special-card:hover { background: rgba(255,255,255,.08); border-color: rgba(242,101,34,.4); transform: translateY(-4px); }
.special-card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.special-card h3 {
  font-family: var(--font-head); font-size: 1.3rem;
  color: white; letter-spacing: .02em; margin-bottom: .5rem;
}
.special-card p { font-size: .86rem; color: rgba(255,255,255,.5); line-height: 1.65; }
.special-highlight {
  display: inline-block; background: var(--orange-lt);
  border: 1px solid rgba(242,101,34,.3); color: var(--orange);
  font-size: .72rem; font-weight: 700; padding: .22rem .65rem;
  border-radius: 50px; margin-top: .75rem;
}

/* Ghat Road */
.ghat-section {
  padding: 5rem 1.5rem; background: var(--off-white);
}
.ghat-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.ghat-visual {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #1a2a1a;
  padding: 2.5rem; display: flex; align-items: center; justify-content: center;
}
.ghat-svg { width: 100%; max-width: 380px; }
.ghat-content .section-label { margin-bottom: .4rem; }
.ghat-points { list-style: none; margin: 1.5rem 0; }
.ghat-points li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .6rem 0; border-bottom: 1px solid var(--light);
  font-size: .9rem; color: var(--grey);
}
.ghat-points li:last-child { border: none; }
.ghat-points li .gi { font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-page { padding: 5rem 1.5rem; }
.gallery-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem; border-bottom: 2px solid var(--light);
  padding-bottom: 0;
}
.gallery-tab {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .92rem; font-weight: 700;
  color: var(--grey); padding: .7rem 1.4rem;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: var(--trans); border-radius: 8px 8px 0 0;
}
.gallery-tab:hover { color: var(--orange); }
.gallery-tab.active { color: var(--orange); border-bottom-color: var(--orange); background: var(--orange-lt); }
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4/3; position: relative; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: var(--trans);
  background: var(--off-white); border: 1px solid var(--light);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item .gallery-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  padding: 1rem;
}
.gallery-item .gp-icon { font-size: 2.5rem; }
.gallery-item .gp-text {
  font-size: .78rem; font-weight: 700;
  color: var(--grey); text-align: center;
  letter-spacing: .05em; text-transform: uppercase;
}
.gallery-item .gp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gp-overlay { opacity: 1; }
.gp-overlay span { color: white; font-size: .8rem; font-weight: 600; }
.gallery-notice {
  background: var(--blue-lt); border: 1px solid rgba(0,86,179,.2);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  margin-top: 1.5rem; font-size: .84rem; color: var(--blue); font-weight: 500;
}

/* Gallery color backgrounds */
.gc-theory-2w  { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.gc-theory-4w  { background: linear-gradient(135deg, #FFF7ED, #FED7AA); }
.gc-prac-2w    { background: linear-gradient(135deg, #F0FDF4, #BBF7D0); }
.gc-prac-4w    { background: linear-gradient(135deg, #FFF1F2, #FFE4E6); }

/* ============================================================
   ABOUT PAGE (about.html)
   ============================================================ */
.about-page { padding: 5rem 1.5rem; }
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center; margin-bottom: 5rem;
}
.about-visual {
  position: relative;
}
.about-visual-card {
  background: var(--black); border-radius: var(--radius);
  padding: 3rem 2rem; text-align: center;
  border: 2px solid rgba(242,101,34,.3);
  box-shadow: var(--shadow-lg);
}
.experience-big {
  font-family: var(--font-head); font-size: 7rem;
  color: var(--orange); line-height: 1; display: block;
}
.experience-label { color: white; font-size: 1rem; font-weight: 600; letter-spacing: .1em; }
.about-badges {
  display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem;
}
.about-badge-item {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.05); border-radius: 10px;
  padding: .7rem 1rem; border: 1px solid rgba(255,255,255,.08);
}
.abi-icon { font-size: 1.2rem; flex-shrink: 0; }
.abi-text { font-size: .82rem; color: rgba(255,255,255,.6); }
.abi-text strong { color: white; display: block; font-size: .9rem; }
.about-float-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--orange); color: white;
  border-radius: var(--radius-sm); padding: .8rem 1rem;
  box-shadow: var(--shadow-md); font-size: .78rem; font-weight: 700;
  text-align: center; max-width: 130px;
}
.about-float-badge span { font-size: 1.6rem; display: block; font-family: var(--font-head); }

.about-content .section-title { margin-bottom: 1rem; }
.about-content p { font-size: .95rem; color: var(--grey); line-height: 1.75; margin-bottom: 1rem; }
.about-highlights { list-style: none; margin: 1.25rem 0; }
.about-highlights li {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; font-weight: 600; color: var(--black);
  padding: .5rem 0; border-bottom: 1px solid var(--light);
}
.about-highlights li:last-child { border: none; }
.about-highlights li span { color: var(--orange); font-size: 1.1rem; }

/* Instructors */
.instructors-section { padding: 5rem 1.5rem; background: var(--off-white); }
.instructors-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.instructor-card {
  background: white; border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--light);
  box-shadow: var(--shadow-sm); transition: var(--trans);
  text-align: center;
}
.instructor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.instructor-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2.2rem; color: white;
  border: 4px solid var(--orange);
}
.instructor-card h3 { font-family: var(--font-head); font-size: 1.4rem; letter-spacing: .02em; margin-bottom: .2rem; }
.instructor-card .role { font-size: .8rem; font-weight: 700; color: var(--orange); letter-spacing: .1em; text-transform: uppercase; margin-bottom: .75rem; }
.instructor-card p { font-size: .87rem; color: var(--grey); line-height: 1.65; }
.instructor-chips { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center; margin-top: 1rem; }

/* Method section */
.method-section { padding: 5rem 1.5rem; background: white; }
.method-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.method-card {
  background: var(--off-white); border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--light);
  text-align: center; transition: var(--trans);
}
.method-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: white; }
.method-letter {
  font-family: var(--font-head); font-size: 3.5rem;
  color: var(--orange); line-height: 1; margin-bottom: .5rem;
}
.method-card h3 {
  font-family: var(--font-head); font-size: 1.1rem;
  letter-spacing: .04em; margin-bottom: .5rem;
}
.method-card p { font-size: .84rem; color: var(--grey); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE (contact.html)
   ============================================================ */
.contact-page { padding: 5rem 1.5rem; background: var(--black); }
.contact-page .section-label { color: rgba(255,255,255,.4); }
.contact-page .section-title { color: white; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 3rem; align-items: start; margin-top: 2.5rem;
}
.contact-info-col { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-block {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,.04); border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem; border: 1px solid rgba(255,255,255,.07);
  transition: var(--trans);
}
.contact-block:hover { background: rgba(255,255,255,.07); border-color: rgba(242,101,34,.25); }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.contact-label {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: .25rem;
}
.contact-val { color: white; font-size: .92rem; line-height: 1.6; }
.contact-link { color: var(--orange) !important; text-decoration: none; font-weight: 600; }
.contact-link:hover { text-decoration: underline; }

/* Contact form */
.contact-form-wrap {
  background: white; border-radius: var(--radius);
  padding: 2.25rem; box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 {
  font-family: var(--font-head); font-size: 1.6rem;
  letter-spacing: .02em; margin-bottom: .4rem;
}
.contact-form-wrap p { font-size: .87rem; color: var(--grey); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: .78rem; font-weight: 700;
  color: var(--grey); margin-bottom: .4rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--light); font-family: var(--font-body);
  font-size: .93rem; color: var(--black);
  background: var(--off-white); transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); background: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; margin-top: 3rem; }
.map-wrap iframe { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-bento { grid-template-columns: 1fr 1fr; }
  .services-bento .service-main { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }
  .hero-actions { flex-wrap: wrap; }
  .ghat-inner { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .review-wall { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .whatsapp-float { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 68px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .trust-bar { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 2rem); }
  .page-hero { padding-top: calc(var(--nav-h) + 2rem); }
  .hero-headline { font-size: 2.8rem; }
  .services-bento { grid-template-columns: 1fr; }
  .review-wall { grid-template-columns: 1fr; }
  .review-cta-bar { flex-direction: column; text-align: center; }
  .review-summary { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: .5rem; }
  .cta-band .cta-buttons { flex-direction: column; align-items: center; }
  .about-float-badge { display: none; }
}

@media (min-width: 901px) {
  .trust-bar { display: flex; justify-content: center; }
  .hero { padding-top: calc(var(--nav-h) + var(--bar-h) + 2.5rem); }
}

/* ══ SOCIAL BUTTONS (Footer) ══════════════════════════════ */
.footer-social {
  display: flex; gap: .6rem; margin-top: 1.1rem; flex-wrap: wrap;
}
.social-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem 1rem; border-radius: 50px;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  text-decoration: none; transition: all .25s; border: 1.5px solid transparent;
}
.social-ig {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: white;
}
.social-ig:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(220,39,67,.4); }
.social-yt { background: #FF0000; color: white; }
.social-yt:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,0,0,.4); }

/* ══ CUSTOMER REVIEW VIDEOS SECTION ══════════════════════ */
.review-videos-section {
  padding: 5rem 1.5rem;
  background: var(--black);
}
.review-videos-section .section-label { color: var(--orange); }
.review-videos-section .section-title { color: white; }
.review-videos-section .section-sub { color: rgba(255,255,255,.45); }

.rv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.rv-card {
  background: #1c1c1e;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  transition: var(--trans);
}
.rv-card:hover { transform: translateY(-4px); border-color: rgba(242,101,34,.3); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.rv-player-wrap {
  position: relative; width: 100%; background: #000;
}
/* Custom video player */
.rv-video {
  width: 100%; display: block; aspect-ratio: 16/9; background: #000;
}
.rv-iframe {
  width: 100%; aspect-ratio: 16/9; border: none; display: block;
}
/* Overlay for non-started state */
.rv-thumb-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  background: rgba(0,0,0,.55); cursor: pointer;
  transition: opacity .3s;
}
.rv-thumb-overlay .play-circle {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 6px 24px rgba(242,101,34,.5);
  transition: transform .2s;
}
.rv-thumb-overlay:hover .play-circle { transform: scale(1.1); }
.rv-thumb-overlay .play-label {
  color: white; font-weight: 700; font-size: .8rem;
  background: rgba(0,0,0,.45); padding: .25rem .75rem; border-radius: 50px;
}
/* Custom controls bar */
.rv-controls {
  display: flex; align-items: center; gap: .6rem;
  background: #111; padding: .6rem .85rem;
}
.rv-ctrl-btn {
  background: none; border: none; color: rgba(255,255,255,.75);
  cursor: pointer; padding: .2rem .3rem; font-size: 1rem;
  border-radius: 5px; transition: color .15s, background .15s;
  display: flex; align-items: center;
}
.rv-ctrl-btn:hover { color: var(--orange); background: rgba(255,255,255,.06); }
.rv-progress {
  flex: 1; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,.15); cursor: pointer;
  position: relative; overflow: hidden;
}
.rv-progress-fill {
  height: 100%; background: var(--orange); border-radius: 2px;
  width: 0%; transition: width .1s linear; pointer-events: none;
}
.rv-time { font-size: .7rem; color: rgba(255,255,255,.4); white-space: nowrap; min-width: 70px; text-align: right; }
.rv-speed {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.65); font-size: .68rem; font-weight: 700;
  border-radius: 5px; padding: .18rem .45rem; cursor: pointer;
  transition: all .15s;
}
.rv-speed:hover { background: var(--orange); border-color: var(--orange); color: white; }
/* Card info */
.rv-info { padding: 1rem 1.1rem 1.2rem; }
.rv-name { font-weight: 700; font-size: .92rem; color: white; margin-bottom: .15rem; }
.rv-stars { color: #F59E0B; font-size: .8rem; margin-bottom: .4rem; }
.rv-caption { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.55; }
/* Empty state */
.rv-empty {
  text-align: center; padding: 4rem 2rem;
  color: rgba(255,255,255,.3); grid-column: 1/-1;
}
.rv-empty .ei { font-size: 3rem; margin-bottom: 1rem; }

@media (max-width: 640px) {
  .rv-grid { grid-template-columns: 1fr; }
}
