/* 
   Premium NL IPTV - Clean Orange Theme
   Designed for PremiumNLIPTV 
*/

:root {
    --primary: #FF8C00; /* Dark Orange */
    --primary-light: #FFA500; /* Orange */
    --primary-dark: #E67E00;
    --secondary: #1A1A1A; /* Near Black */
    --accent: #FFFFFF;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --bg-card: rgba(255, 255, 255, 0.9);
    --border: #EEEEEE;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header__logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header__logo span {
    color: var(--secondary);
}

.header__nav {
    display: flex;
    gap: 2rem;
}

.header__nav-list {
    display: flex;
    gap: 1.5rem;
}

.header__nav-item a {
    font-weight: 500;
    color: var(--secondary);
}

.header__nav-item a:hover {
    color: var(--primary);
}

/* Mobile Menu */
.header__toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--secondary);
}

.header__mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    z-index: 1001;
    transition: 0.4s;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.header__mobile-menu.active {
    right: 0;
}

.header__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
}

.header__mobile-overlay.active {
    display: block;
}

@media (max-width: 992px) {
    .header__nav {
        display: none;
    }
    .header__toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    padding: 120px 5px 60px;
    background: linear-gradient(135deg, #FFF5E6 0%, #FFFFFF 100%);
    text-align: center;
}

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

.section-padding {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 30px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Hot Player UI (TV UI) */
.tv-preview {
    max-width: 800px;
    margin: 40px auto 0;
    background: #000;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 8px solid #333;
}

.tv-content {
    background: #111;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    text-align: left;
}

.tv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.tv-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FF8C00;
}

.tv-logo-icon { width: 24px; height: 24px; }
.tv-version { font-size: 0.7rem; color: #666; margin-left: 10px; }

.status-pill {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    background: #222;
    padding: 5px 15px;
    border-radius: 20px;
}

.status-active { color: #4CAF50; display: flex; align-items: center; gap: 5px; }
.status-expire { color: #FFA500; display: flex; align-items: center; gap: 5px; }

.tv-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.tv-card {
    background: #222;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
    border: 2px solid transparent;
}

.tv-card.active {
    background: #FF8C00;
    border-color: #FFA500;
}

.tv-card-icon img, .tv-card-icon svg { width: 40px; height: 40px; }
.tv-card span { font-size: 0.9rem; font-weight: 500; }

.tv-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.tv-icon-btn {
    background: #222;
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }
.section-title p { color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* Carousels & Galleries */
.carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.carousel {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
}

.carousel:hover { animation-play-state: paused; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carousel__card {
    flex: 0 0 250px;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 5px;
    transition: var(--transition);
}

.carousel--logos .carousel__card {
    background: var(--secondary);
    border: 1px solid rgba(255,255,255,0.1);
}

.carousel__img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

/* Specific Ratios */
.carousel--devices .carousel__img { aspect-ratio: 1 / 1; object-fit: cover; }
.carousel--logos .carousel__img { aspect-ratio: 16 / 9; object-fit: contain; }
.carousel--sport .carousel__img { aspect-ratio: 9 / 16; object-fit: cover; }
.carousel--wtsp .carousel__img { aspect-ratio: 473 / 1024; object-fit: cover; }

/* Comparison Table */
.comparison {
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th { background: var(--secondary); color: #fff; }
tr:last-child td { border-bottom: none; }
.highlight { color: var(--primary); font-weight: 700; }

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.price-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.price-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.price-card.popular { border: 2px solid var(--primary); position: relative; }
.badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; }

.price-val { font-size: 2.5rem; font-weight: 800; color: var(--secondary); margin: 20px 0; }
.price-features { margin-bottom: 30px; text-align: left; }
.price-features li { margin-bottom: 10px; font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; }
.price-features li svg { color: #4CAF50; flex-shrink: 0; margin-top: 3px; }
.price-features li.unavailable { color: #ccc; text-decoration: line-through; }

/* Multi-screen box */
.multiscreen-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #333 100%);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.multiscreen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* 3-Step Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
}

.step-number { font-size: 3rem; font-weight: 800; color: var(--primary); opacity: 0.2; margin-bottom: -20px; display: block; }
.step-card h3 { position: relative; }

/* FAQs */
.faq-grid { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; }
.faq-answer { display: none; padding-top: 15px; color: var(--text-light); }

/* Footer */
.footer {
    background: var(--secondary);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 { color: #fff; margin-bottom: 20px; }
.footer-col a { color: #ccc; display: block; margin-bottom: 10px; }
.footer-col a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.8rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
}
