/* Nova IPTV dark theme — inspired layout/colors, original copy */
:root {
  --nv-bg: #000000;
  --nv-bg-2: #0d0d0d;
  --nv-card: #151515;
  --nv-card-2: #1c1c1c;
  --nv-border: #2a2a2a;
  --nv-orange: #FF5E00;
  --nv-orange-2: #FF8001;
  --nv-orange-soft: #f5a524;
  --nv-text: #ffffff;
  --nv-muted: #b8b8b8;
  --nv-muted-2: #8a8a8a;
  --nv-success: #22c55e;
  --nv-radius: 14px;
  --nv-font: 'Cairo', 'El Messiri', sans-serif;
}

html { scroll-behavior: smooth; }
body.nova-dark {
  background: var(--nv-bg);
  color: var(--nv-text);
  font-family: var(--nv-font);
  margin: 0;
  direction: rtl;
  line-height: 1.8;
}
a { color: var(--nv-orange); text-decoration: none; }
a:hover { color: var(--nv-orange-2); }
img { max-width: 100%; height: auto; }

/* Header — match nova-iptv.online */
.nv-nav {
  background: #000000 !important;
  border-bottom: none;
  position: relative;
  z-index: 1000;
  padding: 12px 0;
  box-shadow: none;
}
.nv-nav .container,
.nv-nav .nv-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  direction: ltr; /* logo right, menu button left like reference */
}
.nv-nav .navbar-collapse,
.nv-nav .navbar-nav {
  direction: rtl;
}
.nv-nav .navbar-brand {
  margin: 0;
  padding: 0;
  order: 2;
  line-height: 0;
}
.nv-nav .navbar-logo {
  width: auto;
  height: 52px;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.nv-nav .navbar-toggler {
  order: 1;
  border: none !important;
  border-radius: 50% !important;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  background: #2a2a2a !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}
.nv-nav .navbar-toggler:focus,
.nv-nav .navbar-toggler:hover {
  background: #333 !important;
  box-shadow: none !important;
  outline: none;
}
.nv-nav .navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c8c8c8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e") !important;
}
.nv-nav .navbar-collapse {
  order: 3;
  flex-basis: 100%;
}
.nv-nav .navbar-nav {
  align-items: center;
  gap: 4px;
}
.nv-nav .navbar-nav > li > a,
.nv-nav .navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 14px !important;
  background: transparent !important;
}
.nv-nav .navbar-nav > li > a:hover,
.nv-nav .navbar-nav > li.current-menu-item > a,
.nv-nav .navbar-nav .nav-link:hover,
.nv-nav .navbar-nav .current-menu-item > .nav-link {
  color: #FF5E00 !important;
}

@media (min-width: 992px) {
  .nv-nav .nv-nav-inner {
    flex-wrap: nowrap;
  }
  .nv-nav .navbar-toggler {
    display: none !important;
  }
  .nv-nav .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    order: 1;
    flex: 1;
  }
  .nv-nav .navbar-brand {
    order: 2;
  }
  .nv-nav .navbar-nav {
    margin-right: 0;
    margin-left: auto;
    flex-direction: row;
  }
  .nv-nav .navbar-logo {
    height: 58px;
    max-width: 160px;
  }
}

@media (max-width: 991px) {
  .nv-nav .navbar-collapse {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    margin-top: 12px;
    padding: 8px;
    width: 100%;
  }
  .nv-nav .navbar-nav {
    width: 100%;
  }
  .nv-nav .navbar-nav > li > a {
    text-align: right;
    width: 100%;
  }
}

/* Buttons */
.nv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #000;
  color: #fff !important;
  border: 2px solid var(--nv-orange);
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 800;
  font-size: 16px;
  transition: .25s ease;
}
.nv-btn:hover {
  background: var(--nv-orange);
  color: #fff !important;
  transform: translateY(-2px);
}
.nv-btn-fill {
  background: linear-gradient(135deg, var(--nv-orange), var(--nv-orange-2));
  border-color: transparent;
}
.nv-btn-fill:hover { filter: brightness(1.08); background: linear-gradient(135deg, var(--nv-orange), var(--nv-orange-2)); }

/* Sections */
.nv-section { padding: 70px 0; }
.nv-section-alt { background: var(--nv-bg-2); }
.nv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
}
.nv-eyebrow i { color: var(--nv-orange); }
.nv-title {
  font-family: 'El Messiri', 'Cairo', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 40px);
  margin: 0 0 14px;
  color: #fff;
  text-align: center;
}
.nv-subtitle {
  color: var(--nv-muted);
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
  font-size: 16px;
}
.nv-center { text-align: center; }

/* Hero — match nova-iptv.online (cover bg + overlay content) */
.nv-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 16px 48px;
  background-color: #000;
  background-image: url('../images/hero-promo.webp');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}
.nv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.62) 0%,
      rgba(0,0,0,.28) 38%,
      rgba(0,0,0,.55) 62%,
      rgba(0,0,0,.92) 100%);
  z-index: 0;
}
.nv-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.nv-hero .nv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(0,0,0,.4);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 18px;
}
.nv-hero .nv-eyebrow i {
  color: #FF5E00;
  font-size: 15px;
}
.nv-hero h1 {
  font-family: 'El Messiri', 'Cairo', sans-serif;
  font-size: clamp(30px, 5.5vw, 52px);
  font-weight: 800;
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.nv-hero p {
  color: #ffffff;
  font-size: clamp(15px, 2.2vw, 18px);
  margin: 0 auto 28px;
  max-width: 760px;
  line-height: 1.9;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.nv-hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
}
.nv-hero-actions .nv-btn {
  flex: 1 1 0;
  max-width: 240px;
  min-height: 52px;
  background: #000;
  border: 2px solid #FF5E00;
  border-radius: 10px;
  color: #fff !important;
  font-weight: 800;
  font-size: 16px;
  box-shadow: none;
}
.nv-hero-actions .nv-btn:hover {
  background: #FF5E00;
  color: #fff !important;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .nv-hero {
    padding: 100px 14px 40px;
    background-position: center top;
  }
  .nv-hero-actions {
    gap: 10px;
  }
  .nv-hero-actions .nv-btn {
    max-width: none;
    flex: 1 1 calc(50% - 6px);
    font-size: 14px;
    padding: 12px 8px;
  }
}

@media (min-width: 992px) {
  .nv-hero {
    background-position: center center;
  }
}

/* Stats */
.nv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.nv-stat {
  background: var(--nv-card);
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius);
  padding: 22px 12px;
  text-align: center;
}
.nv-stat .num {
  color: var(--nv-orange);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.1;
}
.nv-stat .label { color: var(--nv-muted); margin-top: 6px; font-weight: 700; }

/* Cards / features */
.nv-grid { display: grid; gap: 18px; }
.nv-grid-3 { grid-template-columns: repeat(3, 1fr); }
.nv-grid-2 { grid-template-columns: repeat(2, 1fr); }
.nv-card {
  background: var(--nv-card);
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius);
  padding: 24px 18px;
  height: 100%;
  transition: .25s ease;
}
.nv-card:hover {
  border-color: var(--nv-orange);
  transform: translateY(-4px);
}
.nv-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255,94,0,.12);
  color: var(--nv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}
.nv-card h3 {
  font-family: 'El Messiri', 'Cairo', sans-serif;
  font-size: 20px;
  margin: 0 0 10px;
  text-align: center;
  color: #fff;
}
.nv-card p {
  margin: 0;
  color: var(--nv-muted);
  text-align: center;
  font-size: 15px;
}

/* Pricing */
.nv-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.nv-tab {
  background: #111;
  border: 1px solid var(--nv-border);
  color: #fff;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 800;
  cursor: pointer;
}
.nv-tab.active {
  background: var(--nv-orange);
  border-color: var(--nv-orange);
}
.nv-price-panels { display: none; }
.nv-price-panels.active { display: block; }
.nv-price {
  background: linear-gradient(180deg, #171717, #101010);
  border: 1px solid var(--nv-border);
  border-radius: 18px;
  padding: 28px 20px;
  height: 100%;
  text-align: center;
  position: relative;
}
.nv-price.hot {
  border-color: var(--nv-orange);
  box-shadow: 0 0 0 1px rgba(255,94,0,.35), 0 20px 40px rgba(255,94,0,.12);
}
.nv-price .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nv-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
}
.nv-price h3 {
  font-family: 'El Messiri', 'Cairo', sans-serif;
  margin: 8px 0 6px;
  font-size: 24px;
}
.nv-price .dur { color: var(--nv-muted); margin-bottom: 10px; }
.nv-price .amount {
  color: var(--nv-orange);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.nv-price-duration {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 22px;
}
.nv-price-months {
  color: var(--nv-orange);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  font-family: 'El Messiri', 'Cairo', sans-serif;
}
.nv-price-period {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.nv-price ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  text-align: right;
}
.nv-price li {
  padding: 8px 0;
  border-bottom: 1px solid #222;
  color: var(--nv-muted);
  font-size: 14px;
}
.nv-price li::before {
  content: "✓";
  color: var(--nv-success);
  margin-left: 8px;
  font-weight: 800;
}

/* Devices / app */
.nv-device-item {
  background: var(--nv-card);
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius);
  padding: 20px;
  text-align: center;
}
.nv-device-item i {
  color: var(--nv-orange);
  font-size: 28px;
  margin-bottom: 10px;
}
.nv-device-item h4 { margin: 0 0 6px; font-size: 17px; }
.nv-device-item p { margin: 0; color: var(--nv-muted); font-size: 13px; }

/* FAQ */
.nv-accordion .accordion-item {
  background: var(--nv-card);
  border: 1px solid var(--nv-border) !important;
  margin-bottom: 10px;
  border-radius: 12px !important;
  overflow: hidden;
}
.nv-accordion .accordion-button {
  background: var(--nv-card);
  color: #fff;
  font-weight: 700;
  box-shadow: none !important;
}
.nv-accordion .accordion-button:not(.collapsed) {
  color: var(--nv-orange);
  background: #181818;
}
.nv-accordion .accordion-button::after { filter: invert(1); }
.nv-accordion .accordion-body {
  background: #121212;
  color: var(--nv-muted);
}

/* Testimonials */
.nv-testimonial {
  background: var(--nv-card);
  border: 1px solid var(--nv-border);
  border-radius: var(--nv-radius);
  padding: 22px;
  height: 100%;
  min-height: 210px;
}
.nv-testimonial .stars { color: var(--nv-orange-soft); margin-bottom: 8px; }
.nv-testimonial .name { font-weight: 800; margin-bottom: 4px; }
.nv-testimonial .meta { color: var(--nv-muted-2); font-size: 13px; margin-bottom: 10px; }
.nv-testimonial p { margin: 0; color: var(--nv-muted); font-size: 14px; }
.nv-reviews-slider .item { padding: 6px 2px 18px; }
.nv-reviews-slider .owl-dots {
  text-align: center;
  margin-top: 8px;
}
.nv-reviews-slider .owl-dot span {
  width: 9px;
  height: 9px;
  margin: 4px;
  background: #333;
  display: inline-block;
  border-radius: 50%;
}
.nv-reviews-slider .owl-dot.active span,
.nv-reviews-slider .owl-dot:hover span {
  background: var(--nv-orange);
}

/* Page hero small */
.nv-page-hero {
  padding: 70px 0 40px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(255,94,0,.18), transparent 55%), #000;
  border-bottom: 1px solid var(--nv-border);
}

/* Footer */
.nv-footer {
  background: #090909;
  border-top: 1px solid var(--nv-border);
  padding: 50px 0 24px;
}
.nv-footer h5 {
  color: var(--nv-orange);
  font-family: 'El Messiri', 'Cairo', sans-serif;
  margin-bottom: 14px;
}
.nv-footer a, .nv-footer p { color: var(--nv-muted); }
.nv-footer a:hover { color: var(--nv-orange); }
.nv-footer ul { list-style: none; padding: 0; margin: 0; }
.nv-footer li { margin-bottom: 8px; }
.nv-footer-bottom {
  border-top: 1px solid var(--nv-border);
  margin-top: 30px;
  padding-top: 18px;
  text-align: center;
  color: var(--nv-muted-2);
  font-size: 14px;
}
.nv-pay-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.nv-pay-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 10px 12px;
  min-height: 64px;
  transition: border-color .2s ease, transform .2s ease;
}
.nv-pay-item:hover {
  border-color: #FF5E00;
  transform: translateY(-2px);
}
.nv-pay-item img {
  height: 42px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  background: transparent !important;
  border-radius: 0;
  padding: 0;
  display: block;
}
@media (max-width: 576px) {
  .nv-pay-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .nv-pay-item {
    min-height: 58px;
    padding: 8px 10px;
  }
  .nv-pay-item img {
    height: 36px;
  }
}

.nv-skip-link {
  position: absolute;
  right: -999px;
  top: 0;
  background: var(--nv-orange);
  color: #fff;
  padding: 10px 16px;
  z-index: 100000;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
}
.nv-skip-link:focus {
  right: 12px;
}

/* Float WA */
.nv-float-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  text-decoration: none !important;
  line-height: 1;
}
.nv-float-wa:hover {
  background: #1ebe57;
  color: #fff !important;
  transform: scale(1.06);
}
.nv-float-wa .nv-wa-svg {
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
}
.nv-float-wa i {
  display: none;
}

/* SEO hub + landing */
.nv-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: var(--nv-muted);
  font-size: 13px;
  margin-bottom: 14px;
}
.nv-breadcrumb a { color: #ddd; text-decoration: none; }
.nv-breadcrumb a:hover { color: var(--nv-orange); }
.nv-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nv-seo-grid-sm {
  grid-template-columns: repeat(3, 1fr);
}
.nv-seo-card {
  display: block;
  background: linear-gradient(180deg, #171717, #101010);
  border: 1px solid var(--nv-border);
  border-radius: 16px;
  padding: 20px 18px;
  text-decoration: none !important;
  color: inherit;
  transition: border-color .2s, transform .2s;
  height: 100%;
}
.nv-seo-card:hover {
  border-color: var(--nv-orange);
  transform: translateY(-3px);
}
.nv-seo-card h2,
.nv-seo-card h3 {
  font-family: 'El Messiri', 'Cairo', sans-serif;
  font-size: 18px;
  color: #fff;
  margin: 0 0 10px;
  text-align: right;
}
.nv-seo-card p {
  color: var(--nv-muted);
  font-size: 13px;
  margin: 0 0 12px;
  text-align: right;
  line-height: 1.7;
}
.nv-seo-card-link {
  color: var(--nv-orange);
  font-size: 13px;
  font-weight: 700;
}
.nv-seo-article {
  max-width: 900px;
  margin: 0 auto;
}
.nv-seo-content {
  color: #cfcfcf;
  text-align: right;
  line-height: 1.9;
  font-size: 16px;
}
.nv-seo-content h2 {
  color: #fff;
  font-family: 'El Messiri', 'Cairo', sans-serif;
  font-size: 26px;
  margin: 28px 0 12px;
}
.nv-seo-content h3 {
  color: #fff;
  font-size: 18px;
  margin: 18px 0 8px;
}
.nv-seo-content a { color: var(--nv-orange); }
.nv-seo-content ul,
.nv-seo-content ol {
  padding-right: 22px;
  margin: 0 0 16px;
}
.nv-seo-content li { margin-bottom: 8px; }
.nv-seo-cta {
  margin-top: 36px;
  padding: 28px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255,94,0,.35);
  background: linear-gradient(180deg, #1a120c, #101010);
  text-align: center;
}
.nv-seo-cta h2 {
  color: #fff;
  font-family: 'El Messiri', 'Cairo', sans-serif;
  font-size: 24px;
  margin: 0 0 10px;
}
.nv-seo-cta p {
  color: var(--nv-muted);
  margin: 0 0 18px;
}

@media (max-width: 991px) {
  .nv-seo-grid,
  .nv-seo-grid-sm { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .nv-seo-grid,
  .nv-seo-grid-sm { grid-template-columns: 1fr; }
}

/* Wow.js / Animate.css — keep layout stable before reveal */
.wow {
  visibility: hidden;
}
.wow.animate__animated {
  visibility: visible;
}

@media (max-width: 991px) {
  .nv-grid-3, .nv-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .nv-grid-3, .nv-grid-2, .nv-stats { grid-template-columns: 1fr; }
  .nv-hero { min-height: 100svh; padding: 90px 14px 40px; }
  .nv-btn { width: auto; }
}
