/* GLOBAL STYLES & TYPOGRAPHY */
:root {
  --color-black: #050505;
  --color-dark: #101010;
  --color-darker: #1A1A1A;
  --color-accent: #B21818;
  --color-light: #CCCCCC;
  --font-headline: 'Oswald', sans-serif;
  --font-tagline: 'Playfair Display', serif;
  --font-body: 'Open Sans', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 100%);
  color: var(--color-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headline fonts */
h1, h2, h3, h4, .headline-font {
  font-family: var(--font-headline);
  letter-spacing: 2px;
  font-weight: 600;
}

.subhead-font, .tagline-font, .cinematic-quote {
  font-family: var(--font-tagline);
}

/* Utility */
.text-red {
  color: var(--color-accent) !important;
}

.bg-dark {
  background-color: var(--color-dark) !important;
}

.bg-darker {
  background-color: var(--color-darker) !important;
}

.py-6 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.mb-6 {
  margin-bottom: 4rem;
}

/* NAV BAR */
.cinematic-nav {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(178, 24, 24, 0.2);
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.cinematic-nav .navbar-brand {
  font-size: 1.8rem;
  letter-spacing: 3px;
}

.cinematic-nav .nav-link:hover {
  color: var(--color-accent) !important;
}

.cta-nav {
  border: 1px solid var(--color-accent);
  padding: 5px 15px !important;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.cta-nav:hover {
  background-color: var(--color-accent) !important;
  color: var(--color-black) !important;
}

.act3-logo {
  height: 60px;
  width: auto;
  display: inline-block;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  border-radius: 4px;
}

/* CINEMATIC BUTTONS */
.cinematic-btn {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #FFF;
  padding: 15px 40px;
  border-radius: 3px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(178, 24, 24, 0.4);
}

.cinematic-btn:hover {
  background-color: #D62525;
  border-color: #D62525;
  box-shadow: 0 0 30px rgba(178, 24, 24, 0.7);
  transform: translateY(-3px);
}

.btn-outline-red {
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-outline-red:hover {
  background-color: var(--color-accent);
  color: #FFF;
}

/* SECTION TITLE */
.section-title {
  font-size: 3.5rem;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  text-align: center;
  width: 100%;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
  margin: 10px auto 0;
  box-shadow: 0 0 10px rgba(178, 24, 24, 0.5);
}

/* CINEMATIC BANNERS */
.cinematic-banner {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 50px 0;
}

.cinematic-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

/* CINEMATIC MOTION CUES */
.view-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.view-on-scroll.fade-in-active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  transform: translateY(30px);
}

.fade-in-left {
  transform: translateX(-30px);
}

.fade-in-right {
  transform: translateX(30px);
}

.fade-in-up.fade-in-active, .fade-in-left.fade-in-active, .fade-in-right.fade-in-active {
  transform: translate(0,0);
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1.0s; }
.delay-6 { transition-delay: 1.2s; }

/* FOOTER */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.footer-logo {
  height: 60px;
  width: auto;
  border-radius: 4px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.footer-link {
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: var(--color-accent) !important;
}

/* ===== VIDEO WITH RED FILTER & FIXED POSITION ===== */
/* FIXED VIDEO BACKGROUND */
.video-hero-fixed {
  position: fixed;
  top: 76px;               /* height of your navbar */
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.3) saturate(1.2) hue-rotate(-10deg) brightness(0.95);
}

/* CONTENT SCROLLS ABOVE VIDEO */
.content-over-video {
  position: relative;
  margin-top: calc(100vh + 76px);   /* pushes content BELOW video */
  z-index: 10;
  background: var(--color-darker);
}

/* OPTIONAL: smooth scroll look */
body {
  background: var(--color-darker);
}

.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 76px;
}

.video-hero.fixed-video {
  position: fixed;
  top: 76px;
  left: 0;
  z-index: 1;
}

.fullscreen-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: sepia(0.3) saturate(1.2) hue-rotate(-10deg) brightness(0.95); /* Reddish filter */
}

/* Content wrapper to push content below video */
.content-wrapper {
  position: relative;
  z-index: 2;
  background: var(--color-darker);
}

/* ===== CONTENT BELOW VIDEO ===== */
.content-below-video {
  background: var(--color-darker);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-headline {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-subhead {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: 2rem;
  font-family: var(--font-headline);
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--color-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.trust-text {
  color: var(--color-light);
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
}

/* MOBILE STICKY CTA */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-darker);
  padding: 1rem;
  z-index: 1000;
  border-top: 1px solid var(--color-accent);
  display: none;
}

.mobile-sticky-cta .cinematic-btn {
  margin: 0;
  width: 100%;
}

/* STRATEGY CARDS */
.strategy-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.strategy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(178, 24, 24, 0.1), transparent);
  transition: left 0.5s ease;
}

.strategy-card:hover::before {
  left: 100%;
}

.strategy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(178, 24, 24, 0.2);
  border-color: var(--color-accent);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.strategy-card h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.strategy-card p {
  color: var(--color-light);
  margin: 0;
}

/* PROCESS STEPS */
.process-steps {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  position: relative;
}

.step-badge {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--color-accent);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.step-content h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.step-content p {
  color: var(--color-light);
  margin: 0;
}

/* PLATFORM CARDS */
.platform-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(178, 24, 24, 0.15);
}

.platform-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.platform-icon {
  font-size: 2.5rem;
  margin-right: 1rem;
}

.platform-card h4 {
  color: #fff;
  margin: 0;
  font-size: 1.4rem;
}

.platform-card p {
  color: var(--color-light);
  margin-bottom: 1.5rem;
}

.platform-stats {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* FINAL CTA */
.final-cta {
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(178, 24, 24, 0.1) 0%, transparent 70%);
}

.cta-headline {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-headline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.cta-subhead {
  font-size: 1.3rem;
  color: var(--color-light);
  margin-bottom: 3rem;
}

.urgency-line {
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  color: var(--color-light);
  font-size: 0.9rem;
}

/* CLICKABLE TILES */
.clickable-tile {
  cursor: pointer;
  transition: all 0.3s ease;
}

.clickable-tile:active {
  transform: scale(0.98);
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: inline-block;
  padding: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--color-accent);
  transform: scale(1.1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .cinematic-banner {
    background-attachment: scroll;
  }
  
  .act3-logo {
    height: 50px;
  }
  
  .hero-headline {
    font-size: 3rem;
  }
  
  .hero-subhead {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .video-hero {
    height: 70vh;
    margin-top: 70px;
  }
  
  .mobile-sticky-cta {
    display: block;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-badge {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hero-cta .btn:last-child {
    margin-bottom: 0;
  }
  
  .section-headline {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
  
  .act3-logo {
    height: 45px;
  }
  
  .video-hero {
    height: 60vh;
    margin-top: 65px;
  }
  
  .hero-headline {
    font-size: 2.5rem;
  }
  
  .section-headline {
    font-size: 2rem;
  }
  
  .cta-headline {
    font-size: 2.5rem;
  }
  
  .strategy-card,
  .platform-card {
    padding: 2rem 1.5rem;
  }
}