/* ==========================================================================
   TARIADS ZIMBABWE — MOBILE DIGITAL BILLBOARD STYLESHEET
   Pure Vanilla CSS. High impact advertising typography & zero scrolling.
   ========================================================================== */

:root {
  --tari-green: #006837;
  --tari-green-dark: #004d26;
  --tari-green-light: #008f4c;
  --tari-gold: #f59e0b;
  --tari-gold-bright: #fbbf24;
  --tari-gold-dark: #d97706;
  --tari-dark: #0a100d;
  --tari-slate: #1e293b;
  --tari-muted: #64748b;
  --tari-light-gray: #f8fafc;
  --tari-border: rgba(255, 255, 255, 0.15);
  --tari-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --tari-font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --tari-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #060c08;
  font-family: var(--tari-font-body);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
}

/* App Canvas Wrapper (Desktop Kiosk Center / Mobile 100dvh) */
.billboard-app {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at center 40%, #0d2818 0%, #060c08 100%);
  overflow: hidden;
}

/* Ambient Ambient Glow behind phone on desktop */
.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 104, 55, 0.35) 0%, rgba(245, 158, 11, 0.12) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

/* The Mobile Billboard Screen Device */
.billboard-frame {
  width: 100%;
  height: 100%;
  max-width: 480px;
  max-height: 920px;
  position: relative;
  overflow: hidden;
  background: #000000;
  display: flex;
  flex-direction: column;
  z-index: 10;
  box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

@media (min-width: 540px) {
  .billboard-frame {
    border-radius: 40px;
    height: calc(100dvh - 32px);
    border: 8px solid #1c2620;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.12), inset 0 0 0 2px rgba(0, 0, 0, 0.8);
  }
}

/* Top Billboard Header & Story Progress Bars */
.billboard-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 18px 12px 18px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  pointer-events: auto;
}

/* Segmented Story Progress Bar */
.progress-segments-row {
  display: flex;
  gap: 5px;
  width: 100%;
}

.progress-segment {
  flex: 1;
  height: 3.5px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.progress-segment-fill {
  height: 100%;
  width: 0%;
  background: var(--tari-gold);
  border-radius: 4px;
  transition: width 0.05s linear;
}

.progress-segment.completed .progress-segment-fill {
  width: 100% !important;
  background: #ffffff;
}

/* Billboard Top Nav Bar */
.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.brand-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--tari-green);
  border: 1.5px solid var(--tari-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 104, 55, 0.4);
}

.brand-text-box {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-family: var(--tari-font-heading);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.brand-title .part-tari {
  color: #ffffff;
}

.brand-title .part-ads {
  color: var(--tari-gold);
}

.brand-sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.top-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-live-billboard {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 104, 55, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.5);
  padding: 4px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 8px #22c55e; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.btn-ctrl {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.btn-ctrl:hover, .btn-ctrl:active {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* ==========================================================================
   SLIDES DECK (PURE CSS & CINEMATIC BILLBOARD ADVERTISING TRANSITIONS)
   ========================================================================== */

.billboard-slides-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.billboard-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 85px 20px 24px 20px;
  z-index: 2;
}

.billboard-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 10;
}

/* Slide Background Images with Advertising Gradients */
.slide-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.0);
  transition: transform 6.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.billboard-slide.active .slide-bg-media {
  transform: scale(1.06);
}

/* Dark cinematic gradient overlays to guarantee contrast */
.slide-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(10, 16, 13, 0.6) 0%,
    rgba(10, 16, 13, 0.2) 30%,
    rgba(10, 16, 13, 0.75) 60%,
    rgba(6, 12, 8, 0.96) 90%
  );
  z-index: 2;
  pointer-events: none;
}

/* Slide custom high-tech dark green advertising backdrops */
.slide-bg-emerald {
  background: radial-gradient(circle at 50% 30%, #004d26 0%, #002b15 50%, #060c08 100%);
}

.slide-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(245, 158, 11, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  z-index: 2;
  pointer-events: none;
}

/* Slide Content Card Layout */
.slide-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   CINEMATIC BILLBOARD ELEMENT KEYFRAMES & SEQUENCING
   ========================================================================== */

@keyframes billboardFadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes billboardFadeScale {
  0% {
    opacity: 0;
    transform: scale(0.96) translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}

/* Base Inactive Element States (Hidden before timing reveal) */
.billboard-slide .slide-tag-pill,
.billboard-slide .billboard-headline > span,
.billboard-slide .billboard-subtext,
.billboard-slide .mention-pills-row,
.billboard-slide .trust-badges-bar,
.billboard-slide .btn-billboard-cta,
.billboard-slide .talk-support-chips-row,
.billboard-slide .talk-hero-phone-container,
.billboard-slide .talk-action-buttons-wrap,
.billboard-slide .talk-social-trio-row,
.billboard-slide .talk-trust-sub-line,
.billboard-slide .poster-visual-anchor,
.billboard-slide .poster-message-group,
.billboard-slide .poster-contact-hero-wrap,
.billboard-slide .contact-services-quad,
.billboard-slide .poster-qr-subhook,
.billboard-slide .poster-qr-hero-wrap,
.billboard-slide .poster-action-group,
.billboard-slide .poster-social-footer {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  will-change: transform, opacity;
}

/* Ensure headline line spans render as block lines for line-by-line reveal */
.billboard-headline > span {
  display: block;
}

/* 2. CATEGORY LABEL — 0.3s Entrance */
.billboard-slide.active .slide-tag-pill {
  animation: billboardFadeScale 0.48s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* 3. MAIN HEADLINE LINE 1 — 0.6s Entrance */
.billboard-slide.active .billboard-headline > span:first-child {
  animation: billboardFadeUp 0.52s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* 3b. MAIN HEADLINE LINE 2 (Gold Emphasis) — 0.9s Entrance */
.billboard-slide.active .billboard-headline > span:nth-child(2),
.billboard-slide.active .billboard-headline > span.gold-text {
  animation: billboardFadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.billboard-slide.active .poster-qr-subhook {
  animation: billboardFadeUp 0.48s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
}

/* 4. VISUAL ANCHORS & HERO ELEMENTS — 1.15s Entrance */
.billboard-slide.active .poster-visual-anchor,
.billboard-slide.active .poster-contact-hero-wrap,
.billboard-slide.active .poster-qr-hero-wrap {
  animation: billboardFadeScale 0.55s cubic-bezier(0.16, 1, 0.3, 1) 1.15s forwards;
}

/* 4b. SUPPORTING TEXT / MESSAGES / BENEFITS / SERVICES — 1.35s Entrance */
.billboard-slide.active .billboard-subtext,
.billboard-slide.active .poster-message-group,
.billboard-slide.active .contact-services-quad,
.billboard-slide.active .mention-pills-row,
.billboard-slide.active .trust-badges-bar,
.billboard-slide.active .talk-support-chips-row {
  animation: billboardFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.35s forwards;
}

.billboard-slide.active .talk-hero-phone-container {
  animation: billboardFadeScale 0.52s cubic-bezier(0.16, 1, 0.3, 1) 1.45s forwards;
}

/* 5. CTA BUTTONS & ACTION STACK — 1.65s Entrance */
.billboard-slide.active .btn-billboard-cta,
.billboard-slide.active .talk-action-buttons-wrap,
.billboard-slide.active .poster-action-group {
  animation: billboardFadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) 1.65s forwards;
}

.billboard-slide.active .talk-social-trio-row,
.billboard-slide.active .poster-social-footer {
  animation: billboardFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.85s forwards;
}

.billboard-slide.active .talk-trust-sub-line {
  animation: billboardFadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) 1.98s forwards;
}

/* Category Pill Tag */
.slide-tag-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 104, 55, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.6);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  backdrop-filter: blur(8px);
}

.slide-tag-pill.gold {
  background: rgba(245, 158, 11, 0.9);
  border-color: #ffffff;
  color: #000000;
}

/* Main Billboard Big Headlines */
.billboard-headline {
  font-family: var(--tari-font-heading);
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
}

@media (min-width: 400px) {
  .billboard-headline {
    font-size: 38px;
  }
}

.billboard-headline .gold-text {
  color: var(--tari-gold-bright);
  display: block;
}

.billboard-headline .white-sub {
  color: #ffffff;
  display: block;
}

/* Supporting description text */
.billboard-subtext {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  max-width: 95%;
}

/* Mentions Pill Cluster (Clean single line pills) */
.mention-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 4px 0;
}

.mention-pill {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

/* Trust Badges Bar */
.trust-badges-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 2px 0 4px 0;
}

.trust-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(34, 197, 94, 0.5);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  color: #86efac;
}

.trust-badge-item svg {
  color: #22c55e;
}

/* Primary Call to Action Button */
.btn-billboard-cta {
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, var(--tari-gold-bright) 0%, var(--tari-gold) 100%);
  color: #000000;
  border: none;
  border-radius: 14px;
  font-family: var(--tari-font-heading);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
  margin-top: 4px;
}

.btn-billboard-cta:active {
  transform: scale(0.97);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-billboard-cta.green {
  background: linear-gradient(135deg, var(--tari-green-light) 0%, var(--tari-green) 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 104, 55, 0.45);
}

/* Slide 7 Specialized QR Code Display */
.qr-billboard-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--tari-dark);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  margin: 6px 0;
}

.qr-box {
  width: 96px;
  height: 96px;
  min-width: 96px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-box svg {
  width: 100%;
  height: 100%;
}

.qr-info-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.qr-scan-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--tari-green);
}

.qr-url-title {
  font-family: var(--tari-font-heading);
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}

.qr-scan-sub {
  font-size: 12px;
  color: var(--tari-muted);
  line-height: 1.3;
}

/* Social Media Advertising Section */
.social-billboard-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
  width: 100%;
}

.social-block-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--tari-gold-bright);
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-block-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245, 158, 11, 0.25);
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  width: 100%;
}

.social-btn-card {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 20, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 8px 10px;
  text-decoration: none;
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.social-btn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.social-tiktok:hover, .social-tiktok:active {
  background: rgba(0, 0, 0, 0.85);
  border-color: #00f2fe;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 242, 254, 0.25);
}

.social-instagram:hover, .social-instagram:active {
  background: rgba(40, 10, 30, 0.85);
  border-color: #e1306c;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(225, 48, 108, 0.3);
}

.social-facebook:hover, .social-facebook:active {
  background: rgba(10, 25, 50, 0.85);
  border-color: #1877f2;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(24, 119, 242, 0.3);
}

.social-btn-icon-wrap {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: background 0.2s, color 0.2s;
}

.social-tiktok .social-btn-icon-wrap {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.social-tiktok:hover .social-btn-icon-wrap {
  background: #000000;
  color: #00f2fe;
}

.social-instagram .social-btn-icon-wrap {
  background: rgba(225, 48, 108, 0.18);
  color: #ff758c;
}
.social-instagram:hover .social-btn-icon-wrap {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #ffffff;
}

.social-facebook .social-btn-icon-wrap {
  background: rgba(24, 119, 242, 0.18);
  color: #60a5fa;
}
.social-facebook:hover .social-btn-icon-wrap {
  background: #1877f2;
  color: #ffffff;
}

.social-btn-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
  flex: 1;
}

.social-platform-name {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-handle-name {
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-arrow-icon {
  color: rgba(255, 255, 255, 0.4);
  margin-left: auto;
  transition: transform 0.2s, color 0.2s;
}

.social-btn-card:hover .social-arrow-icon {
  color: var(--tari-gold-bright);
  transform: translateX(2px);
}

/* Left & Right Tap Zones for Navigation */
.tap-nav-zone {
  position: absolute;
  top: 70px;
  bottom: 60px;
  width: 22%;
  z-index: 30;
  cursor: pointer;
}

.tap-nav-zone.left {
  left: 0;
}

.tap-nav-zone.right {
  right: 0;
}

/* Billboard Bottom Navigation Hints (Clean & Subtle) */
.billboard-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px 12px 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.45) 75%, transparent 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  pointer-events: auto;
}

.slide-counter-txt {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--tari-font-heading);
}

.desktop-arrows {
  display: flex;
  gap: 8px;
}

.btn-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s ease;
  backdrop-filter: blur(6px);
}

.btn-arrow:hover, .btn-arrow:active {
  background: rgba(245, 158, 11, 0.25);
  border-color: var(--tari-gold);
  color: var(--tari-gold-bright);
  transform: scale(1.08);
}

/* ==========================================================================
   INTERACTIVE ACTION SHEETS & MODALS (POPUP FROM BOTTOM)
   ========================================================================== */

.action-sheet-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.action-sheet-overlay.active {
  opacity: 1;
  visibility: visible;
}

.action-sheet-panel {
  width: 100%;
  max-height: 85%;
  background: #0d1712;
  border-top: 2px solid var(--tari-green-light);
  border-radius: 24px 24px 0 0;
  padding: 20px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  color: #ffffff;
}

.action-sheet-overlay.active .action-sheet-panel {
  transform: translateY(0);
}

.sheet-handle {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  align-self: center;
  margin-bottom: -4px;
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sheet-title {
  font-family: var(--tari-font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.btn-sheet-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sheet-body {
  font-size: 13.5px;
  line-height: 1.6;
  color: #cbd5e1;
}

.sheet-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--tari-gold-bright);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-family: var(--tari-font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--tari-gold);
  background: rgba(255, 255, 255, 0.12);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-select option {
  background: #0f172a;
  color: #ffffff;
}

/* Toast Message */
#toast {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #0f172a;
  border: 1px solid var(--tari-gold);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 200;
  white-space: nowrap;
}

#toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   POSTER SLIDES 6, 7, & 8: REFINED EDITORIAL & VISUAL ANCHOR LAYOUT
   ========================================================================== */

/* Overall Poster Slide Container Override (Top-to-Bottom Flow instead of bottom-stacked) */
.billboard-poster-slide {
  justify-content: flex-start !important;
  padding: 68px 18px 24px 18px !important;
}

.poster-ambient-glow {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 80%;
  height: 65%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(34, 197, 94, 0.08) 50%, transparent 80%);
  pointer-events: none;
  z-index: 3;
  filter: blur(28px);
}

.poster-content-flow {
  position: relative;
  z-index: 10;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.poster-top-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  width: 100%;
}

.poster-headline-brand,
.poster-headline-contact,
.poster-headline-qr {
  font-family: var(--tari-font-heading);
  font-size: 26px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85);
}

.poster-qr-subhook {
  font-size: 11px;
  font-weight: 800;
  color: var(--tari-gold-bright);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-top: 2px;
}

/* ==========================================================================
   SLIDE 6: BRAND / TRUST VISUAL ANCHOR & BENEFITS
   ========================================================================== */
.anchor-network {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 0;
  margin: 0 auto;
  max-width: 320px;
}

.anchor-network-svg {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

.central-tariads-emblem {
  filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.5));
}

.poster-message-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.poster-subtext-brand {
  font-size: 12px;
  color: #f1f5f9;
  font-style: italic;
  text-align: center;
  line-height: 1.35;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  margin: 0 4px;
}

.brand-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
}

.brand-benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 0;
}

.benefit-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(34, 197, 94, 0.22);
  border: 1px solid rgba(34, 197, 94, 0.45);
  color: #86efac;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon.whatsapp-icon-bg {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.55);
  color: #25D366;
}

.benefit-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.benefit-title {
  font-size: 11px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.benefit-sub {
  font-size: 9px;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.poster-action-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   SLIDE 7: TALK TO TARIADS — DOMINANT HERO PHONE NUMBER & ACTIONS
   ========================================================================== */
.poster-contact-hero-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
}

.contact-comm-backdrop {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.comm-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(245, 158, 11, 0.28);
}

.comm-pulse-ring.ring-1 {
  width: 130px;
  height: 130px;
}

.comm-pulse-ring.ring-2 {
  width: 220px;
  height: 90px;
  border-color: rgba(34, 197, 94, 0.25);
  border-radius: 50px;
}

.comm-bubble-accent {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 80, 40, 0.85);
  border: 1px solid rgba(245, 158, 11, 0.6);
  color: var(--tari-gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.comm-bubble-accent.left {
  left: 6px;
  top: 4px;
}

.comm-bubble-accent.right {
  right: 6px;
  bottom: 4px;
}

.hero-phone-dominant-card {
  width: 100%;
  max-width: 320px;
  position: relative;
  z-index: 5;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.22) 0%, rgba(0, 104, 55, 0.55) 100%);
  border: 2px solid var(--tari-gold-bright);
  border-radius: 16px;
  padding: 10px 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 25px rgba(245, 158, 11, 0.25);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s;
}

.hero-phone-dominant-card:hover,
.hero-phone-dominant-card:active {
  transform: scale(0.985);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 158, 11, 0.4);
}

.phone-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: var(--tari-gold-bright);
}

.phone-pulse-orb {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseDot 1.4s infinite;
}

.phone-hero-digits {
  font-family: var(--tari-font-heading);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 1.8px;
  color: #ffffff;
  line-height: 1.1;
  margin: 3px 0 2px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 0 25px rgba(245, 158, 11, 0.4);
}

.phone-hero-cta-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  color: #86efac;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-services-quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  width: 100%;
}

.contact-quad-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.quad-dot {
  color: var(--tari-gold-bright);
  font-weight: 900;
  font-size: 11px;
}

/* Three Clear Action Buttons */
.talk-action-buttons-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.btn-talk-action-whatsapp {
  width: 100%;
  height: 44px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--tari-font-heading);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}

.btn-talk-action-whatsapp:active {
  transform: scale(0.975);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.talk-secondary-buttons-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: 100%;
}

.btn-talk-action-call {
  height: 40px;
  background: linear-gradient(135deg, var(--tari-gold-bright) 0%, var(--tari-gold) 100%);
  color: #000000;
  border-radius: 11px;
  text-decoration: none;
  font-family: var(--tari-font-heading);
  font-size: 12.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
  transition: transform 0.2s ease;
}

.btn-talk-action-call:active {
  transform: scale(0.975);
}

.btn-talk-action-visit {
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  border-radius: 11px;
  text-decoration: none;
  font-family: var(--tari-font-heading);
  font-size: 12.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-talk-action-visit:active {
  transform: scale(0.975);
  background: rgba(255, 255, 255, 0.22);
}

/* ==========================================================================
   SLIDE 8: FINAL ACTION / QR CODE HERO POSTER
   ========================================================================== */
.poster-qr-hero-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
}

.poster-qr-portal-card {
  position: relative;
  width: 100%;
  max-width: 250px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 50, 25, 0.45) 100%);
  border: 1.5px solid rgba(245, 158, 11, 0.6);
  border-radius: 18px;
  padding: 12px 14px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 0 30px rgba(0, 104, 55, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s;
}

.poster-qr-portal-card:hover,
.poster-qr-portal-card:active {
  transform: scale(0.985);
  border-color: var(--tari-gold-bright);
}

.qr-target-reticle {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--tari-gold-bright);
  border-style: solid;
}

.qr-target-reticle.top-left {
  top: 6px;
  left: 6px;
  border-width: 2.5px 0 0 2.5px;
  border-top-left-radius: 6px;
}

.qr-target-reticle.top-right {
  top: 6px;
  right: 6px;
  border-width: 2.5px 2.5px 0 0;
  border-top-right-radius: 6px;
}

.qr-target-reticle.bottom-left {
  bottom: 6px;
  left: 6px;
  border-width: 0 0 2.5px 2.5px;
  border-bottom-left-radius: 6px;
}

.qr-target-reticle.bottom-right {
  bottom: 6px;
  right: 6px;
  border-width: 0 2.5px 2.5px 0;
  border-bottom-right-radius: 6px;
}

.qr-render-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 8px;
  width: 136px;
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.poster-vector-qr {
  width: 100%;
  height: 100%;
}

.qr-destination-badge {
  margin-top: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.qr-url-title {
  font-family: var(--tari-font-heading);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--tari-gold-bright);
  text-transform: uppercase;
}

.qr-url-sub {
  font-size: 9px;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: 0.2px;
  margin-top: 1px;
}

/* Compact Elegant Social Media Footer */
.poster-social-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social-footer-label {
  font-size: 8.5px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
}

.social-footer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  width: 100%;
}

.social-footer-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 5px 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 0;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.social-footer-chip:hover,
.social-footer-chip:active {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(245, 158, 11, 0.5);
}

.social-chip-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-chip-icon.tiktok-bg {
  background: #000000;
  color: #25f4ee;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-chip-icon.instagram-bg {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #ffffff;
}

.social-chip-icon.facebook-bg {
  background: #1877f2;
  color: #ffffff;
}

.social-chip-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.social-platform-name {
  font-size: 8.5px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.social-handle {
  font-size: 7.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   ACCESSIBILITY: PREFERS-REDUCED-MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .billboard-slide {
    transform: none !important;
    transition: opacity 0.3s ease !important;
  }

  .billboard-slide .slide-bg-media,
  .billboard-slide.active .slide-bg-media {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }

  .billboard-slide .slide-tag-pill,
  .billboard-slide .billboard-headline > span,
  .billboard-slide .billboard-subtext,
  .billboard-slide .mention-pills-row,
  .billboard-slide .trust-badges-bar,
  .billboard-slide .btn-billboard-cta,
  .billboard-slide .talk-support-chips-row,
  .billboard-slide .talk-hero-phone-container,
  .billboard-slide .talk-action-buttons-wrap,
  .billboard-slide .talk-social-trio-row,
  .billboard-slide .talk-trust-sub-line,
  .billboard-slide .poster-visual-anchor,
  .billboard-slide .poster-message-group,
  .billboard-slide .poster-contact-hero-wrap,
  .billboard-slide .contact-services-quad,
  .billboard-slide .poster-qr-subhook,
  .billboard-slide .poster-qr-hero-wrap,
  .billboard-slide .poster-action-group,
  .billboard-slide .poster-social-footer {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
}


