/* ZenaTV Global Stylesheet — cloned from xtremehd-iptv.co.uk dark theme */
:root {
  --bg-dark: #0a0e27;
  --bg-darker: #060919;
  --bg-card: #111638;
  --bg-card-alt: #161b42;
  --accent: #4353ff;
  --accent-light: #00a8e8;
  --accent-orange: #ff6900;
  --text: #ffffff;
  --text-muted: #b0b3c6;
  --text-dark: #888;
  --border: rgba(255,255,255,0.08);
  --success: #49E670;
  --danger: #d63637;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --font: 'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--accent-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,14,39,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-size: 1.6rem; font-weight: 700; color: #fff; text-decoration: none; }
.logo span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav a { color: var(--text-muted); font-size: .95rem; font-weight: 600; transition: color .2s; }
.nav a:hover, .nav a.active { color: #fff; }
.nav .btn-nav { background: var(--accent); color: #fff; padding: 10px 24px; border-radius: 8px; font-weight: 700; }
.nav .btn-nav:hover { background: #3344ee; }

.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    flex-direction: column; gap: 0; background: var(--bg-darker);
    transform: translateX(100%); transition: transform .3s;
    padding-top: 20px; overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav a { padding: 14px 24px; width: 100%; border-bottom: 1px solid var(--border); }

  .hero { padding: 60px 0 40px; }
}

/* ── Hero ── */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(67,83,255,0.15), transparent 70%);
  pointer-events: none;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.hero h1 .highlight { color: var(--accent); }
.hero p { font-size: 1.15rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 32px; }
.hero-img { max-width: 800px; margin: 40px auto 0; border-radius: var(--radius-lg); }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 8px;
  font-weight: 700; font-size: 1rem; cursor: pointer; border: none;
  transition: all .25s; text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #3344ee; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(67,83,255,0.35); color:#fff; }
.btn-orange { background: var(--accent-orange); color: #fff; }
.btn-orange:hover { background: #e55d00; transform: translateY(-2px); color:#fff; }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ── Sections ── */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-darker); }
.section-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; text-align: center; margin-bottom: 16px; }
.section-sub { text-align: center; color: var(--text-muted); max-width: 650px; margin: 0 auto 48px; font-size: 1.05rem; }

/* ── Features Grid ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; text-align: center; transition: transform .3s, box-shadow .3s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card .icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: .95rem; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; position: relative; transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(67,83,255,0.2); }
.price-card.popular { border-color: var(--accent); }
.price-card.popular::before {
  content: 'Most Popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; padding: 4px 20px; border-radius: 20px;
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
}
.price-card h3 { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; font-weight: 600; }
.price-card .price { font-size: 2.8rem; font-weight: 700; margin-bottom: 24px; }
.price-card .price .currency { font-size: 1.4rem; vertical-align: super; }
.price-card .price .period { font-size: .9rem; color: var(--text-muted); font-weight: 400; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 28px; }
.price-card ul li { padding: 8px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: .92rem; }
.price-card ul li::before { content: '\2713'; color: var(--success); font-weight: 700; margin-right: 10px; }
.price-card .btn { width: 100%; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; position: relative;
}
.testimonial-card .stars { color: #fcb900; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { color: var(--text-muted); font-style: italic; margin-bottom: 16px; line-height: 1.6; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-card .author strong { font-size: .95rem; }
.testimonial-card .author span { font-size: .8rem; color: var(--text-dark); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; color: #fff;
  font-size: 1.05rem; font-weight: 600; font-family: var(--font);
  padding: 20px 0; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform .3s; }
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { color: var(--text-muted); padding: 0 0 20px; line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
  text-align: center; padding: 60px 20px;
  background: linear-gradient(135deg, var(--accent), #1a1f55);
  border-radius: var(--radius-lg); margin: 0 20px;
}
.cta-banner h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: .95rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; color: #fff; font-family: var(--font); font-size: .95rem;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input[name="website"] { position: absolute; left: -9999px; }
.form-message { padding: 12px 16px; border-radius: 8px; margin-top: 12px; font-weight: 600; }
.form-message--success { background: rgba(73,230,112,0.15); color: var(--success); }
.form-message--error { background: rgba(214,54,55,0.15); color: var(--danger); }

/* ── Checkout ── */
.checkout-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.order-summary {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; position: sticky; top: 100px;
}
.order-summary h3 { margin-bottom: 20px; }
.order-summary .plan-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }
.order-summary .total { font-size: 1.3rem; font-weight: 700; margin-top: 16px; text-align: right; }
@media (max-width: 768px) { .checkout-wrap { grid-template-columns: 1fr; } }

/* ── Channels ── */
.channels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.channel-tag {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 14px; text-align: center; font-size: .85rem; color: var(--text-muted);
  transition: border-color .2s;
}
.channel-tag:hover { border-color: var(--accent); color: #fff; }

.channel-category { margin-bottom: 40px; }
.channel-category h3 { font-size: 1.2rem; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); display: inline-block; }

/* ── Setup Guide ── */
.guide-content { max-width: 800px; margin: 0 auto; }
.guide-content h2 { font-size: 1.5rem; margin: 40px 0 16px; color: var(--accent-light); }
.guide-content h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.guide-content p { color: var(--text-muted); margin-bottom: 16px; }
.guide-content img { border-radius: var(--radius); margin: 20px 0; }
.guide-content ol, .guide-content ul { color: var(--text-muted); margin: 0 0 20px 24px; }
.guide-content ol li, .guide-content ul li { margin-bottom: 8px; }

/* ── Legal Pages ── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--accent-light); }
.legal-content h3 { font-size: 1.15rem; margin: 24px 0 8px; }
.legal-content p, .legal-content li { color: var(--text-muted); margin-bottom: 12px; }
.legal-content ul { margin-left: 24px; }
.legal-content a { color: var(--accent-light); }

/* ── Page Header / Breadcrumb ── */
.page-header {
  padding: 120px 0 50px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}
.page-header h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.page-header .breadcrumb { color: var(--text-muted); font-size: .9rem; }
.page-header .breadcrumb a { color: var(--accent-light); }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-grid img { border-radius: var(--radius-lg); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; margin-top: 48px; }
.about-stats .stat h3 { font-size: 2.2rem; color: var(--accent); }
.about-stats .stat p { color: var(--text-muted); font-size: .9rem; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ── Reseller ── */
.reseller-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.reseller-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; text-align: center;
}
.reseller-card .icon { font-size: 2.4rem; margin-bottom: 12px; }
.reseller-card h3 { margin-bottom: 8px; }
.reseller-card p { color: var(--text-muted); font-size: .92rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info .info-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 16px; align-items: flex-start;
}
.contact-info .info-card .icon { font-size: 1.6rem; }
.contact-info .info-card h4 { margin-bottom: 4px; }
.contact-info .info-card p { color: var(--text-muted); font-size: .9rem; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── Footer ── */
.footer { background: var(--bg-darker); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { margin-bottom: 16px; font-size: 1rem; }
.footer-col p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: var(--text-muted); font-size: .9rem; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; color: var(--text-dark); font-size: .85rem; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Devices Section ── */
.devices-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-top: 32px; }
.device-item { text-align: center; color: var(--text-muted); font-size: .9rem; }
.device-item .icon { font-size: 2rem; margin-bottom: 6px; }

/* ── Movies/VOD Section ── */
.vod-showcase { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.vod-showcase img { width: 100%; }

/* ── Two-column layout ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-section img { border-radius: var(--radius-lg); }
@media (max-width: 768px) { .split-section { grid-template-columns: 1fr; } }

/* ── Trial Form ── */
.trial-form {
  max-width: 500px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px;
}
.trial-form h3 { text-align: center; margin-bottom: 20px; }

/* ── Scroll to top ── */
.scroll-top {
  position: fixed; bottom: 90px; right: 20px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent);
  color: #fff; border: none; cursor: pointer; font-size: 1.2rem;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(67,83,255,0.3); transition: opacity .3s;
}
.scroll-top.visible { display: flex; }

@media (max-width: 1024px) {
  .container { padding: 0 24px; }
@media (max-width: 640px) {
  .container { padding: 0 16px; }
@media (max-width: 360px) {
  .hero h1 { font-size: 1.25rem; }

/* ─── TOUCH & INTERACTION ─── */
@media (hover: none) and (pointer: coarse) {
  .btn, .nav-cta, a, button { min-height: 44px; min-width: 44px; }
  .nav-links a { padding: 12px 8px; }
  .faq-question { padding: 16px; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ─── PRINT ─── */
@media print {
  .site-header, .site-footer, .nav-toggle, .whatsapp-btn, .skip-link, footer, header, nav { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .hero { background: none; padding: 20px 0; }
}
