@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f8fc;
  font-size: 15.2px; /* Safely scales down the UI to 95% via Bootstrap's REM units */
  overflow-x: clip; /* Prevents side-scrolling without breaking sticky positioning */
}

@media (min-width: 992px) {
  body {
    zoom: 0.8;
  }
}

:root {
  --vl-dark: #0c081e;
  --vl-primary: #7732c6;
  --vl-primary-hover: #5f27a3;
  --vl-accent: #00d1de;
  --vl-accent-hover: #00b8c4;
  --vl-border: rgba(255,255,255,0.08);
  --vl-light: #f6f3fc;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background-color: var(--vl-light);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out;
}

.eco-header {
  z-index: 1030;
}

/* Bunny.net Brand Overrides */
.eco-text, .text-success { color: var(--vl-primary) !important; }
.bg-success { background-color: var(--vl-primary) !important; }
.btn-success, .eco-btn {
  background-color: var(--vl-primary) !important;
  border-color: var(--vl-primary) !important;
  color: #fff !important;
}
.btn-success:hover, .eco-btn:hover {
  background-color: var(--vl-primary-hover) !important;
  border-color: var(--vl-primary-hover) !important;
}
.btn-outline-success {
  color: var(--vl-primary) !important;
  border-color: var(--vl-primary) !important;
}
.btn-outline-success:hover {
  background-color: var(--vl-primary) !important;
  color: white !important;
}
.spinner-border.text-success { color: var(--vl-accent) !important; }

.btn-orange {
  background-color: var(--vl-accent);
  color: white;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-orange:hover {
  background-color: var(--vl-accent-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 209, 222, 0.3) !important;
}

.eco-navbar {
  background-color: rgba(10, 15, 28, 0.85) !important;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--vl-border);
  box-shadow: none;
}

/* Navbar Link Hover Effects */
.eco-navbar .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.eco-navbar .nav-link:hover,
.eco-navbar .nav-link:focus {
  color: var(--vl-accent) !important;
  transform: translateY(-2px);
}

.eco-navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 4px;
  left: 50%;
  background: linear-gradient(90deg, var(--vl-accent), var(--vl-accent));
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 2px;
}

.eco-navbar .nav-link:hover::after,
.eco-navbar .nav-link:focus::after {
  width: 70%;
  left: 15%;
}

footer.bg-dark {
  background-color: var(--vl-dark) !important;
  border-top: 1px solid var(--vl-border);
}

@keyframes slideDownTopbar {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.eco-topbar {
  background-color: #05080f !important;
  border-bottom: 1px solid var(--vl-border);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  animation: slideDownTopbar 0.8s ease-out forwards;
}

/* Navbar Logo Pulse Animation */
@keyframes pulse-logo {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.logo-pulse {
  animation: pulse-logo 2s ease-in-out infinite;
}

.hero-section {
  background: var(--vl-dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--vl-border);
}

.hero-section .carousel-item {
  padding-top: 160px;
  padding-bottom: 140px;
}

/* Hero Carousel Text Animation */
.hero-section .carousel-item .container > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-section .carousel-item.active .container > * {
  opacity: 1;
  transform: translateY(0);
}
.hero-section .carousel-item.active .container > *:nth-child(1) { transition-delay: 0.3s; }
.hero-section .carousel-item.active .container > *:nth-child(2) { transition-delay: 0.6s; }
.hero-section .carousel-item.active .container > *:nth-child(3) { transition-delay: 0.9s; }
.hero-section .carousel-item.active .container > *:nth-child(4) { transition-delay: 1.2s; }

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: var(--vl-primary);
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.35;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: var(--vl-accent);
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.25;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.promo-ticker {
  overflow: hidden;
  background: var(--vl-accent);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  white-space: nowrap;
}

.promo-track {
  display: inline-flex;
  gap: 3rem;
  align-items: center;
  min-width: max-content;
  padding: 0.75rem 0;
  animation: promo-scroll 28s linear infinite;
}

.promo-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.promo-track i {
  font-size: 1.1rem;
}

@keyframes promo-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.product-ad-video {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: 1.5rem;
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(63, 118, 229, 0.5), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(130, 63, 15, 0.42), transparent 30%),
    linear-gradient(135deg, #05080f, var(--vl-dark));
  box-shadow: 0 18px 50px rgba(15, 30, 69, 0.14);
}

.product-ad-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent);
}

.video-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.advert-label {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
}

.sound-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.sound-badge:hover,
.sound-badge.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

.video-product-stage {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-orbit {
  position: absolute;
  width: min(76%, 320px);
  aspect-ratio: 1;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: video-orbit-spin 12s linear infinite;
}

.video-orbit::before,
.video-orbit::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--vl-accent);
  box-shadow: 0 0 24px rgba(230, 96, 0, 0.6);
}

.video-orbit::before {
  top: 22px;
  left: 34px;
}

.video-orbit::after {
  right: 24px;
  bottom: 48px;
  background: var(--vl-primary);
  box-shadow: 0 0 24px rgba(63, 118, 229, 0.6);
}

@keyframes video-orbit-spin {
  to { transform: rotate(360deg); }
}

.video-product-stage img {
  position: relative;
  z-index: 1;
  width: min(82%, 360px);
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.35));
  animation: video-product-float 4s ease-in-out infinite;
}

@keyframes video-product-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.03); }
}

.video-copy {
  position: relative;
  z-index: 1;
}

.video-category {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.video-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.video-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.video-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.video-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 750;
  font-size: 0.9rem;
}

.video-benefits i {
  color: var(--vl-accent);
}

.video-progress-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.video-progress {
  flex: 1;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.video-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--vl-accent), var(--vl-accent));
  transition: width 1.1s ease;
}

.video-progress-wrap small {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 800;
  min-width: 48px;
}

.product-ad-video .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.video-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.6rem;
  margin-top: 2rem;
}

.video-timeline button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
}

.video-timeline button.active {
  background: #fff;
  color: var(--vl-dark);
  border-color: #fff;
}

.video-copy.is-changing,
.video-product-stage.is-changing img {
  animation: video-frame-in 0.45s ease both;
}

@keyframes video-frame-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Infographic Connectors */
@media (min-width: 992px) {
.infographic-connector {
    position: absolute;
    top: 60px; /* Half of the 120px icon header */
    right: -50%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--vl-primary) 0%, rgba(119, 50, 198, 0.1) 100%);
    z-index: 0;
    border-radius: 2px;
  }
}

.live-infographic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.live-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid #eaedf3;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.live-tile-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--vl-primary);
  background: rgba(0, 87, 255, 0.08);
  font-size: 1.25rem;
}

.live-tile strong {
  display: block;
  color: var(--vl-dark);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.live-tile small {
  display: block;
  color: #64748b;
  font-weight: 600;
}

.skeleton-tile {
  min-height: 86px;
  background: linear-gradient(90deg, #f1f5f9 0%, #ffffff 48%, #f1f5f9 100%);
  background-size: 220% 100%;
  animation: skeleton-shimmer 1.3s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}

.live-card-strip {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  background: #f8fafc;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 800;
}

.live-pill i {
  color: var(--vl-primary);
}

.live-pill.live-success {
  color: #166534;
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.live-pill.live-warning {
  color: #854d0e;
  background: #fffbeb;
  border-color: #fde68a;
}

.live-pill.live-danger {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

/* Bunny-Style Crisp Cards */
.card.border-0 {
  border: 1px solid #eaedf3 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card.border-0:hover, .service-card:hover, .product-card:hover, .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 87, 255, 0.08) !important;
}

.outcome-callout,
.stats-tile {
  background: linear-gradient(135deg, var(--vl-dark), var(--vl-primary));
  box-shadow: 0 18px 45px rgba(15, 30, 69, 0.18);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(0, 87, 255, 0.08);
  color: var(--vl-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.outcome-card {
  min-height: 230px;
}

.program-panel,
.membership-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #eaedf3;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-panel:hover,
.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 87, 255, 0.09);
}

.featured-program {
  border-color: rgba(130, 63, 15, 0.35);
}

.program-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.timeline-list {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid #eaedf3;
}

.timeline-item span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--vl-primary);
  font-weight: 800;
}

.experience-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 14px 35px rgba(15, 30, 69, 0.1);
}

.experience-img.tall {
  height: 460px;
}

.membership-card {
  padding: 2rem;
}

.membership-card.premium {
  background: #f8fafc;
  border-color: rgba(0, 87, 255, 0.2);
}


/* FAQ Accordion Styling */
.eco-accordion .accordion-button:not(.collapsed) {
  color: var(--vl-primary);
  background-color: #f8fafc;
  box-shadow: none;
}
.eco-accordion .accordion-button:focus {
  border-color: var(--vl-primary);
  box-shadow: 0 0 0 0.25rem rgba(0, 87, 255, 0.25);
}

.social-btn {
  transition: all 0.3s ease;
}
.social-btn:hover {
  background-color: var(--vl-primary);
  border-color: var(--vl-primary);
  transform: translateY(-3px);
}

/* Custom Modern Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background-color: var(--vl-primary);
  border-radius: 10px;
  border: 3px solid #f8fafc;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--vl-primary-hover);
}

/* Scroll Animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form Focus Styles */
.form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 87, 255, 0.25) !important;
  background-color: #fff !important;
}

/* Mobile Menu Scroll Fix */
@media (max-width: 991px) {
  body {
    font-size: 16px; /* Reset font scaling on mobile */
  }

  .navbar-collapse {
    max-height: 75vh;
    overflow-y: auto;
  }

  .live-infographic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-img.tall {
    height: 320px;
  }

  .timeline-item {
    grid-template-columns: 52px 1fr;
  }

  .promo-track {
    gap: 2rem;
    animation-duration: 34s;
  }

  .video-product-stage {
    min-height: 300px;
  }

  .video-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .live-infographic-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-track {
    animation: none;
    transform: none;
    flex-wrap: wrap;
    white-space: normal;
    padding-inline: 1rem;
  }

  .video-orbit,
  .video-product-stage img,
  .video-copy.is-changing,
  .video-product-stage.is-changing img {
    animation: none;
  }
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border: none;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hover White for Links */
.hover-white {
  transition: color 0.3s ease;
}
.hover-white:hover {
  color: #ffffff !important;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  font-size: 32px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
  background-color: #20ba56;
  color: #FFF;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

/* Site-Specific Modern UI Elements for Booking Form */
.site-modern-card {
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.site-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -5px rgba(119, 50, 198, 0.12);
  border-color: rgba(119, 50, 198, 0.2);
}
.site-modern-input {
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  transition: all 0.3s ease;
}
.form-floating > .site-modern-input {
  padding-left: 1.5rem;
}
.form-floating > label {
  padding-left: 1.5rem;
}
.site-modern-input:focus {
  background: #ffffff;
  border-color: var(--vl-primary);
  box-shadow: 0 0 0 4px rgba(119, 50, 198, 0.15);
  outline: none;
}
.site-btn-modern {
  background: linear-gradient(135deg, var(--vl-primary), var(--vl-accent));
  color: white !important;
  border: none;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(119, 50, 198, 0.25);
}
.site-btn-modern:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(119, 50, 198, 0.35);
}
.site-text-gradient {
  background: linear-gradient(135deg, var(--vl-primary), var(--vl-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.site-icon-circle {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f6f0ff;
  color: var(--vl-primary);
  font-size: 2rem;
  transition: all 0.4s ease;
}
.site-modern-card:hover .site-icon-circle {
  transform: scale(1.1) rotate(5deg);
  background: var(--vl-primary);
  color: white;
  box-shadow: 0 8px 20px rgba(119, 50, 198, 0.3);
}

/* Interactive Infographic Hub Styling */
.info-tab-btn {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 1.2rem;
  transition: all 0.3s ease;
  width: 100%;
}
.info-tab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(119, 50, 198, 0.08);
  border-color: rgba(119, 50, 198, 0.2);
}
.info-tab-btn.active {
  background: linear-gradient(135deg, var(--vl-primary), var(--vl-accent));
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(119, 50, 198, 0.25);
}
.info-tab-btn.active h6 {
  color: #ffffff !important;
}
.info-tab-btn.active small {
  color: rgba(255, 255, 255, 0.8) !important;
}
.info-tab-btn.active .info-tab-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.info-tab-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(119, 50, 198, 0.08);
  color: var(--vl-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Player Screen Mock */
.info-player-screen {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #090616; /* Deep dark purple-black */
}
.player-header {
  background: #0f0a24;
}
.visual-pulse-grid {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(119, 50, 198, 0.15) 1px, transparent 1px),
    radial-gradient(rgba(0, 209, 222, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.6;
}

/* Animations Stage */
.wave-svg {
  width: 100%;
  height: 120px;
  position: absolute;
}
.wave-stroke {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 12 6;
  animation: waveFlow 4s linear infinite;
}
.wave-stroke-primary {
  stroke: var(--vl-primary);
}
.wave-stroke-accent {
  stroke: var(--vl-accent);
}
@keyframes waveFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -180;
  }
}

.particle-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--vl-accent);
  opacity: 0.6;
  animation: floatBubble 5s ease-in-out infinite;
}
@keyframes floatBubble {
  0% {
    transform: translateY(120px) scale(0.6);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-120px) scale(1.1);
    opacity: 0;
  }
}

.scanner-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--vl-accent), transparent);
  box-shadow: 0 0 15px var(--vl-accent);
  animation: scanEffect 3s ease-in-out infinite;
}
@keyframes scanEffect {
  0% {
    top: 10%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}

/* Custom Infographic Visual Keyframes & Styles */
@keyframes spinCell {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes pulseInnerCell {
  0%, 100% { transform: scale(0.85); opacity: 0.7; box-shadow: 0 0 15px var(--vl-accent); }
  50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 30px var(--vl-accent), 0 0 50px rgba(0, 209, 222, 0.5); }
}
@keyframes pulseShield {
  0%, 100% { transform: scale(1); opacity: 0.15; box-shadow: 0 0 15px rgba(49, 53, 163, 0.2); }
  50% { transform: scale(1.08); opacity: 0.45; box-shadow: 0 0 35px rgba(0, 209, 222, 0.6); }
}
@keyframes heatRadiate {
  0% { transform: translateY(40px) scaleX(0.7); opacity: 0; }
  50% { opacity: 0.6; }
  100% { transform: translateY(-40px) scaleX(1.3); opacity: 0; }
}
@keyframes targetAura {
  0%, 100% { transform: scale(0.95); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.8; }
}
.thermal-ray {
  position: absolute;
  width: 4px;
  height: 60px;
  background: linear-gradient(to top, transparent, var(--vl-accent), transparent);
  animation: heatRadiate 3s ease-in-out infinite;
  opacity: 0;
}
.target-point {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vl-accent);
  box-shadow: 0 0 12px var(--vl-accent);
  animation: targetAura 2s ease-in-out infinite;
}
.shield-dome {
  position: absolute;
  border: 2px dashed #00d1de;
  border-radius: 50%;
  animation: pulseShield 4s ease-in-out infinite;
}
@keyframes floatDevice {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

/* Modernization & UX Enhancement Overhaul */

/* Floating Glassmorphic Navbar Capsule */
@media (min-width: 992px) {
  .eco-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .eco-header.scrolled {
    padding-top: 10px;
  }
  
  .eco-header.scrolled .eco-topbar {
    height: 0;
    opacity: 0;
    padding: 0 !important;
    overflow: hidden;
    border: none;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .eco-header.scrolled .eco-navbar {
    background: rgba(10, 15, 28, 0.75) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 999px;
    max-width: 1140px;
    margin: 0 auto;
    width: calc(100% - 40px);
    padding: 0.5rem 1.5rem !important;
  }
}

/* Scroll-Driven entrance reveals */
.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Frosted glassmorphism elements */
.glass-card {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(119, 50, 198, 0.08) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04) !important;
  border-radius: 1.5rem !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -5px rgba(119, 50, 198, 0.12) !important;
  border-color: rgba(119, 50, 198, 0.2) !important;
}

/* 3-Step Interactive Booking Wizard styling */
.booking-wizard-container {
  width: 100%;
}
.wizard-step-pane {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.wizard-step-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.wizard-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 2;
  flex: 1;
}
.wizard-step-indicator .step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3effa;
  color: #7732c6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid rgba(119, 50, 198, 0.15);
  transition: all 0.3s ease;
}
.wizard-step-indicator.active .step-num {
  background: var(--vl-primary);
  color: white;
  border-color: var(--vl-primary);
  box-shadow: 0 0 12px rgba(119, 50, 198, 0.4);
}
.wizard-step-indicator.completed .step-num {
  background: var(--vl-accent);
  color: white;
  border-color: var(--vl-accent);
}
.wizard-step-indicator .step-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  margin-top: 6px;
  transition: color 0.3s ease;
}
.wizard-step-indicator.active .step-text {
  color: var(--vl-primary);
}
.wizard-step-indicator.completed .step-text {
  color: var(--vl-accent);
}

.booking-review-summary {
  background: rgba(119, 50, 198, 0.02);
  border: 1px solid rgba(119, 50, 198, 0.08);
  border-radius: 1rem;
}

/* FAQ Modern Accordion Cards */
.faq-modern-card {
  border: 1px solid rgba(119, 50, 198, 0.06) !important;
  background: #fff;
  border-radius: 1rem !important;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.faq-modern-card:hover {
  border-color: rgba(119, 50, 198, 0.15) !important;
  box-shadow: 0 10px 25px rgba(119, 50, 198, 0.04);
}
.faq-modern-card .accordion-button {
  background: transparent !important;
  color: var(--vl-dark) !important;
  font-weight: 600;
  box-shadow: none !important;
  padding: 1.25rem 1.5rem;
  transition: all 0.3s ease;
}
.faq-modern-card .accordion-button:not(.collapsed) {
  color: var(--vl-primary) !important;
  background: rgba(119, 50, 198, 0.02) !important;
}
.faq-modern-card .accordion-button::after {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

