/* ----------------------------------------------
    NEO FLOW OTT THEME — RED & SKY BLUE
    Fixed Navbar with 120px logo
    Hamburger menu opens BELOW navbar on mobile
    Desktop layout exact same
    All original content preserved
    ------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  --flow-red: #DC2626;
  --flow-red-dark: #B91C1C;
  --flow-red-soft: #FEE2E2;
  --flow-sky: #0EA5E9;
  --flow-sky-dark: #0284C7;
  --flow-sky-soft: #E0F2FE;
  --flow-primary: #DC2626;
  --flow-primary-dark: #B91C1C;
  --flow-secondary: #0EA5E9;
  --flow-accent: #F97316;
  --flow-dark: #F8FAFC;
  --flow-surface: rgba(255, 255, 255, 0.88);
  --flow-card-bg: rgba(255, 255, 255, 0.95);
  --flow-border: rgba(220, 38, 38, 0.15);
  --flow-glow: 0 0 20px rgba(220, 38, 38, 0.12);
  --flow-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.06);
  --flow-text: #1E293B;
  --flow-text-muted: #64748B;

  background: linear-gradient(135deg, #FFF5F5 0%, #F0F9FF 100%);
  color: var(--flow-text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  padding-top: 95px;
}

::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--flow-red);
  border-radius: 10px;
}

/* navbar - fixed on top with larger logo */
.navbar-flow {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #DC2626, #0EA5E9);
  border-image-slice: 1;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-flow.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0.3rem 0;
}

.navbar-brand-flow {
  display: inline-block;
  line-height: 1;
}

.navbar-brand-flow img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(220, 38, 38, 0.2));
  transition: transform 0.2s;
  object-fit: contain;
}

.navbar-nav .nav-link-flow {
  color: #1E293B !important;
  font-weight: 600;
  margin: 0 0.3rem;
  padding: 0.5rem 0.9rem !important;
  border-radius: 40px;
  transition: 0.2s;
  font-size: 0.95rem;
}

@media (min-width: 992px) {
  .navbar-brand-flow img {
    height: 120px;
  }

  /* Desktop: normal inline navbar */
  .navbar-collapse {
    justify-content: flex-end;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 85px;
  }

  .navbar-brand-flow img {
    height: 75px;
  }

  /* Mobile: hamburger menu opens BELOW navbar */
  .navbar-flow .container-fluid {
    flex-wrap: wrap;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 0 0 1.5rem 1.5rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    z-index: 999;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
  }

  .navbar-nav {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
  }

  .navbar-nav .nav-link-flow {
    display: inline-block;
    margin: 0.3rem 0;
    padding: 0.6rem 1rem !important;
    width: auto;
  }

  .navbar-flow .d-flex {
    justify-content: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(220, 38, 38, 0.1);
  }
}

.nav-link-flow:hover,
.nav-link-flow.active {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(14, 165, 233, 0.08));
  color: #DC2626 !important;
}

.btn-flow-primary {
  background: linear-gradient(135deg, #DC2626, #EF4444);
  border: none;
  padding: 0.5rem 1.4rem;
  border-radius: 40px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.btn-flow-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #B91C1C, #DC2626);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
  color: white;
}

.btn-flow-outline {
  background: transparent;
  border: 1.5px solid #DC2626;
  padding: 0.5rem 1.4rem;
  border-radius: 40px;
  font-weight: 600;
  color: #B91C1C;
  text-decoration: none;
  transition: 0.2s;
}

.btn-flow-outline:hover {
  background: rgba(220, 38, 38, 0.08);
  border-color: #EF4444;
  color: #DC2626;
}

.navbar-toggler-flow {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 40px;
  padding: 0.4rem 0.9rem;
  color: #DC2626;
}

/* Hero Section */
.hero-flow {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 5rem 4rem;
  overflow: hidden;
}

.hero-bg-flow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

.hero-content-flow {
  position: relative;
  z-index: 2;
  max-width: 650px;
  text-align: left;
  background: transparent;
  padding: 2rem;
  margin-left: 2rem;
}

.hero-title-flow {
  font-size: 4rem;
  font-weight: 800;
  background: #0EA5E9;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  text-shadow: 8px 8px 2px rgb(255 255 255 / 10%);
}

.hero-sub-flow {
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-desc-text {
  color: white;
  margin-top: 1rem;
  line-height: 1.6;
  font-size: 1.05rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  padding: 1rem;
  border-radius: 1rem;
  display: inline-block;
}

@media (max-width: 992px) {
  .hero-flow {
    justify-content: center;
    padding: 2rem 1.5rem 4rem;
  }

  .hero-content-flow {
    text-align: center;
    margin-left: 0;
    max-width: 90%;
    padding: 1rem;
  }

  .hero-title-flow {
    font-size: 2.8rem;
  }

  .hero-sub-flow {
    font-size: 1.2rem;
  }
}

/* stats */
.stats-flow {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 60px;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  border: 1px solid rgba(220, 38, 38, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.stat-number-flow {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #DC2626, #0EA5E9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-card-flow {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-radius: 2rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 2rem;
  transition: 0.3s;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

/* Download App Cards */
.app-card-flow {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(220, 38, 38, 0.15);
  transition: 0.25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.app-card-flow:hover {
  transform: translateY(-5px);
  border-color: #DC2626;
  box-shadow: 0 18px 30px -12px rgba(220, 38, 38, 0.2);
  background: #FEFEFE;
}

.app-icon-flow {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.btn-app-flow {
  background: rgba(220, 38, 38, 0.08);
  border-radius: 40px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.25rem;
  display: inline-block;
  text-decoration: none;
  color: #B91C1C;
}

/* Customer Plan Cards */
.plan-card-new {
  background: white;
  border-radius: 2rem;
  padding: 2rem 1.8rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.15);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plan-card-new:hover {
  transform: translateY(-8px);
  border-color: #DC2626;
  box-shadow: 0 25px 35px -12px rgba(220, 38, 38, 0.25);
}

.plan-price-new {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #DC2626, #0EA5E9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.plan-period-new {
  color: #64748B;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #E2E8F0;
  display: inline-block;
  padding-bottom: 0.4rem;
}

.plan-features-new {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  text-align: left;
  flex: 1;
}

.plan-features-new li {
  font-size: 0.95rem;
  padding: 0.6rem 0;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features-new li i {
  color: #DC2626;
  font-size: 0.85rem;
  width: 20px;
}

.btn-plan-new {
  background: linear-gradient(135deg, #DC2626, #EF4444);
  border: none;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  transition: 0.2s;
  font-size: 1rem;
}

.btn-plan-new:hover {
  background: linear-gradient(135deg, #B91C1C, #DC2626);
  transform: translateY(-2px);
  color: white;
}

.plan-card-item {
  flex: 0 0 auto;
  width: 320px;
}

.plans-row-first {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.plans-row-last {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .plan-card-item {
    width: 280px;
  }

  .plan-card-new {
    padding: 1.5rem 1.2rem;
  }

  .plan-price-new {
    font-size: 2.5rem;
  }

  .plan-features-new li {
    font-size: 0.85rem;
    padding: 0.45rem 0;
  }
}

@media (max-width: 576px) {
  .plan-card-item {
    width: 100%;
    max-width: 320px;
  }
}

.faq-item-flow {
  background: white;
  border-radius: 1.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(220, 38, 38, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-question-flow {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FAFAFE;
  color: #1E293B;
}

.faq-question-flow span i {
  color: #DC2626;
  margin-right: 8px;
}

.faq-answer-flow {
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: #64748B;
  display: none;
}

.faq-item-flow.active .faq-answer-flow {
  display: block;
}

/* Footer - RED COLOR THEME */
.footer-flow {
  background: #7F1D1D;
  background: linear-gradient(135deg, #991B1B 0%, #7F1D1D 100%);
  color: #FEE2E2;
  border-top: 3px solid #F87171;
  padding: 4rem 0 3rem;
  margin-top: 4rem;
  font-size: 1rem;
}

.footer-flow .container {
  max-width: 1320px;
}

.footer-flow h5 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: #FECACA;
}

.footer-flow ul li {
  margin-bottom: 0.75rem;
}

.footer-flow a {
  color: #FEE2E2;
  text-decoration: none;
  font-size: 1rem;
  transition: 0.2s;
}

.footer-flow a:hover {
  color: #FCA5A5;
  text-decoration: underline;
}

.footer-img-large {
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  transition: transform 0.2s;
}

.footer-img-large:hover {
  transform: scale(1.02);
}

.footer-flow .border-top {
  border-color: #DC2626 !important;
}

.whatsapp-float-flow {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 99;
  text-decoration: none;
}

.back-to-top-flow {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: linear-gradient(135deg, #DC2626, #0EA5E9);
  width: 45px;
  height: 45px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  text-decoration: none;
  z-index: 99;
}

.back-to-top-flow.visible {
  opacity: 1;
  visibility: visible;
}

.section-header-flow {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header-flow h2 {
  font-size: 2.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #DC2626, #0EA5E9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-row-img-flow {
  border-radius: 2rem;
  max-width: 90%;
  padding: 0.4rem;
}

.feature-item img {
  width: 100px;
  height: auto;
  transition: 0.2s;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.feature-item:hover img {
  transform: scale(1.05);
}

.text-muted-light {
  color: #64748B;
}

@media (max-width: 768px) {
  .feature-item img {
    width: 70px;
  }

  .app-icon-flow {
    width: 70px;
  }

  .footer-img-large {
    max-width: 150px;
  }

  .footer-flow {
    padding: 2.5rem 0 2rem;
  }
}


html,
body {
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}