/*--------------------------------------------------------------
    Xstream IPTV — Clean Theme
    Hero Image: FULL VISIBILITY - NO OVERLAY, NO OPACITY
    NO SHADOWS on any UI elements
    NAVBAR: STICKY with 100px logo, FULLY RESPONSIVE HAMBURGER
    MOBILE MENU: Opens directly BELOW navbar (not beside) on max-width:991px
    Customer Plan: 3 cards row 1, 2 cards row 2, ALL CARDS SAME FIXED SIZE
    FEATURE ELEMENTS: INCREASED SIZE (larger icons and text)
    FOOTER: RED THEME (background, links, headings)
    FOOTER IMAGE: NO FILTER
    COPYRIGHT: Project name highlighted
    ALL ORIGINAL CONTENT PRESERVED EXACTLY
    --------------------------------------------------------------*/

:root {
  --x-white: #FFFFFF;
  --x-offwhite: #F8FAFF;
  --x-light-bg: #F1F5F9;
  --x-red: #E11D2E;
  --x-red-dark: #B91C1C;
  --x-dark: #0F172A;
  --x-gray: #475569;
  --x-gray-light: #64748B;
  --x-teal: #0F766E;
  --x-gold: #D97706;
  --x-border: #E2E8F0;
  --x-transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--x-offwhite);
  color: var(--x-dark);
  overflow-x: hidden;
  line-height: 1.5;
}

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

.elegant-spinner {
  width: 56px;
  height: 56px;
  border: 3px solid var(--x-border);
  border-top: 3px solid var(--x-red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

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

/* Navbar - STICKY with 100px logo */
.navbar-xstream {
  background: var(--x-white);
  border-bottom: 1px solid var(--x-border);
  padding: 0.5rem 2rem;
  position: relative;
}

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

/* Custom toggler button styling */
.navbar-toggler-custom {
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.navbar-toggler-custom:focus {
  outline: none;
}

.navbar-toggler-custom .fa-bars {
  font-size: 1.8rem;
  color: var(--x-red);
  transition: var(--x-transition);
}

.navbar-toggler-custom:hover .fa-bars {
  color: var(--x-red-dark);
}

.nav-link-xstream {
  font-weight: 600;
  color: var(--x-gray);
  margin: 0 0.2rem;
  padding: 0.6rem 1.2rem !important;
  border-radius: 50px;
  transition: var(--x-transition);
  font-size: 0.95rem;
}

.nav-link-xstream:hover,
.nav-link-xstream.active {
  color: var(--x-red);
  background: rgba(225, 29, 46, 0.08);
}

/* ========== MOBILE MENU FIX - OPENS BELOW NAVBAR ========== */
@media (max-width: 991px) {
  .navbar-xstream {
    position: relative;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--x-white);
    padding: 1rem;
    border-radius: 0 0 20px 20px;
    border: 1px solid var(--x-border);
    border-top: none;
    z-index: 1050;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .nav-link-xstream {
    text-align: center;
    margin: 0.3rem 0;
  }

  .navbar-nav {
    margin-bottom: 1rem;
  }

  .d-flex.gap-2 {
    justify-content: center;
  }
}

/* Desktop navbar - unchanged */
@media (min-width: 992px) {
  .navbar-collapse {
    background: transparent;
    position: static;
    padding: 0;
    border: none;
    box-shadow: none;
  }
}

.btn-prime,
.btn-trial {
  padding: 0.6rem 1.8rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--x-transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
}

.btn-prime {
  background: var(--x-red);
  color: white;
}

.btn-prime:hover {
  background: var(--x-red-dark);
  transform: translateY(-2px);
  color: white;
}

.btn-trial {
  background: var(--x-dark);
  color: white;
}

.btn-trial:hover {
  background: #1E293B;
  transform: translateY(-2px);
  color: white;
}

.btn-sm {
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
}

/* HERO SECTION - NO OVERLAY */
.hero-xstream {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  backdrop-filter: blur(8px);
  padding: 2.5rem;
  border-radius: 48px;
}

.hero-badge {
  display: inline-block;
  background: rgba(225, 29, 46, 0.12);
  padding: 0.45rem 1.6rem;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--x-red);
  border: 1px solid rgba(225, 29, 46, 0.2);
}

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 4.6rem;
  font-weight: 800;
  color: #ffabe0;
  margin: 1.2rem 0;
  line-height: 1.2;
}

.hero-sub {
  color: #a8fbdd;
  font-size: 1.25rem;
  letter-spacing: 3px;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.08rem;
  color: #ffffff;
  max-width: 700px;
  margin: 1.5rem auto;
}

/* Stats */
.stats-glass {
  background: var(--x-white);
  border-radius: 100px;
  padding: 1.2rem 2rem;
  margin: 2rem auto;
  border: 1px solid var(--x-border);
}

.stat-number {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--x-red);
}

/* Glass Card */
.glass-card {
  background: var(--x-white);
  border-radius: 40px;
  padding: 2rem;
  border: 1px solid var(--x-border);
  transition: var(--x-transition);
}

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

/* App Cards */
.app-card {
  background: var(--x-white);
  border-radius: 32px;
  padding: 1.8rem 1rem;
  text-align: center;
  transition: var(--x-transition);
  border: 1px solid var(--x-border);
  height: 100%;
}

.app-card:hover {
  transform: translateY(-5px);
  border-color: var(--x-red);
}

.app-icon {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
}

.btn-app {
  background: transparent;
  border: 1.5px solid var(--x-red);
  color: var(--x-red);
  border-radius: 40px;
  padding: 0.35rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 0.2rem;
  transition: var(--x-transition);
}

.btn-app:hover {
  background: var(--x-red);
  color: white;
}

/* Customer Plan Cards */
.pricing-card {
  background: var(--x-white);
  border-radius: 32px;
  padding: 2rem 1.8rem;
  border: 1px solid var(--x-border);
  transition: var(--x-transition);
  height: 100%;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--x-red);
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--x-red);
  line-height: 1;
}

.price-period {
  color: var(--x-gray);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  flex-grow: 1;
}

.price-features li {
  margin: 0.85rem 0;
  color: var(--x-gray);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.price-features li i {
  color: var(--x-teal);
  width: 20px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pricing-card .btn-prime {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

@media (min-width: 992px) {
  .pricing-card {
    min-height: 540px;
  }
}

@media (max-width: 991px) {
  .pricing-card {
    min-height: auto;
  }
}

/* Features Section - Increased Size */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin: 3rem 0;
}

.feature-item {
  text-align: center;
  transition: var(--x-transition);
  cursor: pointer;
}

.feature-item:hover {
  transform: translateY(-8px);
}

.feature-item img {
  width: 120px;
  height: 120px;
  border-radius: 40px;
  background: var(--x-white);
  padding: 1.2rem;
  border: 1px solid var(--x-border);
  object-fit: contain;
  transition: var(--x-transition);
}

.feature-item:hover img {
  border-color: var(--x-red);
  transform: scale(1.05);
}

.feature-item p {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--x-dark);
}

/* FAQ */
.faq-item {
  background: var(--x-white);
  margin-bottom: 1rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--x-border);
}

.faq-question {
  padding: 1.3rem 1.8rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--x-dark);
  transition: var(--x-transition);
}

.faq-question:hover {
  background: rgba(225, 29, 46, 0.04);
  color: var(--x-red);
}

.faq-answer {
  padding: 0 1.8rem 1.3rem 1.8rem;
  color: var(--x-gray-light);
  line-height: 1.6;
  display: none;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--x-dark);
}

.section-underline {
  width: 100px;
  height: 4px;
  background: var(--x-red);
  margin: 1rem auto 0;
  border-radius: 4px;
}

/* ========== FOOTER - RED THEME ========== */
.footer-premium {
  background: linear-gradient(135deg, #E11D2E 0%, #B91C1C 100%);
  border-top: none;
  padding: 3.5rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-heading {
  color: var(--x-white);
  margin-bottom: 1.3rem;
  font-size: 1.15rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--x-white);
  border-radius: 3px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--x-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--x-white);
  transform: translateX(5px);
}

.footer-premium .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.footer-premium p,
.footer-premium .text-center p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-premium a {
  color: var(--x-white);
  text-decoration: none;
  font-weight: 600;
}

.footer-premium a:hover {
  text-decoration: underline;
}

/* Footer image - NO FILTER */
.footer-premium .footer-img {
  max-width: 100%;
  border-radius: 20px;
}

/* Highlight project name in copyright */
.copyright-highlight {
  color: #FFD700;
  font-weight: 800;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/* Floating Elements */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25D366;
  padding: 12px 24px;
  border-radius: 60px;
  color: white;
  font-weight: 700;
  z-index: 99;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--x-transition);
}

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

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--x-red);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  opacity: 0;
  transition: 0.25s;
  text-decoration: none;
  color: white;
  z-index: 99;
}

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

.back-to-top:hover {
  background: var(--x-red-dark);
  color: white;
}

/* Utilities */
.rounded-xl {
  border-radius: 32px;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-xstream {
    padding: 6rem 1rem 3rem;
  }

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

  .stats-glass {
    border-radius: 40px;
    padding: 1rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

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

  .feature-item p {
    font-size: 0.9rem;
  }

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


html,
body {
  overflow-x: hidden;
}

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