/**
 * Trimix Triangles IPTV Theme - Custom Styles
 * Clone EXACT du design
 */

/* ========================================
   VARIABLES - Couleurs du site original
   ======================================== */
:root {
    --accent-primary: #E2012D;
    --accent-secondary: #c7012a;
    --accent-hover: #ff1a4a;
    --bg-page: #000000;
    --bg-surface: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #9ca3af;
    --border-color: #2d2d2d;
}

/* ========================================
   WELCOME BAR - Barre rouge en haut
   ======================================== */
.welcome-bar {
    background: var(--accent-primary);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.welcome-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.welcome-text {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.welcome-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 5px 10px;
    opacity: 0.8;
}

.welcome-close:hover {
    opacity: 1;
}

/* ========================================
   HEADER - Style exact du site original
   ======================================== */
.site-header {
    background: var(--bg-page);
    padding: 20px 0;
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: none;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 3px;
    font-family: 'Inter', sans-serif;
}

/* Navigation Desktop */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav .nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.desktop-nav .nav-menu li a {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.desktop-nav .nav-menu li.active a,
.desktop-nav .nav-menu li a:hover {
    color: var(--accent-primary);
}

/* Bouton Revendeur */
.btn-revendeur {
    background: var(--accent-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.btn-revendeur:hover {
    background: var(--accent-hover);
    transform: scale(0.95);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-surface);
    z-index: 1002;
    transition: right 0.3s ease;
    padding: 20px;
}

.mobile-nav-panel.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-menu li {
    margin-bottom: 15px;
}

.mobile-nav-menu li a {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    padding: 10px 0;
}

.mobile-nav-menu li a:hover {
    color: var(--accent-primary);
}

.mobile-cta {
    margin-top: 30px;
    width: 100%;
    justify-content: center;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   HERO SECTION - Design centré exact
   ======================================== */
.hero-section {
    min-height: 100vh;
    padding: 200px 0 100px;
    position: relative;
    background: var(--bg-page);
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(226, 1, 45, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content-centered {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Titre principal Hero - Rouge/Blanc */
.hero-main-title {
    font-size: clamp(36px, 6vw, 65px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 35px;
    color: var(--accent-primary);
}

.hero-main-title .text-accent {
    color: var(--accent-primary);
}

/* Description Hero */
.hero-description-centered {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-centered strong {
    color: var(--text-primary);
}

/* Bouton CTA Hero */
.hero-cta-centered {
    margin-bottom: 50px;
}

.btn-hero {
    background: linear-gradient(135deg, #8B0A4A 0%, #5C0632 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(139, 10, 74, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 10, 74, 0.4);
}

/* Tagline en bas */
.hero-tagline {
    padding-top: 30px;
}

.tagline-text {
    font-size: 20px;
    color: var(--text-secondary);
}

.price-big {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--text-primary);
}

.price-big.accent {
    color: var(--accent-primary);
}

/* ========================================
   BUTTONS GLOBAL
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-label {
    display: inline-block;
    background: rgba(226, 1, 45, 0.15);
    color: var(--accent-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-header {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(226, 1, 45, 0.2);
    border-color: var(--accent-primary);
}

.pricing-card-popular {
    border: 2px solid var(--accent-primary);
    transform: scale(1.05);
}

.pricing-card-popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.pricing-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 30px;
    text-align: center;
}

.pricing-duration {
    display: inline-block;
    background: var(--accent-primary);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-phone-mockup {
    margin-top: 20px;
}

.pricing-phone-mockup img {
    max-width: 150px;
    height: auto;
}

.pricing-body {
    padding: 30px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 25px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-primary);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent-primary);
    font-size: 16px;
    margin-top: 2px;
}

.pricing-features li strong {
    color: var(--text-primary);
}

/* Pricing Stats */
.pricing-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

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

/* ========================================
   CHANNELS SECTION
   ======================================== */
.channels-section {
    padding: 100px 0;
    background: var(--bg-page);
}

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

.vod-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2/3;
}

.vod-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vod-item:hover img {
    transform: scale(1.1);
}

.vod-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(226, 1, 45, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vod-item:hover .vod-overlay {
    opacity: 1;
}

.vod-overlay i {
    font-size: 50px;
    color: white;
}



/* Channels Slider */
.channels-slider-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.channel-slide {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.channel-slide:hover {
    border-color: var(--accent-primary);
}

.channel-slide img {
    max-height: 60px;
    width: auto;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--accent-primary);
}

.swiper-pagination-bullet {
    background: var(--text-muted);
}

.swiper-pagination-bullet-active {
    background: var(--accent-primary);
}

/* ========================================
   WHY US SECTION
   ======================================== */
.why-us-section {
    padding: 100px 0;
    background: var(--bg-page);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(226, 1, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid var(--accent-primary);
}

.feature-icon svg,
.feature-icon i {
    width: 35px;
    height: 35px;
    font-size: 35px;
    color: var(--accent-primary);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   DEVICES SECTION
   ======================================== */
.devices-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.devices-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-description {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.device-item {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.device-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.device-item i {
    font-size: 40px;
    color: var(--accent-primary);
    margin-bottom: 15px;
    display: block;
}

.device-item span {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Installation Section */
.installation-section {
    padding: 100px 0;
    background: var(--bg-page);
}

.installation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.installation-visual img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.installation-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.step:last-child {
    border-bottom: none;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto 50px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(226, 1, 45, 0.3);
}

.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    padding-right: 20px;
}

.faq-icon {
    color: var(--accent-primary);
    font-size: 16px;
}

.faq-icon .fa-minus {
    display: none;
}

.faq-item.active .faq-icon .fa-plus {
    display: none;
}

.faq-item.active .faq-icon .fa-minus {
    display: block;
}

.faq-answer {
    display: none;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(226, 1, 45, 0.1) 0%, var(--bg-page) 50%, rgba(226, 1, 45, 0.1) 100%);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.cta-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.cta-description {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 600px;
}

.cta-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-feature {
    color: var(--text-secondary);
    font-size: 14px;
}

.cta-feature i {
    color: var(--accent-primary);
    margin-right: 8px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-link {
    color: var(--accent-primary);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-link:hover {
    gap: 12px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--bg-page);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

/* Footer Form */
.footer-form .form-group {
    margin-bottom: 15px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-form input:focus,
.footer-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.footer-form textarea {
    resize: vertical;
    min-height: 80px;
}

.footer-form .btn {
    width: 100%;
    justify-content: center;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card-popular {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .devices-content,
    .installation-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .site-header {
        top: 40px;
    }
    
    .hero-section {
        padding: 160px 0 80px;
    }
    
    .hero-main-title {
        font-size: clamp(28px, 8vw, 45px);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .vod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-description-centered {
        font-size: 14px;
    }
    
    .btn-hero {
        padding: 15px 30px;
        font-size: 12px;
    }
    
    .tagline-text {
        font-size: 16px;
    }
    
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .scroll-to-top {
        bottom: 85px;
        right: 20px;
    }
    /* ========================================
   CORRECTION POUR LA SECTION BRANDS/PLATFORMS
   Remplace cette section dans ton fichier custom.css
   ======================================== */

/* IPTV Experience Section */
.iptv-experience {
    margin-top: 80px;
    padding-top: 60px;
}

.iptv-experience .section-header {
    margin-bottom: 40px;
}

.iptv-experience .section-title {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--text-primary);
}

.iptv-experience .section-subtitle {
    color: var(--text-muted);
}

/* Platforms Showcase - CORRIGÉ */
.platforms-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 30px 40px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.platform-logo {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 60px;
}

.platform-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* IMPORTANT: Enlever le filtre qui cachait les images */
.platform-logo img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    /* PAS de filter ici - on veut voir les vraies couleurs des logos */
}

/* Si tu veux les logos en blanc, décommente cette ligne: */
/* .platform-logo img { filter: brightness(0) invert(1); } */
}
.platforms-showcase {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.platform-logo {
    display: inline-flex !important;
    flex-shrink: 0;
}

.platform-logo img {
    height: 40px;
    width: auto;
    max-width: 100px;
}
/* ========================================
   PLATFORMS/BRANDS - LOGOS PLUS GRANDS
   Copie ce code à la fin de ton custom.css
   ======================================== */

.platforms-showcase {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    flex-wrap: wrap !important;
    padding: 40px 50px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.platform-logo {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.platform-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.08);
}

.platform-logo img {
    height: 70px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain;
    display: block;
}

/* Pour les écrans plus petits */
@media (max-width: 768px) {
    .platforms-showcase {
        gap: 20px !important;
        padding: 30px 20px;
    }
    
    .platform-logo {
        padding: 15px 20px;
    }
    
    .platform-logo img {
        height: 50px !important;
        max-width: 120px !important;
    }
}
/* ========================================
   PLATFORMS/BRANDS - IMAGES QUI REMPLISSENT LA CASE
   Copie ce code à la fin de ton custom.css
   ======================================== */

/* Section Brands (Netflix, Hulu, etc.) */
.platforms-showcase {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.platform-logo {
    display: block !important;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 150px;
    height: 200px;
    padding: 0 !important;
    border: 1px solid var(--border-color);
}

.platform-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
    border-color: var(--accent-primary);
}

.platform-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}


/* ========================================
   CHANNELS SLIDER - IMAGES QUI REMPLISSENT LA CASE
   ======================================== */

.channel-slide {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    padding: 0 !important;
    height: 120px;
}

.channel-slide:hover {
    border-color: var(--accent-primary);
    transform: scale(1.02);
}

.channel-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 15px;
    display: block;
}


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 992px) {
    .platform-logo {
        width: 130px;
        height: 170px;
    }
}

@media (max-width: 768px) {
    .platform-logo {
        width: 110px;
        height: 150px;
    }
    
    .channel-slide {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .platform-logo {
        width: 100px;
        height: 130px;
    }
    
    .platforms-showcase {
        gap: 15px !important;
        padding: 25px;
    }
}
/* ========================================
   CHANNELS SLIDER - LOGOS PLUS GRANDS
   Ajoute ce code à la fin de ton custom.css
   ======================================== */

.channels-slider-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.channels-swiper {
    padding: 20px 0 50px;
}

.channel-slide {
    background: var(--bg-card) !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    border: 1px solid var(--border-color) !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    height: 140px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.channel-slide:hover {
    border-color: var(--accent-primary) !important;
    transform: scale(1.03);
}

.channel-slide img {
    width: 80% !important;
    height: 80% !important;
    max-width: 120px !important;
    max-height: 100px !important;
    object-fit: contain !important;
    display: block !important;
    margin: auto !important;
}

/* Swiper navigation arrows */
.swiper-button-prev,
.swiper-button-next {
    color: var(--accent-primary) !important;
    width: 50px !important;
    height: 50px !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 24px !important;
}

.swiper-pagination-bullet {
    background: var(--text-muted) !important;
    width: 10px !important;
    height: 10px !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-primary) !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .channel-slide {
        height: 120px !important;
    }
    
    .channel-slide img {
        max-width: 100px !important;
        max-height: 80px !important;
    }
}
/* ========================================
   REVIEWS/TESTIMONIALS SECTION
   Ajoute ce code à la fin de ton custom.css
   ======================================== */

.reviews-section {
    padding: 100px 0;
    background: var(--bg-page);
}

.reviews-title {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.trustpilot-stars {
    margin-bottom: 20px;
}

.trustpilot-stars img {
    height: 30px;
    width: auto;
}

.reviews-divider {
    width: 80px;
    height: 3px;
    background: var(--text-muted);
    margin: 0 auto 50px;
}

/* Reviews Grid - 5 colonnes */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: start;
}

.review-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background: #fff;
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.review-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .reviews-title {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .review-item {
        border-radius: 15px;
    }
}
/* ========================================
   PRICING SECTION - TABS + OS/PAYMENT ICONS
   Ajoute ce code à la fin de ton custom.css
   ======================================== */

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pricing-tab {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pricing-tab:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.pricing-tab.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.pricing-tab i {
    font-size: 12px;
}

/* Pricing Content */
.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
}

/* Pricing Header avec Server + Screens */
.pricing-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    padding: 30px;
    text-align: center;
}

.pricing-duration {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.pricing-server {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.pricing-screens {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Pricing Price with Economy */
.pricing-price {
    text-align: center;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 52px;
    font-weight: 800;
    color: var(--accent-primary);
}

.pricing-economy {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Bouton Acheter style arrondi */
.btn-acheter {
    background: var(--accent-primary) !important;
    border-radius: 30px !important;
    padding: 15px 40px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 25px;
}

.btn-acheter:hover {
    background: var(--accent-hover) !important;
    transform: scale(1.02);
}

/* OS & Payment Icons */
.pricing-icons {
    text-align: center;
    margin-top: 15px;
}

.pricing-icons img {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
}

.pricing-icons img:hover {
    opacity: 1;
}

.pricing-os {
    margin-bottom: 10px;
}

/* Pricing Card Popular - Bordure rouge glow */
.pricing-card-popular {
    border: 2px solid var(--accent-primary) !important;
    box-shadow: 0 0 30px rgba(226, 1, 45, 0.3),
                inset 0 0 30px rgba(226, 1, 45, 0.05);
}

.pricing-card-popular:hover {
    box-shadow: 0 0 50px rgba(226, 1, 45, 0.4),
                inset 0 0 40px rgba(226, 1, 45, 0.08);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .pricing-tabs {
        gap: 10px;
    }
    
    .pricing-tab {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .pricing-duration {
        font-size: 32px;
    }
    
    .price-amount {
        font-size: 40px;
    }
    
    .pricing-icons img {
        max-width: 160px;
    }
}

@media (max-width: 576px) {
    .pricing-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-tab {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
/* Fix Header Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-menu li a {
    font-size: 11px;
    padding: 8px 10px;
    white-space: nowrap;
}

.btn-revendeur {
    font-size: 12px;
    padding: 12px 18px;
    white-space: nowrap;
}

/* Logo size */
.site-logo .logo-img {
    max-height: 45px;
    width: auto;
}

.footer-logo .logo-img {
    max-height: 50px;
    width: auto;
}

/* Mobile fix */
@media (max-width: 1200px) {
    .nav-menu li a {
        font-size: 10px;
        padding: 8px 8px;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}