/* ============================================
       SIKH VANI TV - COMPLETE CSS
       Logo: 100px | Hero Image: Full Opacity
       Customer Plans: Increased Width
       Feature Elements: Larger Size
       Footer: Increased Size | Footer Image: 250px
       Footer Arrows: Left Side
       All Original Content Preserved
    ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #FEF9E6;
  color: #1A2C3E;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

/* ===== SPINNER ===== */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FEF9E6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

.premium-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 140, 66, 0.2);
  border-top: 4px solid #FF8C42;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ===== NAVBAR ===== */
.navbar-flow {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 243, 224, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.navbar-flow.scrolled {
  background: rgba(26, 44, 62, 0.98);
  backdrop-filter: blur(12px);
  padding: 0.25rem 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.navbar-flow.scrolled .nav-link-flow {
  color: #ffffff !important;
}

.navbar-flow.scrolled .navbar-brand-flow img {}

.navbar-brand-flow img {
  height: 100px;
  width: auto;
  transition: all 0.2s;
}

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

.nav-link-flow {
  font-weight: 500;
  color: #1A2C3E;
  margin: 0 0.75rem;
  transition: 0.2s;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link-flow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #FF8C42;
  transition: 0.2s;
}

.nav-link-flow:hover::after,
.nav-link-flow.active::after {
  width: 70%;
}

.nav-link-flow:hover,
.nav-link-flow.active {
  color: #FF8C42 !important;
}

.navbar-toggler-flow {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #1A2C3E;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-flow-primary {
  background: linear-gradient(135deg, #FF8C42, #E6731F);
  color: white;
  border: none;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.btn-flow-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 66, 0.4);
  color: white;
}

.btn-flow-outline {
  background: transparent;
  border: 1.5px solid #FF8C42;
  color: #E6731F;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  font-size: 0.9rem;
}

.btn-flow-outline:hover {
  background: #FF8C42;
  color: white;
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-flow {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 2rem 80px;
  background: linear-gradient(145deg, #FFF3E0 0%, #FDEBD0 100%);
  overflow: hidden;
}

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

.hero-content-flow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
  background: rgba(255, 243, 224, 0.85);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 32px;
  border: 1px solid rgba(255, 140, 66, 0.2);
}

.hero-title-flow {
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  background: linear-gradient(135deg, #1A2C3E, #FF8C42);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.hero-sub-flow {
  font-size: 1.6rem;
  color: #E6731F;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-desc-text {
  font-size: 1rem;
  color: #2C3E50;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.stats-flow {
  background: white;
  border-radius: 60px;
  padding: 2rem;
  margin-top: -2rem;
  position: relative;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
}

.stat-number-flow {
  font-size: 2rem;
  font-weight: 800;
  color: #1A2C3E;
}

.text-muted-light {
  color: #6c757d;
  font-size: 0.9rem;
}

/* ===== GLASS CARD ===== */
.glass-card-flow {
  background: rgba(255, 255, 245, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(255, 140, 66, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.glass-card-flow:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

/* ===== APP CARDS ===== */
.app-card-flow {
  background: white;
  border-radius: 1.5rem;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #ffe0b5;
}

.app-card-flow:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.app-icon-flow {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 0.8rem;
}

.btn-app-flow {
  display: inline-block;
  margin: 0.2rem;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  background: #1A2C3E;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.2s;
}

.btn-app-flow:hover {
  background: #FF8C42;
  color: white;
}

/* ===== CUSTOMER PLAN CARDS - INCREASED WIDTH ===== */
.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;
}

.plan-card-item {
  flex: 0 1 320px;
  min-width: 280px;
}

.plan-card-new {
  background: white;
  border-radius: 2rem;
  padding: 2rem 1.2rem;
  text-align: center;
  transition: 0.2s;
  border: 1px solid #ffd8a8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plan-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

.plan-price-new {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FF8C42;
}

.plan-period-new {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.plan-features-new {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  flex-grow: 1;
}

.plan-features-new li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.plan-features-new li i {
  color: #FF8C42;
  margin-right: 0.6rem;
  width: 18px;
  font-size: 0.85rem;
}

.btn-plan-new {
  background: #1A2C3E;
  color: white;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  font-weight: 500;
  margin-top: 0.5rem;
}

.btn-plan-new:hover {
  background: #FF8C42;
  color: white;
}

/* ===== FEATURE ITEMS - INCREASED SIZE ===== */
.feature-item {
  background: white;
  border-radius: 50%;
  padding: 1.2rem;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}

.feature-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* ===== FOOTER - INCREASED SIZE WITH ARROWS ON LEFT ===== */
.footer-flow {
  background: #1A2C3E;
  color: #ddd;
  padding: 4rem 0 2rem;
  margin-top: 3rem;
}

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

.footer-flow a:hover {
  color: #FF8C42;
}

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

.footer-flow ul {
  list-style: none;
  padding: 0;
}

.footer-flow ul li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
}

.footer-flow ul li i {
  margin-right: 0.6rem;
  font-size: 0.85rem;
  color: #FF8C42;
}

/* FOOTER IMAGE - 250px */
.footer-img-large {
  max-width: 250px;
  width: 100%;
  border-radius: 20px;
  transition: 0.2s;
}

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

/* ===== FAQ SECTION ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item-flow {
  background: white;
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  border-left: 4px solid #FF8C42;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

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

.faq-question-flow i:last-child {
  transition: transform 0.3s;
  color: #FF8C42;
}

.faq-item-flow.active .faq-question-flow i:last-child {
  transform: rotate(180deg);
}

.faq-answer-flow {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item-flow.active .faq-answer-flow {
  max-height: 300px;
  padding: 0 1.5rem 1rem 1.5rem;
}

.faq-answer-flow p {
  color: #6c757d;
  line-height: 1.6;
}

/* ===== FEATURE ROW ===== */
.feature-row-img-flow {
  max-width: 100%;
  max-height: 280px;
  border-radius: 20px;
}

/* ===== SECTION HEADER ===== */
.section-header-flow {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header-flow h2 {
  color: #1A2C3E;
  font-weight: 700;
  font-size: 2.2rem;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float-flow {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: 0.2s;
  text-decoration: none;
}

.whatsapp-float-flow:hover {
  transform: scale(1.1);
  color: white;
}

.back-to-top-flow {
  position: fixed;
  bottom: 2rem;
  left: 5rem;
  background: #FF8C42;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A2C3E;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 99;
  text-decoration: none;
}

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

.back-to-top-flow:hover {
  background: #E6731F;
  color: white;
}

/* ===== UTILITIES ===== */
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-5 {
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

.rounded-4 {
  border-radius: 1rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.d-flex {
  display: flex;
}

.small {
  font-size: 0.875rem;
}

.fw-bold {
  font-weight: 700;
}

.fs-5 {
  font-size: 1.25rem;
}

.fa-2x {
  font-size: 2rem;
}

.ms-2 {
  margin-left: 0.5rem;
}

.ms-3 {
  margin-left: 1rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.px-4 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pt-3 {
  padding-top: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title-flow {
    font-size: 3rem;
  }

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

  .plan-card-item {
    flex: 0 1 300px;
  }
}

@media (max-width: 768px) {
  .hero-title-flow {
    font-size: 2.2rem;
  }

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

  .hero-content-flow {
    padding: 1.2rem;
    margin: 0 1rem;
  }

  .stats-flow {
    border-radius: 40px;
    padding: 1.2rem;
  }

  .stat-number-flow {
    font-size: 1.3rem;
  }

  .section-header-flow h2 {
    font-size: 1.6rem;
  }

  .plan-card-item {
    flex: 0 1 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .feature-item {
    width: 75px;
    height: 75px;
    padding: 0.8rem;
  }

  .feature-item img {
    width: 45px;
    height: 45px;
  }

  .whatsapp-float-flow {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .back-to-top-flow {
    right: 4rem;
    width: 40px;
    height: 40px;
  }

  .navbar-flow .container-fluid {
    padding: 0 1rem !important;
  }

  .navbar-brand-flow img {
    height: 70px !important;
  }

  .navbar-flow.scrolled .navbar-brand-flow img {
    height: 55px !important;
  }

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

@media (max-width: 480px) {
  .hero-flow {
    padding: 120px 1rem 50px;
  }

  .nav-link-flow {
    font-size: 0.85rem;
    margin: 0 0.4rem;
  }

  .btn-flow-primary,
  .btn-flow-outline {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

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

html,
body {
  overflow-x: hidden;
}

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