/* ============================================================
   BYD LIBRARY – Premium Stylesheet
   ============================================================ */

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

:root {
  --navy:    #0A2540;
  --navy2:   #0d2d4d;
  --gold:    #D4AF37;
  --gold2:   #f0cc5a;
  --gold3:   #b8971f;
  --white:   #ffffff;
  --off:     #f8f9fc;
  --text:    #1a2e42;
  --muted:   #64748b;
  --border:  #e2e8f0;
  --shadow:  0 4px 24px rgba(10,37,64,0.10);
  --shadow2: 0 8px 40px rgba(10,37,64,0.16);
  --radius:  14px;
  --font:    'Poppins', 'Inter', sans-serif;
  --trans:   all 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- UTILITY ---- */
.gold       { color: var(--gold); }
.gold-dark  { color: var(--gold3); }
.req        { color: #e53e3e; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold3);
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.30);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 16px;
  animation: pulseLogo 1.4s ease-in-out infinite;
}
@keyframes pulseLogo { 0%,100%{opacity:1} 50%{opacity:0.5} }

.preloader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px; overflow: hidden; margin: 0 auto 14px;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 4px;
  animation: loadBar 1.8s ease-in-out forwards;
}
@keyframes loadBar { from{width:0} to{width:100%} }

.preloader-inner p { color: rgba(255,255,255,0.5); font-size: 0.85rem; letter-spacing: 2px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: var(--trans);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(10,37,64,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 32px; height: 74px;
}

.nav-logo {
  display: flex; align-items: baseline; gap: 4px;
  font-weight: 800; font-size: 1.45rem; flex-shrink: 0;
}
.logo-byd  { color: var(--gold); letter-spacing: 2px; }
.logo-text { color: #fff; font-weight: 600; font-size: 1.1rem; }

.nav-links {
  display: flex; gap: 6px; margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: var(--trans);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: var(--trans);
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }

/* Live Classes nav link — red pulsing dot */
.nav-link-live {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  color: #fff !important;
}
.nav-link-live i {
  font-size: 0.55rem;
  color: #ef4444;
  animation: navLivePulse 1.4s infinite;
}
@keyframes navLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.3); }
}
.nav-link-live::after { display: none; }
.nav-link-live:hover { background: rgba(239,68,68,0.15); }

.nav-cta { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

.btn-book {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.85rem; font-weight: 700;
  padding: 10px 22px; border-radius: 50px;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-book:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.45); }

.btn-whatsapp {
  background: #25D366; color: #fff;
  font-size: 0.85rem; font-weight: 600;
  padding: 10px 18px; border-radius: 50px;
  transition: var(--trans); display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: var(--trans);
}
.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; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg,
    rgba(10,37,64,0.85) 0%,
    rgba(10,37,64,0.60) 50%,
    rgba(10,20,40,0.80) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900; line-height: 1;
  color: #fff; margin-bottom: 12px;
  letter-spacing: -1px;
}
.title-byd  { color: var(--gold); display: block; }
.title-lib  { color: #fff; font-weight: 300; display: block; }

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.65); margin-bottom: 40px;
  font-weight: 300; line-height: 1.8;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero stats bar */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 22px 48px;
  margin-top: 56px;
  gap: 0;
}

.stat-card { text-align: center; padding: 0 40px; }
.stat-num {
  font-size: 2.2rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.stat-plus { font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:0.4;transform:scaleY(0.5)} }

/* ============================================================
   BUTTONS (global)
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-size: 0.92rem; font-weight: 700;
  padding: 14px 32px; border-radius: 50px;
  transition: var(--trans); box-shadow: 0 4px 20px rgba(212,175,55,0.35);
  border: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.55);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: #fff;
  font-size: 0.92rem; font-weight: 600;
  padding: 13px 32px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--trans);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 100px 0; background: var(--white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative; border-radius: 20px; overflow: visible;
}
.about-img-wrap img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow2);
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy);
  color: #fff; text-align: center;
  padding: 20px 24px; border-radius: 16px;
  box-shadow: var(--shadow2);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.about-img-badge i { font-size: 1.6rem; color: var(--gold); }
.about-img-badge span { font-size: 0.8rem; font-weight: 600; line-height: 1.4; }

.about-content { padding-left: 20px; }

.about-text { font-size: 0.98rem; color: var(--muted); margin-bottom: 18px; line-height: 1.9; }

.about-highlights { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.highlight-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem; color: var(--text); font-weight: 500;
}
.highlight-item i { color: var(--gold3); font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   FACILITIES
   ============================================================ */
.facilities { padding: 100px 0; background: var(--off); }

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.facility-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px 32px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--trans);
  animation-delay: var(--delay, 0s);
  position: relative; overflow: hidden;
}
.facility-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0), rgba(10,37,64,0.03));
  opacity: 0; transition: var(--trans);
}
.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(10,37,64,0.14);
  border-color: rgba(212,175,55,0.4);
}
.facility-card:hover::before { opacity: 1; }

.facility-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem; color: var(--gold);
  transition: var(--trans);
  box-shadow: 0 6px 20px rgba(10,37,64,0.2);
}
.facility-card:hover .facility-icon {
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  color: var(--navy);
  transform: rotate(-6deg) scale(1.08);
}

.facility-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.facility-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   PLANS
   ============================================================ */
.plans { padding: 100px 0; position: relative; overflow: hidden; }

.plans-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--navy) 0%, #0d3260 100%);
  z-index: 0;
}
.plans .container { position: relative; z-index: 1; }
.plans .section-header .section-title { color: #fff; }
.plans .section-header .section-sub { color: rgba(255,255,255,0.55); }

.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  align-items: start;
}

/* Price display inside plan cards */
.plan-price {
  margin: 16px 0 24px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.price-main {
  font-size: 2rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.price-locker {
  font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 400;
}
.price-locker em { font-style: normal; color: rgba(255,255,255,0.4); }

/* 24hr card — subtle gold glow border */
.plan-card.plan-24hr {
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.05);
}

.plan-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: var(--trans);
  position: relative; overflow: hidden;
}
.plan-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.plan-card.plan-popular {
  background: rgba(212,175,55,0.08);
  border: 2px solid var(--gold);
  transform: scale(1.04);
}
.plan-card.plan-popular:hover { transform: scale(1.04) translateY(-10px); }

.plan-card.plan-premium {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
}

.popular-tag {
  position: absolute; top: -1px; right: 24px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 0 0 10px 10px;
}

.plan-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem; color: var(--gold);
  transition: var(--trans);
}
.plan-card:hover .plan-icon-wrap { background: rgba(212,175,55,0.2); transform: scale(1.1); }

.plan-name { font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.plan-time { font-size: 0.88rem; color: var(--gold); font-weight: 500; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 7px; }

.plan-features { margin-bottom: 32px; display: flex; flex-direction: column; gap: 11px; text-align: left; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.plan-features li i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }

.btn-plan {
  display: block; width: 100%;
  padding: 13px 20px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 700;
  color: #fff; background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  transition: var(--trans);
}
.btn-plan:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

.btn-plan-gold {
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  color: var(--navy); border: none;
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}
.btn-plan-gold:hover { box-shadow: 0 8px 28px rgba(212,175,55,0.6); transform: translateY(-2px); color: var(--navy); }

.plans-note { text-align: center; color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-top: 36px; }
.plans-note a { color: var(--gold); font-weight: 600; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { padding: 100px 0; background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative; overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #0a2540;
}
.gallery-item img,
.gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.08); }

/* Play badge for video items */
.gallery-play-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.95);
  color: #0A2540;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  pointer-events: none;
  transition: var(--trans);
}
.gallery-item:hover .gallery-play-badge {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--gold);
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.8), transparent);
  opacity: 0; transition: var(--trans);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--gold); font-size: 1.4rem; }

/* Lightbox video */
.lightbox-video {
  max-width: 88vw; max-height: 88vh;
  border-radius: 8px;
  background: #000;
  outline: none;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(5,12,25,0.95);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-img-wrap {
  max-width: 88vw; max-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%; max-height: 88vh;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: contain;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 100px 0; background: var(--off); }

.testimonial-slider { position: relative; overflow: hidden; }

.testimonial-track {
  display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  min-width: 33.333%;
  padding: 0 14px;
}
.testimonial-card > div, .testimonial-card > p, .testimonial-card > .testi-author {
  /* inner styling below */
}

/* card inner */
.testimonial-card {
  flex-shrink: 0;
}

/* Wrap inner content */
.testi-inner {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--trans);
  height: 100%;
}

/* Re-structure testimonial cards */
.testimonial-card {
  min-width: 33.333%; padding: 0 12px; flex-shrink: 0;
}

.testi-stars { color: #f59e0b; font-size: 0.88rem; margin-bottom: 16px; display: flex; gap: 3px; }
.testi-text  { font-size: 0.92rem; color: var(--muted); line-height: 1.85; margin-bottom: 24px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: var(--gold); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name  { display: block; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.testi-exam  { display: block; font-size: 0.78rem; color: var(--gold3); font-weight: 500; }

/* Make each card have white bg */
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  min-width: 340px;
  flex-shrink: 0;
  margin: 0 12px;
  transition: var(--trans);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }

.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  color: var(--navy); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.slider-btn:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: var(--trans);
}
.dot.active { background: var(--navy); transform: scale(1.3); }

/* ---- Google Reviews Widget ---- */
.google-reviews-wrap {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
}

.gr-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.gr-glogo { flex-shrink: 0; }

.gr-title-wrap { flex: 1; }

.gr-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.gr-overall { display: flex; align-items: center; gap: 8px; }

.gr-rating-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.gr-stars-row {
  color: #f59e0b;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.gr-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--trans);
  white-space: nowrap;
}
.gr-view-btn:hover { background: var(--gold); color: var(--navy); }

.gr-map-wrap { width: 100%; line-height: 0; }
.gr-map-wrap iframe { display: block; }

.gr-cta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(90deg, var(--navy), var(--navy2));
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--trans);
  letter-spacing: 0.3px;
}
.gr-cta-bar:hover { background: linear-gradient(90deg, var(--gold3), var(--gold)); color: var(--navy); }
.gr-cta-bar i { font-size: 0.85rem; }

@media (max-width: 600px) {
  .gr-header { padding: 18px 20px; gap: 12px; }
  .gr-view-btn { width: 100%; justify-content: center; }
  .gr-map-wrap iframe { height: 240px; }
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking { padding: 100px 0; background: var(--white); }

.booking-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: start;
}

.booking-info { padding-top: 12px; }
.booking-info p { color: var(--muted); font-size: 0.96rem; margin-bottom: 36px; line-height: 1.8; }

.booking-contact-info { display: flex; flex-direction: column; gap: 18px; }

.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-item > i {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--off); border: 1px solid var(--border);
  color: var(--navy); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item > div { display: flex; flex-direction: column; }
.contact-item span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-item a  { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-top: 2px; transition: var(--trans); }
.contact-item a:hover { color: var(--gold3); }

/* Form */
.booking-form-wrap {
  background: var(--off);
  border-radius: 20px;
  padding: 44px 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font); font-size: 0.9rem;
  color: var(--text); background: var(--white);
  transition: var(--trans); outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,37,64,0.08);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.btn-submit { width: 100%; justify-content: center; font-size: 0.95rem; padding: 15px; border-radius: 12px; }

.form-success {
  display: none; margin-top: 16px;
  background: #f0fff4; border: 1.5px solid #68d391;
  color: #276749; border-radius: 10px;
  padding: 14px 18px; font-size: 0.88rem; font-weight: 600;
  align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.1rem; }

/* ============================================================
   LOCATION
   ============================================================ */
.location { padding: 80px 0; background: var(--white); }

.location-address {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.location-address .fa-map-marker-alt {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-top {
  background: var(--navy);
  padding: 80px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-logo { display: flex; align-items: baseline; gap: 4px; font-size: 1.6rem; font-weight: 800; margin-bottom: 10px; }
.footer-tagline { color: var(--gold); font-size: 0.85rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px; }

.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }

.footer-links-col h4, .footer-contact-col h4 {
  font-size: 0.9rem; font-weight: 700;
  color: #fff; margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.86rem; color: rgba(255,255,255,0.55);
  transition: var(--trans);
}
.footer-links-col a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--gold); font-size: 0.9rem;
  margin-top: 3px; flex-shrink: 0;
}
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.6;
}
.footer-contact-item a { transition: var(--trans); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.83rem; color: rgba(255,255,255,0.35);
}
.footer-bottom .fa-heart { color: #e53e3e; }

.visit-counter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 18px;
  letter-spacing: 0.3px;
}
.visit-counter .fa-eye { color: var(--gold3); font-size: 0.85rem; }
#visitCount {
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}
.seo-keywords {
  font-size: 0.7rem; color: rgba(255,255,255,0.12);
  margin-top: 8px; line-height: 1.6;
}

/* ============================================================
   FOUNDER SECTION (inside About)
   ============================================================ */
.about-motto {
  font-style: italic;
  color: var(--navy) !important;
  font-weight: 500;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin: 20px 0 !important;
}

.founder-grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 60px;
  align-items: start;
  margin-top: 72px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}

.founder-photo {
  position: relative; text-align: center;
}
.founder-photo img {
  width: 240px; height: 280px; object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow2);
  border: 4px solid var(--white);
  outline: 2px solid var(--gold);
}
.founder-name-tag {
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.founder-name {
  display: block; font-size: 1.05rem; font-weight: 800; color: var(--navy);
}
.founder-role {
  display: block; font-size: 0.8rem; color: var(--gold3);
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}

.founder-title {
  font-size: 1.6rem; font-weight: 800; color: var(--navy);
  margin-bottom: 16px; line-height: 1.3;
}

.founder-quote {
  background: var(--off); border-radius: 14px;
  padding: 24px 28px; margin: 24px 0;
  border-left: 4px solid var(--gold);
  position: relative;
}
.founder-quote .fa-quote-left {
  color: var(--gold); font-size: 1.4rem; margin-bottom: 10px; display: block;
}
.founder-quote p {
  font-size: 0.95rem; color: var(--text); line-height: 1.8;
  font-style: italic; margin-bottom: 10px;
}
.founder-quote span {
  font-size: 0.82rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 1px;
}

/* ============================================================
   FOUNDER MESSAGE SECTION
   ============================================================ */
.founder-message {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0d3260 100%);
  position: relative; overflow: hidden;
}
.founder-message::before {
  content: '"';
  position: absolute; top: -20px; left: 4%;
  font-size: 22rem; font-weight: 900;
  color: rgba(212,175,55,0.05); line-height: 1;
  font-family: Georgia, serif; pointer-events: none;
}

.fm-inner {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.fm-icon {
  font-size: 2.4rem; color: var(--gold);
  margin-bottom: 16px; opacity: 0.8;
}
.fm-heading {
  font-size: 1.9rem; font-weight: 800; color: #fff; margin-bottom: 32px;
}
.fm-text p {
  font-size: 1rem; color: rgba(255,255,255,0.72);
  line-height: 1.9; margin-bottom: 16px;
}
.fm-highlight {
  font-size: 1.1rem !important;
  color: var(--gold) !important;
  font-weight: 500; margin: 24px 0 !important;
  padding: 18px 28px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 12px;
}

.fm-author {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.fm-avatar {
  width: 60px; height: 60px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--gold); flex-shrink: 0;
}
.fm-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fm-name  { display: block; font-size: 1rem; font-weight: 700; color: #fff; }
.fm-role  { display: block; font-size: 0.78rem; color: var(--gold); font-weight: 500; letter-spacing: 1px; }

/* ============================================================
   WHY CHOOSE BYD
   ============================================================ */
.why-choose { padding: 100px 0; background: var(--off); }

.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 22px; text-align: center;
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: var(--trans);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow2);
  border-color: rgba(212,175,55,0.35);
}

.why-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: var(--gold); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: var(--trans);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  color: var(--navy);
}
.why-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ============================================================
   LIBRARY RULES
   ============================================================ */
.rules-section {
  padding: 80px 0;
  background: var(--navy);
}

.rules-inner {
  max-width: 960px; margin: 0 auto;
}
.rules-header { text-align: center; margin-bottom: 48px; }

.rules-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}

.rule-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px; padding: 18px 20px;
  transition: var(--trans);
}
.rule-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,175,55,0.3);
}
.rule-item-warning {
  border-color: rgba(239,68,68,0.3) !important;
  background: rgba(239,68,68,0.06) !important;
}
.rule-item-warning .rule-num { color: #f87171 !important; border-color: rgba(239,68,68,0.4) !important; }

.rule-num {
  font-size: 0.75rem; font-weight: 800;
  color: var(--gold); border: 1.5px solid rgba(212,175,55,0.4);
  border-radius: 8px; padding: 4px 9px;
  flex-shrink: 0; letter-spacing: 0.5px; margin-top: 1px;
}
.rule-text {
  font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.6;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy);
  color: var(--gold); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(10,37,64,0.3);
  transition: var(--trans);
  opacity: 0; pointer-events: none; transform: translateY(12px);
}
.scroll-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1; transform: translate(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .facilities-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 74px; left: 0; right: 0;
    background: rgba(10,37,64,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column; gap: 0;
    padding: 16px 0; margin: 0;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-link { padding: 14px 28px; border-radius: 0; }
  .nav-cta { display: none; }

  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-image   { max-width: 520px; margin: 0 auto; }
  .about-content { padding-left: 0; }

  .founder-grid  { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .founder-photo img { width: 180px; height: 210px; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .rules-grid    { grid-template-columns: 1fr; }

  .plans-grid   { grid-template-columns: repeat(2, 1fr); }
  .plan-card.plan-popular { transform: scale(1); }

  .booking-grid { grid-template-columns: 1fr; gap: 40px; }

  .facilities-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-stats { flex-direction: column; gap: 20px; padding: 28px 32px; }
  .stat-divider { width: 80px; height: 1px; }
}

@media (max-width: 640px) {
  .section-title { font-size: 1.75rem; }
  .hero-title    { font-size: 3.2rem; }
  .hero-stats    { display: none; }
  .plans-grid    { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .why-grid      { grid-template-columns: 1fr; }
  .founder-quote { text-align: left; }

  .facilities-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .facility-card   { padding: 24px 16px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .testimonial-card { min-width: 280px; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 20px; }

  .footer-grid { grid-template-columns: 1fr; }

  .about-img-wrap img { height: 280px; }

/* ============================================================
   LIVE CLASSES NAV LINK – Premium Attention-Grabbing Style
   ============================================================ */
.nav-link-live {
  position: relative;
  background: linear-gradient(135deg, #e63946 0%, #c0392b 100%);
  color: white !important;
  padding: 6px 14px !important;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.35);
  transition: all 0.3s ease;
}
.nav-link-live::after { display: none !important; }
.nav-link-live:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.5);
  color: white !important;
}
.live-pulse-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  animation: bydNavPulse 1.6s infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}
@keyframes bydNavPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@media (max-width: 968px) {
  .nav-link-live {
    margin: 6px 0;
    padding: 10px 18px !important;
    justify-content: center;
  }
}

/* ============================================================
   LIVE CLASSES HOMEPAGE SECTION
   ============================================================ */

.live-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.06), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.06), transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.live-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.1);
  color: #c1121f;
  border: 1px solid rgba(230, 57, 70, 0.25);
}

.live-pulse-dot-large {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #e63946;
  border-radius: 50%;
  position: relative;
  animation: bydDotLargePulse 1.6s infinite;
}
@keyframes bydDotLargePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
  70%      { box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); }
}

.live-section-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  margin-top: 50px;
  align-items: stretch;
}

/* Video side */
.live-section-video {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.live-section-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.live-section-player iframe,
.live-section-player video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.live-section-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 14px;
}
.live-section-loading p { font-size: 13px; opacity: 0.8; }

.byd-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #D4AF37;
  border-radius: 50%;
  animation: bydSpinner 0.8s linear infinite;
}
@keyframes bydSpinner {
  to { transform: rotate(360deg); }
}

/* Live overlay tag on video */
.live-section-player .player-live-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #e63946;
  color: #fff;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
}
.live-section-player .player-live-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: bydDotPulse2 1.4s infinite;
}
@keyframes bydDotPulse2 {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.live-section-player .player-offline-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 37, 64, 0.9);
  color: #D4AF37;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 5;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Meta row below video */
.live-section-meta {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid #eef0f3;
}
.live-section-meta-left h3 {
  font-size: 17px;
  color: #0A2540;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}
.live-section-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: #6b7280;
}
.live-section-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.live-section-meta-row i {
  color: #D4AF37;
  font-size: 12px;
}
.live-section-viewers {
  background: rgba(230, 57, 70, 0.1);
  color: #c1121f !important;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
}
.live-section-viewers i {
  color: #c1121f !important;
}

.btn-join-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0A2540;
  color: #fff;
  padding: 10px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  border: 1.5px solid #0A2540;
}
.btn-join-live:hover {
  background: #D4AF37;
  color: #0A2540;
  border-color: #D4AF37;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

/* Side info card */
.live-section-side {
  display: flex;
}
.live-side-card {
  background: linear-gradient(135deg, #0A2540 0%, #061a2e 100%);
  color: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.15);
  position: relative;
  overflow: hidden;
}
.live-side-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
  border-radius: 50%;
}
.live-side-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #D4AF37;
  margin-bottom: 16px;
}
.live-side-card h4 {
  font-size: 19px;
  color: #D4AF37;
  margin-bottom: 8px;
  font-weight: 700;
  position: relative;
}
.live-side-card > p {
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.85;
  margin-bottom: 18px;
  position: relative;
}
.live-side-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  position: relative;
}
.live-side-features span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}
.live-side-features i {
  color: #D4AF37;
  font-size: 13px;
}
.btn-live-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #D4AF37 0%, #b8962d 100%);
  color: #0A2540;
  padding: 12px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
}
.btn-live-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.5);
}
.live-side-note {
  font-size: 11.5px;
  opacity: 0.6;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  line-height: 1.5;
  position: relative;
}
.live-side-note i {
  color: #D4AF37;
  margin-right: 4px;
}

/* Mobile */
@media (max-width: 900px) {
  .live-section { padding: 70px 0; }
  .live-section-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .live-section-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-join-live { width: 100%; justify-content: center; }
}
@media (max-width: 600px) {
  .live-section-meta { padding: 16px 18px; }
  .live-side-card { padding: 24px 20px; }
}
