/* ===== FULL WORKING INLINE CSS - CHRISTIAN VANI TV THEME ===== */
:root {
  --christ-gold: #D4AF37;
  --christ-deep: #1E2A38;
  --christ-light: #F9F7F3;
  --christ-wine: #8B2C2D;
  --christ-maroon: #6B1D2C;
  --christ-sage: #2C5F2D;
  --christ-cream: #FFF9EF;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--christ-cream);
  overflow-x: hidden;
}

/* Spinner */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--christ-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

.premium-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(212, 175, 55, 0.2);
  border-top: 5px solid var(--christ-gold);
  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%;
  background: rgba(30, 42, 56, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 0.8rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar-flow.scrolled {
  background: var(--christ-deep);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
}

/* Navbar Logo Size - 100px */
.navbar-brand-flow img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-link-flow {
  color: #FFFFFF !important;
  font-weight: 500;
  margin: 0 0.8rem;
  transition: 0.3s;
  position: relative;
  text-decoration: none;
}

.nav-link-flow:hover,
.nav-link-flow.active {
  color: var(--christ-gold) !important;
}

.nav-link-flow:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--christ-gold);
  transition: 0.3s;
}

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

.btn-flow-primary {
  background: var(--christ-gold);
  color: var(--christ-deep);
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-flow-primary:hover {
  background: #c9a53b;
  transform: translateY(-2px);
  color: #1E2A38;
}

.btn-flow-outline {
  background: transparent;
  border: 2px solid var(--christ-gold);
  color: var(--christ-gold);
  padding: 0.6rem 1.8rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-flow-outline:hover {
  background: var(--christ-gold);
  color: var(--christ-deep);
  transform: translateY(-2px);
}

/* Hero */
.hero-flow {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1E2A38 0%, #2C3E50 100%);
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

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

.hero-content-flow {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-flow {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  color: #6B1D2C;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-sub-flow {
  font-size: 1.6rem;
  color: #1A1A2E;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-desc-text {
  color: #0F0F1A;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0.5px 0.5px 1px rgba(255, 255, 255, 0.3);
}

/* Stats */
.stats-flow {
  background: white;
  border-radius: 60px;
  padding: 2rem 2rem;
  margin-top: -3rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
}

.stat-number-flow {
  font-size: 2rem;
  font-weight: 800;
  color: var(--christ-wine);
  font-family: 'Playfair Display', serif;
}

.text-muted-light {
  color: #5a6e7c;
}

/* Glass Card */
.glass-card-flow {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 40px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* App Cards - with increased image size */
.app-card-flow {
  background: white;
  border-radius: 28px;
  padding: 1.5rem 0.8rem;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0e6d2;
}

.app-card-flow:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -12px rgba(139, 44, 45, 0.2);
  border-color: var(--christ-gold);
}

/* Download App Image Size Increased to 120px */
.app-icon-flow {
  height: 120px;
  width: 120px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.btn-app-flow {
  display: inline-block;
  background: var(--christ-sage);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  margin: 0.2rem;
  text-decoration: none;
}

/* Feature Rows */
.feature-row-img-flow {
  max-width: 100%;
  border-radius: 32px;
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

/* Plan Cards - Increased Size */
.plans-row-first,
.plans-row-last {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.plan-card-item {
  flex: 1;
  min-width: 300px;
  max-width: 350px;
}

.plan-card-new {
  background: white;
  border-radius: 32px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #e5d9c6;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.plan-card-new:hover {
  transform: scale(1.02);
  border-color: var(--christ-gold);
  box-shadow: 0 20px 30px -10px rgba(212, 175, 55, 0.2);
}

.plan-price-new {
  font-size: 3rem;
  font-weight: 800;
  color: var(--christ-wine);
}

.plan-period-new {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

.plan-features-new li {
  margin-bottom: 0.9rem;
  font-size: 1rem;
}

.plan-features-new li i {
  color: var(--christ-gold);
  margin-right: 0.5rem;
}

.btn-plan-new {
  background: var(--christ-deep);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 40px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
  font-size: 1rem;
}

.btn-plan-new:hover {
  background: var(--christ-gold);
  color: var(--christ-deep);
}

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

.faq-item-flow {
  background: white;
  border-radius: 20px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #e9e0d3;
}

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

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

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

/* Footer - Increased Size */
.footer-flow {
  background: var(--christ-deep);
  color: #ddd;
  padding: 4rem 0 2rem;
  margin-top: 3rem;
  font-size: 1.05rem;
}

.footer-flow h5 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: var(--christ-gold);
  font-weight: 600;
}

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

.footer-flow a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 1rem;
}

.footer-flow a:hover {
  color: var(--christ-gold);
}

/* Floating Buttons */
.whatsapp-float-flow {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
  text-decoration: none;
}

.back-to-top-flow {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: var(--christ-gold);
  color: var(--christ-deep);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 99;
  text-decoration: none;
}

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

.section-header-flow h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--christ-wine);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Feature Item - 100px size */
.feature-item {
  display: inline-block;
  margin: 0 0.5rem;
}

.feature-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* Footer image size 250px */
.footer-img-large {
  width: 250px;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
}

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

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

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

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

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

  .plan-card-item {
    min-width: 260px;
    max-width: 300px;
  }

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

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

  /* Adjust download app icon size for mobile */
  .app-icon-flow {
    height: 80px;
    width: 80px;
  }
}



html,
body {
  overflow-x: hidden;
}

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