/* ============================================
       IPTV SMARTERS - OTT / IPTV ENTERTAINMENT THEME
       Navy Blue & Orange | Modern Streaming Platform
       Hero Image Opacity Removed (Full Visibility)
       All content exactly same
    ============================================= */
:root {
  --ott-bg-dark: #0A0E17;
  --ott-bg-light: #F5F7FC;
  --ott-surface: #FFFFFF;
  --ott-card: #FFFFFF;
  --orange-primary: #F97316;
  --orange-dark: #EA580C;
  --orange-soft: #FFF4ED;
  --navy-primary: #1E3A5F;
  --navy-dark: #0F2A46;
  --navy-soft: #E8EEF5;
  --text-dark: #1A1F2E;
  --text-muted: #6B7280;
  --border-light: #E5E9F0;
  --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

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

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

/* Spinner */
#spinner {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.elegant-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(249, 115, 22, 0.2);
  border-top: 4px solid var(--orange-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

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

/* Navbar */
.navbar-elegant {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(0px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid var(--border-light);
  padding: 0.3rem 0;
}

.nav-link-elegant {
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0.25rem;
  padding: 0.6rem 1rem !important;
  border-radius: 40px;
  transition: all 0.2s;
}

.nav-link-elegant:hover,
.nav-link-elegant.active {
  background: var(--orange-soft);
  color: var(--orange-dark) !important;
}

.btn-blue {
  background: var(--navy-primary);
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.5rem 1.3rem;
  border-radius: 40px;
  font-size: 0.85rem;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(30, 58, 95, 0.2);
  text-decoration: none;
  display: inline-block;
}

.btn-blue:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(30, 58, 95, 0.25);
}

.btn-outline-red {
  background: transparent;
  border: 1.5px solid var(--orange-primary);
  color: var(--orange-dark);
  border-radius: 40px;
  padding: 0.5rem 1.3rem;
  font-weight: 600;
  transition: 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-red:hover {
  background: var(--orange-primary);
  color: white;
  border-color: var(--orange-primary);
}

.btn-red {
  background: var(--orange-primary);
  border: none;
  color: white;
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}

.btn-red:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* Hero Section - Image Full Visibility (No Opacity) */
.hero-elegant {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #1A1F2E 0%, #0F1420 100%);
}

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

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

.hero-title-wrapper {
  background: rgba(249, 115, 22, 0.2);
  display: inline-block;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange-primary);
  margin-bottom: 1rem;
}

.main-title-elegant {
  font-size: 4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.title-sub-elegant {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.hero-desc-elegant {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto 2rem auto;
}

/* Stats Block */
.stats-modern {
  background: var(--ott-surface);
  border-radius: 60px;
  padding: 0.8rem 1.5rem;
  margin: -2rem auto 2rem auto;
  max-width: 90%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 0.5rem;
}

.stat-card {
  padding: 0.5rem 1rem;
}

.stat-number-elegant {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--orange-dark);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: #E2E8F0;
}

.whatsapp-stat a {
  color: var(--orange-dark) !important;
  text-decoration: none;
}

/* Glass Card */
.glass-card-elegant {
  background: var(--ott-surface);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

.glass-card-elegant:hover {
  box-shadow: var(--shadow-md);
}

/* App Cards */
.app-card-elegant {
  background: var(--ott-surface);
  border-radius: 28px;
  padding: 1.5rem 0.8rem;
  text-align: center;
  transition: 0.25s;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.app-card-elegant:hover {
  transform: translateY(-5px);
  border-color: var(--orange-primary);
  box-shadow: var(--shadow-sm);
}

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

.btn-app-elegant {
  background: var(--orange-soft);
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange-dark);
  margin: 0.2rem;
  display: inline-block;
  text-decoration: none;
}

.btn-app-elegant:hover {
  background: var(--orange-primary);
  color: white;
}

/* Pricing Cards */
.pricing-card-professional {
  background: var(--ott-surface);
  border-radius: 32px;
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: 0.25s;
  height: 100%;
}

.pricing-card-professional:hover {
  transform: translateY(-5px);
  border-color: var(--navy-primary);
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange-dark);
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-features-elegant li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: #334155;
}

.price-features-elegant li i {
  color: var(--navy-primary);
  margin-right: 8px;
}

/* FAQ */
.faq-item-new {
  background: var(--ott-surface);
  border-radius: 20px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.faq-question-new {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
}

.faq-question-new span i {
  color: var(--orange-primary);
  margin-right: 8px;
}

.faq-answer-new {
  max-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: 0.3s;
  color: var(--text-muted);
}

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

.faq-item-new.active .fa-chevron-down {
  transform: rotate(180deg);
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

/* Footer - Navy Blue Theme */
.footer-elegant {
  background: var(--navy-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-heading-elegant {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

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

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

.footer-links-elegant a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-links-elegant a:hover {
  color: var(--orange-primary);
  padding-left: 4px;
}

.footer-links-elegant li i {
  margin-right: 6px;
  font-size: 0.8rem;
  color: var(--orange-primary);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.highlight-project {
  color: var(--orange-primary);
  font-weight: 700;
}

.highlight-link {
  color: var(--orange-primary);
  text-decoration: none;
  font-weight: 600;
}

.highlight-link:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

/* Floating buttons */
.whatsapp-float-elegant {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 0.7rem 1.2rem;
  border-radius: 40px;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1030;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top-elegant {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--navy-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: 0.2s;
  z-index: 1030;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

@media (max-width:768px) {
  .main-title-elegant {
    font-size: 2.4rem;
  }

  .stats-modern {
    padding: 0.6rem 1rem;
  }

  .hero-content {
    padding: 1rem;
    margin: 0.5rem;
  }
}


html,
body {
  overflow-x: hidden;
}

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