/* ============================================
       NOOR VISION TV - FULL SCREEN HERO + LARGE FOOTER
       Fonts: Poppins + Playfair Display
       Colors: Dark Blue (#0A2540) & Golden Yellow (#E8A317)
       Navbar Logo: 120px | Footer Image: 250px
       All original content preserved
    ============================================ */

:root {
  --noor-blue-dark: #0A2540;
  --noor-blue-deep: #06182C;
  --noor-blue-mid: #0F3B5C;
  --noor-gold: #E8A317;
  --noor-gold-dark: #C58A12;
  --noor-gold-light: #F0B83A;
  --noor-white: #FFFFFF;
  --noor-bg-light: #F5F7FA;
  --noor-text-dark: #1A2C3E;
  --noor-text-gray: #5A6E7C;
  --noor-shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
  --noor-shadow-md: 0 15px 35px -10px rgba(0, 0, 0, 0.08);
  --noor-shadow-lg: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--noor-bg-light);
  color: var(--noor-text-dark);
  overflow-x: hidden;
}

/* Headings with Playfair Display */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title-flow,
.hero-sub-flow,
.section-header-flow h2,
.plan-price-new,
.stat-number-flow {
  font-family: 'Playfair Display', serif;
}

/* Premium Spinner */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--noor-bg-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-spinner {
  width: 56px;
  height: 56px;
  border: 3px solid rgba(232, 163, 23, 0.15);
  border-top-color: var(--noor-gold);
  border-right-color: var(--noor-blue-dark);
  border-radius: 50%;
  animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========== NAVIGATION ========== */
.navbar-flow {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--noor-gold);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-flow.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--noor-shadow-sm);
}

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

.navbar-brand-flow img:hover {
  transform: scale(1.02);
}

.nav-link-flow {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--noor-blue-dark) !important;
  margin: 0 0.15rem;
  padding: 0.6rem 1.2rem !important;
  border-radius: 50px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: -0.2px;
}

.nav-link-flow:hover,
.nav-link-flow.active {
  background: var(--noor-gold);
  color: var(--noor-blue-dark) !important;
  box-shadow: 0 4px 12px rgba(232, 163, 23, 0.25);
}

.btn-flow-primary {
  background: var(--noor-blue-dark);
  color: white;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(10, 37, 64, 0.2);
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}

.btn-flow-primary:hover {
  background: var(--noor-blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(10, 37, 64, 0.25);
  color: white;
}

.btn-flow-outline {
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--noor-gold);
  color: var(--noor-blue-dark);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-block;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
}

.btn-flow-outline:hover {
  background: var(--noor-gold);
  border-color: var(--noor-gold);
  color: var(--noor-blue-dark);
  transform: translateY(-2px);
}

.navbar-toggler-flow {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--noor-blue-dark);
  cursor: pointer;
}

/* ========== FULL SCREEN HERO SECTION ========== */
.hero-flow {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.75), rgba(10, 37, 64, 0.65));
  overflow: hidden;
  margin-top: 0;
}

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

.hero-content-flow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(3px);
  border-radius: 40px;
  padding: 3rem 2rem;
}

.hero-title-flow {
  font-size: 4.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-sub-flow {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--noor-gold);
  margin-bottom: 1.2rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-desc-text {
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.92);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.05rem;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-flow .btn-flow-primary {
  background: var(--noor-gold);
  color: var(--noor-blue-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-flow .btn-flow-primary:hover {
  background: var(--noor-gold-dark);
  color: var(--noor-blue-dark);
}

.hero-flow .btn-flow-outline {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--noor-gold);
  color: var(--noor-blue-dark);
}

.hero-flow .btn-flow-outline:hover {
  background: var(--noor-gold);
  color: var(--noor-blue-dark);
}

/* ========== STATS SECTION ========== */
.stats-flow {
  background: var(--noor-white);
  border-radius: 70px;
  padding: 2rem 2.5rem;
  margin-top: -3rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--noor-shadow-md);
  border: 1px solid rgba(232, 163, 23, 0.2);
  position: relative;
  z-index: 5;
}

.stat-number-flow {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--noor-blue-dark);
  display: block;
}

.text-muted-light {
  font-family: 'Poppins', sans-serif;
  color: var(--noor-text-gray);
  font-weight: 500;
  font-size: 0.9rem;
}

.glass-card-flow {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 36px;
  padding: 2.2rem;
  border: 1px solid rgba(232, 163, 23, 0.25);
  box-shadow: var(--noor-shadow-md);
  transition: transform 0.2s;
}

.glass-card-flow:hover {
  transform: translateY(-3px);
}

/* ========== APP CARDS ========== */
.app-card-flow {
  background: var(--noor-white);
  border-radius: 32px;
  padding: 1.6rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--noor-shadow-sm);
  border: 1px solid rgba(232, 163, 23, 0.2);
  height: 100%;
}

.app-card-flow:hover {
  transform: translateY(-6px);
  border-color: var(--noor-gold);
  box-shadow: var(--noor-shadow-lg);
}

.app-icon-flow {
  width: 150px;
  margin-bottom: 1rem;
}

.app-card-flow h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--noor-blue-dark);
  margin-bottom: 0.8rem;
}

.btn-app-flow {
  background: #F0F2F5;
  border: none;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.75rem;
  margin: 4px;
  display: inline-block;
  text-decoration: none;
  color: var(--noor-blue-dark);
  font-weight: 600;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}

.btn-app-flow:hover {
  background: var(--noor-gold);
  color: var(--noor-blue-dark);
}

/* ========== PLAN CARDS ========== */
.plan-card-new {
  background: var(--noor-white);
  border-radius: 36px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--noor-shadow-md);
  border: 1px solid rgba(232, 163, 23, 0.25);
  transition: all 0.3s ease;
  height: 100%;
}

.plan-card-new:hover {
  transform: translateY(-6px);
  border-color: var(--noor-gold);
  box-shadow: var(--noor-shadow-lg);
}

.plan-price-new {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--noor-blue-dark);
}

.plan-period-new {
  font-family: 'Poppins', sans-serif;
  color: var(--noor-text-gray);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.plan-features-new {
  text-align: left;
  padding-left: 0;
  list-style: none;
  margin-top: 1.2rem;
}

.plan-features-new li {
  font-family: 'Poppins', sans-serif;
  padding: 6px 0;
  color: var(--noor-text-gray);
  font-size: 0.9rem;
}

.plan-features-new li i {
  color: var(--noor-gold);
  margin-right: 10px;
  font-size: 0.85rem;
}

.btn-plan-new {
  background: var(--noor-gold);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  color: var(--noor-blue-dark);
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.25s;
  width: 100%;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

.btn-plan-new:hover {
  background: var(--noor-gold-dark);
  color: var(--noor-blue-dark);
  transform: translateY(-2px);
}

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

.plan-card-item {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
}

/* ========== FAQ ========== */
.faq-item-flow {
  background: var(--noor-white);
  border-radius: 28px;
  margin-bottom: 1rem;
  border: 1px solid rgba(232, 163, 23, 0.2);
  overflow: hidden;
  transition: all 0.2s;
}

.faq-question-flow {
  font-family: 'Poppins', sans-serif;
  padding: 1.3rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  background: #FAFCFE;
  transition: background 0.2s;
  color: var(--noor-blue-dark);
  font-size: 1rem;
}

.faq-question-flow:hover {
  background: #FFF8EB;
}

.faq-answer-flow {
  font-family: 'Poppins', sans-serif;
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: 0.35s ease;
  color: var(--noor-text-gray);
  line-height: 1.65;
}

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

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

/* ========== FEATURES ========== */
.feature-item {
  text-align: center;
  transition: all 0.25s;
  background: var(--noor-white);
  padding: 1rem;
  border-radius: 28px;
  box-shadow: var(--noor-shadow-sm);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--noor-shadow-md);
}

.feature-item img {
  width: 150px;
}

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

.section-header-flow h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--noor-blue-dark);
  display: inline-block;
  border-left: 5px solid var(--noor-gold);
  padding-left: 1.2rem;
  font-size: 2rem;
  letter-spacing: -0.3px;
}

/* ========== FEATURE ROWS ========== */
.feature-row-img-flow {
  max-width: 100%;
  border-radius: 36px;
  box-shadow: var(--noor-shadow-md);
}

/* ========== LARGER FOOTER ========== */
.footer-flow {
  background: var(--noor-blue-dark);
  color: #E8EDF2;
  padding: 4rem 0 3rem;
  margin-top: 3.5rem;
}

.footer-flow a {
  font-family: 'Poppins', sans-serif;
  color: var(--noor-gold-light);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 1rem;
}

.footer-flow a:hover {
  color: var(--noor-gold);
  padding-left: 4px;
}

.footer-flow h5 {
  font-family: 'Playfair Display', serif;
  color: var(--noor-gold);
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-size: 1.3rem;
}

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

/* Footer Image increased to 250px */
.footer-img-large {
  width: 250px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

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

.footer-flow .row {
  margin-bottom: 2rem;
}

.footer-flow .border-top {
  border-top: 1px solid rgba(232, 237, 242, 0.2);
  padding-top: 2rem;
}

/* ========== FLOATING BUTTONS ========== */
.whatsapp-float-flow {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  z-index: 99;
  transition: all 0.25s;
  text-decoration: none;
}

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

.back-to-top-flow {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--noor-gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--noor-blue-dark);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  z-index: 99;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.back-to-top-flow:hover {
  background: var(--noor-gold-dark);
  color: var(--noor-blue-dark);
  transform: translateY(-3px);
}

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

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

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

  .stats-flow {
    padding: 1.5rem;
    margin-top: -2rem;
  }

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

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

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

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

  .hero-flow {
    min-height: 90vh;
    height: auto;
    padding: 6rem 1rem 4rem;
  }

  .hero-content-flow {
    padding: 1.5rem;
  }

  .stats-flow .d-flex {
    gap: 1rem;
  }

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

  .plan-card-item {
    min-width: 100%;
  }

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

  .navbar-brand-flow img {
    width: 100px;
  }

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

  .footer-flow h5 {
    font-size: 1.1rem;
  }

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

/* Utility Classes */
.py-5 {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

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

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

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

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

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

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

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

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

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

.gap-2 {
  gap: 0.6rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.gap-5 {
  gap: 2rem;
}

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

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

.small {
  font-size: 0.85rem;
}

.border-top {
  border-top: 1px solid rgba(232, 237, 242, 0.15);
}

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

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

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

.d-flex {
  display: flex;
}

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

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

.justify-content-around {
  justify-content: space-around;
}

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

.flex-md-row-reverse {
  flex-direction: row-reverse;
}

@media (min-width: 768px) {
  .flex-md-row-reverse {
    flex-direction: row-reverse;
  }
}


html,
body {
  overflow-x: hidden;
}

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