/* Seaty marketing site — reusable components */

/* ---------- Header / nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 900;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: padding .4s cubic-bezier(.22,.8,.28,1);
  pointer-events: none;
}

.site-header.is-scrolled {
  padding: 0; /* Dock flush to top and sides */
}

.nav-inner {
  --ink: #1E2148;
  --paper: #FFFFFF;
  --navy-chip: rgba(255, 255, 255, 0.06); /* Pure frosted glass, no color tint */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  pointer-events: auto; /* Re-enable clicks on the nav bar itself */
  width: 100%;
  max-width: 1300px; /* From user specs */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px; /* From user specs */
  background: linear-gradient(135deg, rgba(20, 30, 60, 0.4), rgba(10, 15, 30, 0.6));
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 4px 6px 4px 18px;
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.4), 
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 20px rgba(56, 189, 248, 0.05);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  transition: all .4s cubic-bezier(.22,.8,.28,1);
}

.site-header.is-scrolled .nav-inner {
  max-width: 100%;
  border-radius: 0;
  border-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 25, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), inset 0 -1px 15px rgba(56, 189, 248, 0.05);
  padding: 6px calc(max(30px, 50vw - 650px));
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img,
.nav-logo-img {
  height: 32px; /* Reduced size for thinner pill menu bar */
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--dur-fast) var(--ease-out-back);
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px; /* From user specs */
}

.nav-link {
  position: relative;
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px; /* Slightly larger as per 1300px container scale */
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.75);
  padding: 6px 14px; /* Tighter padding */
  border-radius: 50px;
  transition: all var(--ease, cubic-bezier(.22,.8,.28,1)) 0.3s;
  border: 1px solid transparent;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.05);
}

.nav-link.mockup-nav-active svg { stroke: var(--c-blue-600); }

.nav-link.is-active {
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.2),
    inset 0 0 12px rgba(56, 189, 248, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-actions .btn {
  padding: 8px 20px; /* Slimmer pill on mobile */
  font-size: 14px;
}

@media (min-width: 900px) {
  .nav-actions .btn {
    padding: 10px 32px; /* Wider, more premium pill on desktop */
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--c-navy);
  transition: transform var(--dur-base) var(--ease-standard), opacity var(--dur-base);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  /* Extra top padding removed since we center it, or keep small buffer if needed. 
     Using flex + align-items: center will center the inner container. */
}

.nav-mobile-panel {
  position: fixed;
  top: 0; /* Flush to top to prevent any gaps */
  left: 0;
  right: 0;
  bottom: 0; /* Extend to bottom for full-screen blur overlay */
  background: rgba(10, 15, 30, 0.75); /* Dark translucent */
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: calc(80px + env(safe-area-inset-top, 20px)) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
  transition: transform var(--dur-base) var(--ease-standard),
    opacity var(--dur-base) var(--ease-standard), visibility var(--dur-base);
  z-index: 99;
  overflow-y: auto;
}

.nav-mobile-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile-panel .nav-link {
  padding: var(--space-3) var(--space-4);
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  display: block;
}

.nav-mobile-panel .nav-link:last-of-type {
  border-bottom: none;
}

.nav-mobile-panel .nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.nav-mobile-panel .nav-link.is-active {
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  font-weight: 600;
  border-radius: 8px;
  border-bottom: none;
}

.nav-mobile-panel .btn {
  margin-top: var(--space-4);
}

@media (max-width: 860px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    padding: 12px 16px; /* Safe fallback */
    padding: calc(12px + env(safe-area-inset-top, 0px)) 16px 12px;
    transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-scrolled {
    padding: 0;
  }

  .nav-inner {
    padding: 6px 6px 6px 14px;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    border-radius: 100px;
    position: relative;
    z-index: 1000; /* Ensure header content stays above full-screen mobile panel */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-header.is-scrolled .nav-inner {
    background: linear-gradient(135deg, rgba(20, 30, 60, 0.4), rgba(10, 15, 30, 0.75));
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    border-radius: 0;
    border-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), inset 0 -1px 15px rgba(56, 189, 248, 0.1);
    padding: 24px 16px 12px 20px; /* Safe fallback */
    padding: calc(12px + env(safe-area-inset-top, 16px)) 16px 12px 20px;
  }

  /* Animated subtle sweep shine across the pill */
  .nav-inner::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    background-size: 200% 100%;
    animation: shineSweep 4s infinite linear;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.3s ease, border-radius 0.3s ease;
  }

  .site-header.is-scrolled .nav-inner::before {
    opacity: 0;
    border-radius: 0;
  }

  @keyframes shineSweep {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }

  .nav-logo img,
  .nav-logo-img {
    height: 38px;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  }

  .nav-links {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  /* Premium hamburger button */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    transition: transform var(--dur-base) var(--ease-standard), opacity var(--dur-base), width 0.3s;
  }

  .nav-toggle[aria-expanded="true"] {
    background: var(--c-blue);
    border-color: var(--c-blue-400);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
  }

  .nav-toggle[aria-expanded="true"] span {
    width: 18px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: transform var(--dur-fast) var(--ease-out-back), box-shadow var(--dur-base),
    background var(--dur-base), color var(--dur-base), border-color var(--dur-base);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 
    var(--shadow-glow-coral),
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -2px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 107, 74, 0.8);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--gradient-cta-hover);
  box-shadow: 
    0 12px 32px rgba(255, 107, 74, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 -2px 6px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 130, 100, 1);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--c-navy);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--c-blue);
  color: var(--c-blue);
}

.btn-outline-light {
  background: rgba(248, 250, 252, 0.08);
  color: #fff;
  border-color: rgba(248, 250, 252, 0.35);
  backdrop-filter: blur(6px);
}

.btn-outline-light:hover {
  background: rgba(248, 250, 252, 0.16);
  border-color: #fff;
}

.btn-white {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.15);
}

.btn-white:hover {
  background: #f8fafc;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn-ghost {
  background: none;
  color: var(--c-blue);
  padding-inline: var(--space-2);
}

.btn-ghost:hover {
  color: var(--c-blue-700);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (max-width: 600px) {
  .btn-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-row .btn,
  .btn-row .store-badge {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .passenger-rating {
    justify-content: center;
  }
}

/* Store badges */

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--c-navy);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(248, 250, 252, 0.15);
  transition: transform var(--dur-fast) var(--ease-out-back), background var(--dur-base);
}

.store-badge:hover {
  transform: translateY(-2px);
  background: #0f3560;
}

.store-badge svg {
  flex-shrink: 0;
}

.store-badge .store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge .store-badge-text small {
  font-size: 0.68rem;
  opacity: 0.75;
  letter-spacing: 0.03em;
}

/* Download Badges Box */
.download-badges-box {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-8);
  background: #f8fafc;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  width: fit-content;
}

.qr-code-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.qr-code-box img {
  width: 76px;
  height: 76px;
  display: block;
}

.qr-code-box span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badges-divider {
  width: 1px;
  height: 90px;
  background: var(--border-color);
  display: block;
  margin: 0 var(--space-2);
}

.badges-col {
  display: grid;
  gap: var(--space-3);
}

@media (max-width: 600px) {
  .download-badges-box {
    flex-direction: column;
    width: 100%;
  }
  .badges-divider {
    width: 100%;
    height: 1px;
    margin: var(--space-2) 0;
  }
  .badges-col {
    width: 100%;
  }
  .badges-col .store-badge {
    width: 100%;
    justify-content: center;
  }
}

.store-badge .store-badge-text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
}

/* ---------- Cards ---------- */

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent-soft);
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-glow-blue);
}

.feature-card .feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}

.feature-card h3 {
  margin-bottom: var(--space-2);
}

.feature-card p {
  margin-bottom: 0;
}

/* Photo Marquee Section */
.photo-marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.photo-marquee-desktop {
  display: block;
  height: 400px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.photo-marquee-mobile {
  display: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-img {
  border-radius: 16px;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.marquee-left {
  animation: scrollMarquee 35s linear infinite;
}

@media (max-width: 900px) {
  .photo-marquee-desktop {
    display: none;
  }
  .photo-marquee-mobile {
    display: block;
  }
  .photo-marquee-mobile .marquee-img {
    width: 280px;
    height: 200px;
    flex-shrink: 0;
  }
}

.contact-card {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.contact-card .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent-soft);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-glow-blue);
  flex-shrink: 0;
}

.contact-card .feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}

.contact-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-2);
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-3);
  flex-grow: 1;
}

.contact-card .btn-ghost {
  padding: 0;
  font-size: 0.92rem;
}

.glass-card {
  background: rgba(248, 250, 252, 0.06);
  border: 1px solid var(--border-color-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-card-border);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Pills / tags */

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.78rem;
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.1);
  color: var(--c-blue-700);
}

.pill-coral {
  background: rgba(255, 138, 80, 0.14);
  color: var(--c-amber-deep);
}

/* ---------- Hero Section with 4K Sri Lanka Photographic Background ---------- */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1962 / 802;
  background-color: #040d1a;
  background-image:
    linear-gradient(90deg, rgba(4, 13, 26, 0.90) 0%, rgba(4, 13, 26, 0.70) 35%, rgba(4, 13, 26, 0.15) 55%, transparent 70%),
    url('../assets/images/background2.png');
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1,
.hero .lede,
.hero .eyebrow {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.95);
}

/* ---------- Phone Screen Overlay Animation inside Hero Background ---------- */
.hero-phone-overlay {
  position: absolute;
  top: 34.8%;
  left: 51.3%;
  width: 8.7%;
  height: 49.8%;
  border-radius: clamp(16px, 1.35vw, 28px);
  overflow: hidden;
  pointer-events: none;
  z-index: 4;
  transform: rotate(-0.35deg);
  box-shadow: 0 0 0 2.5px #0a0a0a, inset 0 0 4px rgba(0, 0, 0, 0.4);
}

.phone-screens-slider {
  display: flex;
  width: 500%;
  height: 100%;
  animation: phoneScreenSlide 12s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.phone-screens-slider img {
  width: 20%;
  height: 100%;
  object-fit: fill; /* Must be fill to distort synchronously with the 100% 100% background image */
  display: block;
}

@keyframes phoneScreenSlide {

  0%,
  20% {
    transform: translateX(0%);
  }

  25%,
  45% {
    transform: translateX(-20%);
  }

  50%,
  70% {
    transform: translateX(-40%);
  }

  75%,
  95% {
    transform: translateX(-60%);
  }

  100% {
    transform: translateX(-80%);
  }
}

@media (max-width: 900px) {
  .hero {
    aspect-ratio: auto;
    min-height: 520px;
    background-size: cover;
    background-position: right top;
    padding-block: var(--space-12);
  }

  .hero-phone-overlay {
    display: none;
  }
}

.hero::before {
  display: none;
}

.stat-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--space-4);
  max-width: 480px;
  background: rgba(4, 13, 26, 0.70);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 560px) {
  .stat-strip {
    flex-direction: column;
    gap: var(--space-3);
  }
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
  background: var(--gradient-accent-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  white-space: nowrap;
}

/* ---------- Steps timeline ---------- */

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

@media (max-width: 900px) {
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .steps-timeline {
    grid-template-columns: 1fr;
  }
}

.step-item {
  position: relative;
  text-align: left;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  background: var(--gradient-hero);
  margin-bottom: var(--space-4);
}

/* ---------- Role cards ---------- */

.role-tabs {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.role-tab {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--dur-base) var(--ease-standard);
}

.role-tab.is-active {
  background: var(--gradient-hero);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow-blue);
}

.role-panel {
  display: none;
}

.role-panel.is-active {
  display: grid;
}

/* ---------- Accordion (FAQ) ---------- */

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-6) 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--dur-base) var(--ease-standard), background var(--dur-base);
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--c-blue);
  border-radius: var(--radius-full);
}

.accordion-icon::before {
  width: 12px;
  height: 2px;
}

.accordion-icon::after {
  width: 2px;
  height: 12px;
  transition: transform var(--dur-base) var(--ease-standard);
}

.accordion-item.is-open .accordion-icon {
  background: var(--gradient-cta);
}

.accordion-item.is-open .accordion-icon::before,
.accordion-item.is-open .accordion-icon::after {
  background: #fff;
}

.accordion-item.is-open .accordion-icon::after {
  transform: rotate(90deg) scaleY(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-base) var(--ease-standard);
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel-inner {
  overflow: hidden;
}

.accordion-panel p {
  padding-bottom: var(--space-6);
  margin: 0;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--c-navy);
  background-image: linear-gradient(180deg, var(--c-navy), var(--c-indigo-900));
  color: var(--text-on-dark-muted);
  padding-block: var(--space-12) var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-10);
  align-items: start;
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border-color-dark);
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-4);
  font-size: 0.85rem;
}

@media (max-width: 520px) {
  .site-footer {
    padding-block: var(--space-8) var(--space-6);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6) var(--space-4);
    padding-bottom: var(--space-6);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  margin-bottom: var(--space-4);
  margin-top: 0;
  padding: 0;
}

.footer-brand img,
.footer-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  margin: 0;
}

.footer-brand p {
  color: var(--text-on-dark-muted);
  max-width: 32ch;
  margin-top: 0;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0;
  padding-top: 8px;
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.footer-col li {
  margin-bottom: var(--space-3);
}

.footer-col a {
  transition: color var(--dur-fast);
}

.footer-col a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 250, 252, 0.08);
  border: 1px solid var(--border-color-dark);
  transition: transform var(--dur-fast) var(--ease-out-back), background var(--dur-base);
}

.social-icon:hover {
  background: var(--gradient-cta);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-4);
  font-size: 0.85rem;
}

@media (max-width: 520px) {
  .footer-bottom {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: var(--space-2);
  }
}

.footer-bottom a {
  color: var(--text-on-dark-muted);
}

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

/* ---------- Misc ---------- */

.divider {
  height: 1px;
  background: var(--border-color);
  border: none;
  margin: var(--space-16) 0;
}

.badge-legal {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--bg-surface-alt);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.contact-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-blue);
  flex-shrink: 0;
}

/* ---------- Phone mockup (hero seat-selector demo) ---------- */

.phone-frame {
  width: min(300px, 78vw);
  border-radius: 42px;
  border: 8px solid rgba(248, 250, 252, 0.14);
  background: rgba(248, 250, 252, 0.06);
  backdrop-filter: blur(14px);
  padding: var(--space-6) var(--space-5);
  box-shadow: var(--shadow-lg);
  position: relative;
  margin-inline: auto;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(248, 250, 252, 0.25);
}

.phone-route {
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: var(--space-4);
  padding-top: var(--space-2);
}

.phone-route strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  display: block;
  margin-top: 2px;
}

.seat-legend {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
  font-size: 0.72rem;
  color: var(--text-on-dark-muted);
}

.seat-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.seat-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

.seat-legend .dot-available {
  background: rgba(248, 250, 252, 0.28);
}

.seat-legend .dot-held {
  background: var(--c-amber);
}

.seat-legend .dot-selected {
  background: var(--c-cyan-400);
}

/* ---------- Route / GPS tracking graphic ---------- */

.route-graphic-wrap {
  position: relative;
  width: 300px;
  height: 130px;
  margin-inline: auto;
  max-width: 100%;
}

.route-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 0;
  left: 0;
}

.marker-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gradient-cta);
  box-shadow: 0 0 0 4px rgba(248, 250, 252, 0.18);
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--c-cyan-400);
}

/* ---------- QR / ticket mock ---------- */

.qr-mock {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  width: 74px;
  flex-shrink: 0;
}

.qr-mock span {
  aspect-ratio: 1;
  background: var(--slate-800);
  border-radius: 1px;
}

.qr-mock span:nth-child(3n),
.qr-mock span:nth-child(7n + 2),
.qr-mock span:nth-child(5n + 1) {
  background: transparent;
}

.ticket-card {
  max-width: 380px;
  margin-inline: auto;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ticket-top {
  background: var(--gradient-hero);
  color: #fff;
  padding: var(--space-6);
}

.ticket-top .ticket-route {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: var(--space-1);
}

.ticket-top .ticket-meta {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
}

.ticket-bottom {
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.ticket-bottom dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto auto;
  gap: var(--space-1) var(--space-3);
  font-size: 0.85rem;
}

.ticket-bottom dt {
  color: var(--text-muted);
}

.ticket-bottom dd {
  margin: 0;
  font-weight: 700;
  color: var(--text-primary);
}

/* ---------- Realistic Image Frames & Visual Showcase ---------- */

.image-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--bg-dark-surface);
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base);
}

.image-frame-lg {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
}

.image-frame-lg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--c-navy);
}

.image-frame:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 60px rgba(8, 26, 48, 0.22);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-store-phone-frame {
  max-width: 340px;
  width: 100%;
  margin-inline: auto;
  border-radius: 36px;
  border: 4px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.6);
  background: transparent;
  overflow: hidden;
}

.app-store-phone-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.image-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 26, 48, 0) 40%, rgba(8, 26, 48, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
  color: #fff;
}

.image-frame-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(8, 26, 48, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-visual-container {
  position: relative;
  width: 100%;
}

.hero-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  aspect-ratio: 16/10;
  position: relative;
}

.hero-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -24px;
  left: -20px;
  background: rgba(8, 26, 48, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  z-index: 2;
}

.hero-floating-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}

.hero-floating-card strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-top: 2px;
}

.hero-live-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.5));
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 28px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 3;
  box-shadow: 
    0 24px 48px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}
.hero-live-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 
    0 32px 64px -12px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(56, 189, 248, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}
.hero-live-card .card-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.05);
}
.hero-live-card .card-icon svg {
  width: 18px;
  height: 18px;
}
.hero-live-card .card-text {
  text-align: left;
}
.hero-live-card .card-text p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--c-cyan-300);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.hero-live-card .card-text strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .hero-live-card {
    display: none;
  }
}

/* Side-by-side feature showcase */
.feature-showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 900px) {
  .feature-showcase-row {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.feature-showcase-reverse {
  direction: rtl;
}

.feature-showcase-reverse>* {
  direction: ltr;
}

/* Destination Cards */
.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-standard);
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-standard);
}

.destination-card:hover img {
  transform: scale(1.06);
}

.destination-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(8, 26, 48, 0.88) 100%);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.destination-card-content h3 {
  color: #fff;
  margin-bottom: var(--space-1);
}

.destination-card-content p {
  color: var(--c-cyan-300);
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0;
}

/* Route Status Badge */
.route-badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.route-badge.active {
  background: rgba(15, 23, 42, 0.9);
  color: #22d3ee;
  border: 1px solid rgba(6, 182, 212, 0.8);
}

.route-badge.upcoming {
  background: rgba(15, 23, 42, 0.9);
  color: #ff8a70;
  border: 1px solid rgba(255, 107, 74, 0.8);
}

/* ---------- Realistic Seaty Luxury Bus Live Seat Map Component ---------- */
.seaty-seat-card-demo {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
  border: 1px solid #e2e8f0;
  width: min(390px, 100%);
  margin-inline: auto;
  font-family: var(--ff-heading, 'Plus Jakarta Sans', sans-serif);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.seaty-seat-card-demo:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 60px rgba(15, 23, 42, 0.18), 0 12px 24px rgba(15, 23, 42, 0.1);
}

.seat-map-legend {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
}

.legend-pill {
  width: 14px;
  height: 14px;
  border-radius: 6px;
  display: inline-block;
}

.pill-available {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
}

.pill-male {
  background: #2563eb;
}

.pill-female {
  background: #ec4899;
}

.pill-held {
  background: #eab308;
}

.bus-layout-frame {
  background: #f8fafc;
  border-radius: 16px;
  border: 1.5px solid #cbd5e1;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
}

.driver-cabin-bar {
  background: #0f172a;
  color: #ffffff;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.entry-door {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #10b981;
}

.cabin-notch {
  width: 36px;
  height: 4px;
  background: #334155;
  border-radius: 2px;
}

.steering-cabin {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
}

.steering-cabin small {
  color: #f97316;
  font-weight: 600;
}

.bus-seats-container {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.seat-pair {
  display: flex;
  gap: 6px;
}

.aisle-indicator {
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 800;
  user-select: none;
}

.seat-item {
  width: 36px;
  height: 38px;
  border-radius: 8px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #1e293b;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.seat-item.seat-male {
  background: #2563eb !important;
  border-color: #1d4ed8 !important;
  color: #ffffff !important;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.35);
}

.seat-item.seat-female {
  background: #ec4899 !important;
  border-color: #db2777 !important;
  color: #ffffff !important;
  box-shadow: 0 3px 8px rgba(236, 72, 153, 0.35);
}

.seat-item.seat-held {
  background: #eab308 !important;
  border-color: #ca8a04 !important;
  color: #ffffff !important;
  box-shadow: 0 3px 8px rgba(234, 179, 8, 0.35);
}

.gender-badge {
  display: none;
}

.seat-male::after {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: #ffffff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="10" height="10" fill="none" stroke="%232563eb" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="7" r="4"></circle><path d="M6 21v-2a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v2"></path></svg>') no-repeat center center;
  background-size: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 2;
  pointer-events: none;
}

.seat-female::after {
  content: '';
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: #ffffff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="10" height="10" fill="none" stroke="%23ec4899" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="7" r="4"></circle><path d="M7 21l2-7h6l2 7"></path><path d="M9 14h6"></path></svg>') no-repeat center center;
  background-size: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 2;
  pointer-events: none;
}

.seat-row.back-bench {
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px dashed #e2e8f0;
}

/* ---------- Dynamic Seat Booking Pulse Animation ---------- */
.animate-seat-booking {
  animation: dynamicSeatFill 9s ease-in-out infinite;
  animation-delay: calc(var(--delay, 0) * 0.4s);
}

@keyframes dynamicSeatFill {

  0%,
  25% {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #1e293b;
    transform: scale(1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  }

  35%,
  65% {
    background: #2563eb;
    border-color: #1d4ed8;
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.45);
  }

  75%,
  90% {
    background: #ec4899;
    border-color: #db2777;
    color: #ffffff;
    transform: scale(1.04);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.45);
  }

  100% {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #1e293b;
    transform: scale(1);
  }
}

/* ---------- Compact Version for Support FAQ & Modal Views ---------- */
.seaty-seat-card-demo.compact-seat-demo {
  width: min(290px, 100%);
  padding: 12px;
  border-radius: 14px;
  margin: var(--space-4) 0 0 0;
}

.compact-seat-demo .seat-map-legend {
  margin-bottom: 8px;
  padding-bottom: 6px;
}

.compact-seat-demo .legend-item {
  font-size: 0.7rem;
  gap: 4px;
}

.compact-seat-demo .legend-pill {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.compact-seat-demo .driver-cabin-bar {
  padding: 6px 10px;
  font-size: 0.62rem;
}

.compact-seat-demo .driver-cabin-bar svg {
  width: 11px;
  height: 11px;
}

.compact-seat-demo .cabin-notch {
  width: 24px;
  height: 3px;
}

.compact-seat-demo .bus-seats-container {
  padding: 8px 6px;
  gap: 5px;
}

.compact-seat-demo .seat-pair {
  gap: 4px;
}

.compact-seat-demo .aisle-indicator {
  font-size: 0.65rem;
}

.compact-seat-demo .seat-item {
  width: 26px;
  height: 28px;
  border-radius: 6px;
  font-size: 0.68rem;
  border-width: 1px;
}

.compact-seat-demo .gender-badge {
  top: -4px;
  right: -4px;
  width: 11px;
  height: 11px;
}

.compact-seat-demo .gender-badge svg {
  width: 7px;
  height: 7px;
}

.seat-item:hover,
.seat-item.is-hovered {
  transform: scale(1.16) !important;
  z-index: 10;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.22) !important;
}

/* ---------- Feature Spotlight Wide Cards for Support & Landing Pages ---------- */
.spotlight-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl, 24px);
  padding: var(--space-10);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.05);
  margin-bottom: var(--space-20);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}

.spotlight-card:hover {
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

/* ---------- Unique Card Patterns for Support Page (Seaty Brand Color Palette) ---------- */

/* Pattern 1: Seat Selection Seaty Royal Blue Accent Card */
.spotlight-card-seats {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1.5px solid rgba(37, 99, 235, 0.18);
  border-radius: 24px;
  padding: var(--space-10);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.07);
  margin-bottom: var(--space-16);
}

.spotlight-card-seats .spotlight-visual-col {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 20px;
  padding: var(--space-6);
}

/* Pattern 2: GPS Telemetry Seaty Navy Deep Card (Reversed Layout) */
.spotlight-card-gps {
  background: linear-gradient(135deg, var(--c-navy-deep, #040d1a) 0%, var(--c-navy, #081a30) 100%);
  color: #ffffff;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 24px;
  padding: var(--space-10);
  box-shadow: 0 20px 50px rgba(4, 13, 26, 0.35);
  margin-bottom: var(--space-16);
}

.spotlight-card-gps h3 {
  color: #ffffff !important;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: var(--space-4);
}

.spotlight-card-gps p {
  color: rgba(248, 250, 252, 0.88) !important;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 450;
  opacity: 0.88 !important;
}

.spotlight-card-gps .spotlight-checklist-item {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
}

.spotlight-card-gps .spotlight-checklist-item .check-icon {
  background: rgba(6, 182, 212, 0.22);
  color: var(--c-cyan-300, #22d3ee);
}

.spotlight-card-gps .spotlight-visual-col {
  background: var(--bg-dark-surface, #0e2440);
  border: 1px solid rgba(147, 197, 253, 0.15);
  border-radius: 20px;
  padding: var(--space-6);
}

.spotlight-card-gps-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 900px) {
  .spotlight-card-gps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* Pattern 3: Digital QR Ticket Seaty Coral Accent Card */
.spotlight-card-qr {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-left: 6px solid var(--c-coral, #ff6b4a);
  border-radius: 24px;
  padding: var(--space-10);
  box-shadow: 0 16px 40px rgba(255, 107, 74, 0.08);
  margin-bottom: var(--space-16);
}

.spotlight-card-qr .spotlight-visual-col {
  background: linear-gradient(135deg, #fff5f2 0%, #ffebe6 100%);
  border: 1px solid rgba(255, 107, 74, 0.2);
  border-radius: 20px;
  padding: var(--space-6);
}

/* Pattern 4: Operator Onboarding Seaty Cyan Accent Card */
.spotlight-card-operator {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border: 1.5px solid rgba(6, 182, 212, 0.2);
  border-radius: 24px;
  padding: var(--space-10);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.07);
  margin-bottom: var(--space-16);
}

.spotlight-card-operator .spotlight-visual-col {
  padding: 0;
  background: transparent;
  border: none;
}

.spotlight-card-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 900px) {
  .spotlight-card-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .spotlight-card,
  .spotlight-card-seats,
  .spotlight-card-gps,
  .spotlight-card-operator {
    padding: var(--space-6);
  }
}

.spotlight-content-col h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  line-height: 1.25;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 13, 26, 0.95) 0%, rgba(4, 13, 26, 0.70) 45%, rgba(4, 13, 26, 0.10) 65%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-gradient-overlay {
    background: linear-gradient(to bottom, rgba(4, 13, 26, 0.3) 0%, rgba(4, 13, 26, 0.85) 100%);
  }
}

.spotlight-content-col p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}

.spotlight-checklist {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.spotlight-checklist-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.spotlight-checklist-item .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--c-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.spotlight-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-6);
  background: var(--bg-surface-alt);
  border-radius: var(--radius-lg, 18px);
  border: 1px solid var(--border-color);
  width: 100%;
}

/* ---------- Interactive QR Scanner Animation UI ---------- */
.qr-scanner-demo {
  position: relative;
  width: min(280px, 100%);
  background: #0f172a;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.qr-scanner-viewport {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #000000;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.qr-scanner-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
}

/* Corner Reticle Brackets */
.scanner-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3.5px solid #10b981;
  z-index: 5;
  pointer-events: none;
}

.corner-tl {
  top: 12px;
  left: 12px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 8px;
}

.corner-tr {
  top: 12px;
  right: 12px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 8px;
}

.corner-bl {
  bottom: 12px;
  left: 12px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 8px;
}

.corner-br {
  bottom: 12px;
  right: 12px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 8px;
}

/* Laser Scanner Beam */
.scanner-laser-beam {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #10b981, #34d399, #10b981, transparent);
  box-shadow: 0 0 14px #10b981, 0 0 24px #34d399;
  z-index: 6;
  animation: qrLaserScan 3.2s ease-in-out infinite;
}

@keyframes qrLaserScan {
  0% {
    top: 10%;
    opacity: 0.2;
  }

  15% {
    opacity: 1;
  }

  50% {
    top: 82%;
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  100% {
    top: 10%;
    opacity: 0.2;
  }
}

/* Success Pop-up Banner */
.scanner-success-toast {
  position: absolute;
  bottom: 12px;
  left: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(16, 185, 129, 0.6);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  animation: qrSuccessPulse 3.2s ease-in-out infinite;
}

@keyframes qrSuccessPulse {

  0%,
  42% {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }

  52%,
  88% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
}

.success-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.7);
  flex-shrink: 0;
}

.success-toast-text h4 {
  font-size: 0.82rem;
  font-weight: 800;
  color: #10b981;
  margin: 0 0 2px 0;
}

.success-toast-text p {
  font-size: 0.72rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.2;
}

/* ---------- Interactive Operator Portal Visual Component ---------- */
.operator-portal-demo {
  width: min(320px, 100%);
  background: #0f172a;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.portal-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 10px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 0.8rem;
}

.portal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.portal-status-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 3px 8px;
  border-radius: 20px;
}

.portal-body {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.portal-preview-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.portal-metrics-overlay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.portal-metric-card {
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 600;
}

.metric-val {
  font-size: 0.85rem;
  color: #10b981;
  font-weight: 800;
}

/* ---------- Seaty Live GPS Highway Map & Smartphone Frame Component ---------- */
.phone-map-container {
  max-width: 320px;
  width: 100%;
  margin-inline: auto;
}

.phone-mockup-frame {
  background: #0f172a;
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.35), 0 0 0 2px rgba(255, 255, 255, 0.1);
  border: 4px solid #1e293b;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup-frame:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 80px -10px rgba(15, 23, 42, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.15);
}

.phone-mockup-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 16px;
  background: #0f172a;
  border-radius: 10px;
  z-index: 10;
}

.phone-screen-viewport {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: #f8fafc;
}

.app-screen-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #f8fafc;
}

.app-screen-full-img {
  width: 100%;
  height: auto;
  display: block;
}

.map-overlay-live-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.live-status-overlay-badge {
  position: absolute;
  top: 26.2%;
  left: 7.5%;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.live-status-bottom-banner {
  position: absolute;
  bottom: 23%;
  left: 7.5%;
  right: 7.5%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.9);
  z-index: 6;
}

.app-mobile-screen {
  background: #f8fafc;
  padding: 14px 14px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--ff-heading, 'Plus Jakarta Sans', sans-serif);
}

.app-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 2px 6px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #0f172a;
}

.status-right-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.battery-badge {
  background: #f59e0b;
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 800;
}

.app-header-title-block {
  padding-inline: 4px;
  text-align: left;
}

.app-header-title-block h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #081a30;
  margin: 0;
}

.underline-blue {
  position: relative;
  display: inline-block;
}

.underline-blue::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3.5px;
  background: #2563eb;
  border-radius: 2px;
}

.app-header-title-block p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 4px 0 0 0;
  font-weight: 500;
}

.bus-selector-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  border: 1.5px solid #e2e8f0;
}

.bus-selector-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3);
}

.bus-dropdown-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.bus-select-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.86rem;
  font-weight: 700;
  color: #2563eb;
  outline: none;
  appearance: none;
  cursor: pointer;
  padding-right: 20px;
  font-family: inherit;
}

.dropdown-arrow {
  position: absolute;
  right: 0;
  color: #94a3b8;
  pointer-events: none;
  font-size: 0.85rem;
}

.seaty-direct-map-card,
.seaty-map-card-demo {
  position: relative;
  width: 100%;
  margin-inline: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid #cbd5e1;
  background: #cce7ef;
  aspect-ratio: 4 / 4.8;
}

.direct-map-img,
.map-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-bottom-navbar {
  background: #0f172a;
  border-radius: 28px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #94a3b8;
  margin-top: 4px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
}

.nav-item-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-item-icon:hover {
  color: #ffffff;
}

.nav-item-btn.is-active {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.map-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-status-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 6;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: liveGreenPulse 1.8s infinite;
}

@keyframes liveGreenPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.map-controls-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
  z-index: 6;
}

.map-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: #1e293b;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.map-btn:hover {
  background: #f1f5f9;
}

.map-btn+.map-btn {
  border-top: 1px solid #e2e8f0;
}

.map-route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
}

.animated-route-dash {
  animation: routeDashFlow 2s linear infinite;
}

@keyframes routeDashFlow {
  to {
    stroke-dashoffset: -32;
  }
}

.marker-ping {
  animation: mapMarkerPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes mapMarkerPing {

  75%,
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Moving Bus Marker along Highway Route */
.moving-bus-marker {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  offset-path: path("M 605 840 C 530 1020, 440 1200, 315 1370");
  animation: busSmoothDrive 9.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.small-bus-badge {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(4px);
  padding: 3px 8px 3px 4px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.small-bus-circle {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.small-speed-tag {
  color: #10b981;
  font-size: 0.65rem;
  font-weight: 800;
  white-space: nowrap;
}

@keyframes busSmoothDrive {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }

  4% {
    opacity: 1;
  }

  94% {
    opacity: 1;
  }

  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.bus-badge-tooltip {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f172a;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}

.bus-route-tag {
  color: #60a5fa;
}

.bus-speed-tag {
  color: #10b981;
  font-weight: 800;
}

.bus-icon-circle {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5), 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.map-bottom-info {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 6;
}

.info-icon-circle {
  width: 32px;
  height: 32px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text-group {
  display: flex;
  flex-direction: column;
}

.info-title {
  font-size: 0.84rem;
  font-weight: 800;
  color: #0f172a;
}

.info-subtitle {
  font-size: 0.74rem;
  color: #475569;
  font-weight: 600;
}

/* ---------- Responsive Hero Grid ---------- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ---------- Feature Previews (Animations) ---------- */
.feature-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.feature-preview {
  height: 150px;
  background: var(--bg-surface-alt);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.feature-content {
  padding: var(--space-6);
  flex-grow: 1;
}

/* 2. GPS Tracking Map */
.fp-map {
  width: 100%;
  height: 100%;
  position: relative;
  background: #c3d9e8 url('../assets/images/srilanka_map.png') no-repeat center center;
  background-size: 180%;
  background-position: 40% 60%;
}
.fp-route-svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  overflow: visible;
}
.fp-bus-marker {
  width: 24px;
  height: 24px;
  background: var(--c-navy);
  border: 3px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -12px; left: -12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-eta-pill {
  position: absolute;
  top: -36px; left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--c-navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  white-space: nowrap;
}
.fp-eta-pill::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* 3. Checkout Receipt */
.fp-receipt {
  width: 180px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.fp-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.fp-row.total {
  border-top: 1px dashed var(--border-color);
  padding-top: var(--space-2);
  font-weight: 700;
  color: var(--c-navy);
  font-size: 0.85rem;
}
.fp-checkout-btn {
  margin-top: var(--space-3);
  height: 36px;
  border-radius: 8px;
  background: var(--c-blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 4. QR Ticket */
.fp-ticket {
  width: 140px;
  height: 160px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-4);
  overflow: hidden;
}
.fp-qr-box {
  width: 90px;
  height: 90px;
  background: #f1f5f9;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 2px;
  padding: 8px;
}
.fp-qr-box div {
  background: var(--c-navy);
  border-radius: 2px;
}
.fp-qr-box div:nth-child(2n) { opacity: 0.8; }
.fp-qr-box div:nth-child(3n) { opacity: 0.5; }

/* 5. Push Alerts */
.fp-toast-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 85%;
}
.fp-toast {
  background: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}
.fp-toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--c-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-toast-text {
  flex-grow: 1;
}
.fp-toast-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 2px;
}
.fp-toast-sub {
  font-size: 0.6rem;
  color: var(--text-muted);
}

/* 6. Reviews */
.fp-review {
  width: 80%;
  background: #fff;
  border-radius: 12px;
  padding: var(--space-4);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.fp-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}
.fp-stars svg {
  width: 14px;
  height: 14px;
}
.fp-review-text {
  font-size: 0.75rem;
  color: var(--c-navy);
  font-style: italic;
  margin-bottom: 8px;
}
.fp-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-green);
}

.html-phone-mockup {
  background: #f8fafc;
  border-radius: 24px;
  border: 4px solid #f1f5f9;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.1),
    0 0 0 1px #cbd5e1;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  height: 560px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
}

.mockup-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 18px 0;
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
  position: relative;
  z-index: 5;
}
.mockup-header-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}
.mockup-body {
  padding: 12px 20px 20px;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
}
.mockup-body::-webkit-scrollbar { display: none; }
.mockup-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 2px;
  display: inline-block;
  border-bottom: 2px solid #2563eb;
  padding-bottom: 2px;
}
.mockup-subtitle {
  font-size: 0.65rem;
  color: #64748b;
  margin-bottom: 12px;
}
.mockup-search-container {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.mockup-search-bar {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.mockup-search-bar svg { stroke: #94a3b8; }
.mockup-search-bar span { 
  font-size: 0.65rem; 
  color: #94a3b8; 
  flex: 1; 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
}
.mockup-filter-btn {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup-filter-btn svg { stroke: #64748b; }
.mockup-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  align-items: center;
}
.mockup-tab {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  background: #fff;
  color: #64748b;
  border: 1px solid #e2e8f0;
  white-space: nowrap;
}
.mockup-tab.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.mockup-tab-count {
  margin-left: auto;
  font-size: 0.6rem;
  color: #64748b;
  font-weight: 600;
  white-space: nowrap;
}
.mockup-ticket-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  margin-bottom: 12px;
  border: 1px solid #f1f5f9;
}
.mockup-ticket-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.mockup-ticket-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.mockup-ticket-sub {
  font-size: 0.5rem;
  color: #94a3b8;
  margin-top: 2px;
  white-space: nowrap;
}
.mockup-ticket-price {
  font-size: 0.75rem;
  font-weight: 800;
  color: #2563eb;
  text-align: right;
  line-height: 1.2;
  white-space: nowrap;
}
.mockup-route {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mockup-time {
  font-size: 0.7rem;
  font-weight: 800;
  color: #1e293b;
  white-space: nowrap;
}
.mockup-city {
  font-size: 0.5rem;
  color: #64748b;
  margin-top: 2px;
  white-space: nowrap;
}
.mockup-line-wrapper {
  flex: 1;
  margin: 0 10px;
  position: relative;
  height: 2px;
  background: #cbd5e1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-line-dot {
  width: 6px;
  height: 6px;
  background: #2563eb;
  border-radius: 50%;
}
.mockup-line-date {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 8px;
  font-size: 0.5rem;
  color: #94a3b8;
}
.mockup-ticket-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-seat-info {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
}
.mockup-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.mockup-bottom-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 24px 24px;
}
.mockup-nav-item {
  color: #64748b;
}
.mockup-nav-active {
  background: #eff6ff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ---------- 8. Premium List Items ---------- */
.premium-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.premium-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 1.05rem;
}
.icon-circle {
  background: var(--c-blue-50);
  color: var(--c-blue-600);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- 9. Interactive Route Network ---------- */
.route-explorer-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .route-explorer-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.route-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.route-ui-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  border: 1px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.route-ui-card:hover, .route-ui-card.active-route {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 50px rgba(0,0,0,0.12);
  border-color: #94a3b8;
}

.route-ui-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--c-orange-500);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.route-ui-card:hover::before, .route-ui-card.active-route::before {
  opacity: 1;
}

.route-ui-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.route-ui-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-ui-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.route-ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.route-ui-header h3 {
  font-size: 1rem;
  margin: 0;
  color: #0f172a;
  letter-spacing: 0.5px;
}

.route-ui-badge {
  font-size: 0.65rem;
  font-weight: 800;
  background: #f1f5f9;
  color: #64748b;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.route-ui-card:hover .route-ui-badge, .route-ui-card.active-route .route-ui-badge {
  background: #fff3e0;
  color: #ea580c;
}

.route-ui-timeline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.timeline-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: background 0.3s ease;
}

.route-ui-card:hover .timeline-dot, .route-ui-card.active-route .timeline-dot {
  background: var(--c-orange-500);
}

.timeline-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.timeline-progress {
  position: absolute;
  left: -100%;
  top: 0; bottom: 0;
  width: 100%;
  background: var(--c-orange-500);
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-ui-card:hover .timeline-progress, .route-ui-card.active-route .timeline-progress {
  left: 0;
}

.route-ui-meta {
  display: flex;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 4px;
}

.route-ui-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-blue-600);
  text-decoration: none;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
  height: 0;
  overflow: hidden;
}

.route-ui-card:hover .route-ui-cta, .route-ui-card.active-route .route-ui-cta {
  opacity: 1;
  transform: translateY(0);
  height: 20px;
  margin-top: 4px;
}

.route-map-container {
  position: relative;
  background: #fff;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-map-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 60px rgba(0,0,0,0.12);
}

.map-info-panel {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
  z-index: 10;
}

.map-info-panel h4 {
  font-size: 0.75rem;
  color: #94a3b8;
  letter-spacing: 1px;
  margin: 0 0 12px 0;
}

.map-info-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-info-panel li {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-info-panel li svg {
  color: #22c55e;
}

.sri-lanka-map {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.map-node {
  transition: all 0.3s ease;
  opacity: 0.7;
  display: flex;
  align-items: center;
  position: relative;
}

.map-node.active-node {
  opacity: 1;
}

.marker-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #cbd5e1;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.active-node .marker-circle {
  background: var(--c-orange-500);
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.6));
  animation: pulseDot 2s infinite;
}

.marker-label {
  position: absolute;
  left: 15px; /* offset from center */
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(255,255,255,0.9);
}

.active-node .marker-label {
  color: #0f172a;
  font-weight: 700;
  font-size: 16px;
}

/* Adjust Leaflet defaults to make it look clean */
.leaflet-container {
  background: #f8fafc;
  font-family: var(--font-sans);
}
.custom-leaflet-marker {
  background: transparent;
  border: none;
}
.active-leaflet-path {
  filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.4));
}

@keyframes mapDotMove {
  0% { opacity: 0; offset-distance: 0%; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; offset-distance: 100%; }
}

.moving-dot {
  opacity: 0;
}

.moving-dot.active {
  animation: mapDotMove 6s linear infinite;
}

/* ---------- Cinematic Photo Fade ---------- */
.cinematic-photo-fade {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cinematic-photo-fade img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(56, 189, 248, 0.15);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.cinematic-photo-fade img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(56, 189, 248, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ---------- Motion Redesign Additions ---------- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--c-orange-500);
  width: 0%;
  z-index: 9999;
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
  transition: width 0.1s linear;
}

.feature-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9000;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  padding: 16px 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.feature-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.feature-nav-link {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.feature-nav-link::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-on-dark-muted);
  transition: all 0.3s ease;
}
.feature-nav-link:hover, .feature-nav-link.active {
  color: #fff;
}
.feature-nav-link:hover::before, .feature-nav-link.active::before {
  background: var(--c-orange-500);
  box-shadow: 0 0 8px var(--c-orange-500);
  transform: scale(1.5);
}

.hero-bg-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 30%);
  background-size: 150% 150%;
  z-index: 1;
  animation: heroGlow 20s ease-in-out infinite;
  pointer-events: none;
}

.qr-scanner-line {
  position: absolute;
  left: 15%;
  right: 15%;
  height: 2px;
  background: rgba(16, 185, 129, 0.8);
  box-shadow: 0 0 12px 2px rgba(16, 185, 129, 0.6);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}
.reveal-clip.is-visible .qr-scanner-line {
  animation: scanningLine 2.5s cubic-bezier(0.4, 0, 0.2, 1) 1s;
}

.qr-success-badge {
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translate(-50%, 20px) scale(0.9);
  background: #10b981;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  opacity: 0;
  z-index: 11;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-clip.is-visible .qr-success-badge {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  transition-delay: 3s;
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.badge-1 {
  top: 15%;
  right: -20px;
  color: #10b981;
}
.badge-2 {
  bottom: 20%;
  left: -10px;
}
.price-counter {
  color: var(--c-orange-500);
}

.stars-stagger {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-4);
}
.star {
  color: #fbbf24;
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.community-glow-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.community-glow-wrapper.is-visible::before {
  animation: liveGlow 4s ease-in-out infinite;
}
.community-glow-wrapper.is-visible .star {
  opacity: 1;
  transform: scale(1);
  animation: liveStarFloat 3s ease-in-out infinite;
}
.community-glow-wrapper.is-visible .star:nth-child(1) { animation-delay: 0.1s; }
.community-glow-wrapper.is-visible .star:nth-child(2) { animation-delay: 0.3s; }
.community-glow-wrapper.is-visible .star:nth-child(3) { animation-delay: 0.5s; }
.community-glow-wrapper.is-visible .star:nth-child(4) { animation-delay: 0.7s; }
.community-glow-wrapper.is-visible .star:nth-child(5) { animation-delay: 0.9s; }

.section-bridge-top {
  position: absolute;
  top: 0; left: 0; right: 0; height: 150px;
  background: linear-gradient(to bottom, #fff, transparent);
  pointer-events: none;
  z-index: 1;
}
.section-bridge-bottom {
  position: absolute;
  top: -150px; left: 0; right: 0; height: 150px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
  z-index: 1;
}

.cta-interactive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-interactive:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}
.cta-interactive:active {
  transform: scale(0.97);
}
.btn-arrow {
  transition: transform 0.3s ease;
}
.cta-interactive:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- Review Marquee ---------- */
.show-on-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
  .order-first-mobile {
    order: -1 !important;
  }
}
@media (max-width: 600px) {
  .hide-on-mobile {
    display: none !important;
  }
  
  .show-on-mobile {
    display: block !important;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-top: var(--space-8);
  }
  
  .hero-content .eyebrow {
    margin-inline: 0;
  }
  
  .hero-content .btn-row {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .hero-content .btn-row .btn {
    width: 100%;
    justify-content: center;
  }
}

.review-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: var(--space-12);
  padding-block: var(--space-4);
  /* Fade edges for a premium continuous look */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.review-marquee-track {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
  padding-left: var(--space-6);
}

.review-marquee-track:hover {
  animation-play-state: paused;
}

.review-card {
  width: 350px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.review-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--c-navy);
  line-height: 1.6;
  font-weight: 500;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-2);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-coral), var(--c-orange-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.review-author-route {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .feature-nav {
    display: none; /* Hide sticky nav on mobile for simplicity, or we could make it horizontal */
  }
}