/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - instant-tele.co */
    --primary-color: #ff6600;
    --primary-hover: #e55a00;
    --primary-light: #ff8533;
    --secondary-color: #ff8533;
    --accent-color: #FFA500;
    
    /* Neutral Colors */
    --dark-color: #1a1a1a;
    --darker-color: #0d0d0d;
    --light-color: #f4f4f4;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    
    /* Gradients */
    --gradient: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    --gradient-light: linear-gradient(135deg, #ff8533 0%, #ff6600 100%);
    
    /* Shadows */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-color: 0 10px 25px rgba(255, 102, 0, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Header & Navigation */
.header {
    background-color: var(--dark-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

.reduction-link {
    background: var(--gradient);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.reduction-link:hover {
    color: var(--white) !important;
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/match-bg.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-top: 80px;
    padding: 60px 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-features {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 1s ease 0.8s;
    animation-fill-mode: both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0;
    animation: fadeInUp 1s ease 1s;
    animation-fill-mode: both;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--light-color);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Features Section */
.features {
    background-color: var(--light-color);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    background: var(--light-color);
    padding: 80px 20px;
}

.how-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.how-title .highlight-blue {
    color: var(--primary-color);
}

.how-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-number span {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.step-card p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* VOD Carousel Section */
.vod-section {
    background: linear-gradient(135deg, #e8eaf6 0%, #f5f5f5 100%);
    padding: 80px 20px;
    overflow: hidden;
}

.vod-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.vod-title .highlight-blue {
    color: var(--primary-color);
}

.vod-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 50px 0;
    padding: 20px 0;
}

.vod-carousel-track {
    display: flex;
    gap: 20px;
    width: fit-content;
    animation: scroll-vod 35s linear infinite;
}

/* Pause animation on hover */
.vod-carousel-wrapper:hover .vod-carousel-track {
    animation-play-state: paused;
}

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

.vod-item {
    flex: 0 0 auto;
    width: 200px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vod-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.vod-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.vod-item:hover img {
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
}

/* Remove old carousel buttons */
.carousel-btn,
.prev-btn,
.next-btn {
    display: none;
}

.vod-description {
    text-align: center;
    margin-top: 50px;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark-color);
}

.vod-description p {
    margin: 10px 0;
}

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

.vod-description .sport-icon,
.vod-description .video-icon {
    color: var(--primary-color);
    margin: 0 5px;
    font-size: 1.6rem;
}

/* Channels Section */
.channels {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
                url('images/slide_03.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    padding: 80px 20px;
}

/* Sports Leagues Section */
.sports-leagues {
    background: url('images/hero-league/home-page-bg-sm.png') center/cover no-repeat;
    padding: 100px 20px;
    position: relative;
    color: var(--white);
    text-align: center;
}

.sports-leagues-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.sports-content {
    position: relative;
    z-index: 2;
}

.sports-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 10px;
    color: var(--white);
}

.sports-subtitle {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.sports-subtitle .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto 40px;
    justify-items: center;
    align-items: center;
}

.league-item {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    aspect-ratio: 1/1;
}

.league-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
}

.league-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sports-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.sports-cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    position: relative;
}

.sports-cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.6);
}

.sports-cta-button .cta-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.sports-cta-button i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.channels .section-title {
    color: var(--white);
}

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

.channel-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.channel-category:hover {
    background: rgba(255, 102, 0, 0.2);
    transform: translateY(-5px);
}

.channel-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.channel-category h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.channel-category p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Brand Logos Carousel in Channels Section */
.brands-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 50px 0;
    padding: 20px 0;
}

.brands-carousel-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: scroll-brands 30s linear infinite;
}

/* Pause animation on hover */
.brands-carousel-wrapper:hover .brands-carousel-track {
    animation-play-state: paused;
}

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

.brand-item {
    flex: 0 0 auto;
    width: 150px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.brand-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Remove old carousel buttons */
.prev-btn-brands,
.next-btn-brands {
    display: none;
}

/* Pricing Section */
.pricing {
    background-color: var(--light-color);
}

.discount-banner {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 1.3rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.discount-banner i {
    color: #ffd700;
    margin: 0 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

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

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.price {
    margin: 20px 0;
    position: relative;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--primary-color);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    color: var(--text-light);
    font-size: 1rem;
}

.save-badge {
    display: inline-block;
    background: #28a745;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-color);
}

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

.pricing-features i {
    color: #28a745;
    margin-right: 10px;
}

.pricing-button {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.pricing-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

/* Devices Section */
.devices {
    background: var(--white);
}

.devices-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 50px 0;
    padding: 20px 0;
}

.devices-carousel-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: scroll-devices 25s linear infinite;
}

/* Pause animation on hover */
.devices-carousel-wrapper:hover .devices-carousel-track {
    animation-play-state: paused;
}

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

.device-item {
    flex: 0 0 auto;
    width: 150px;
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.device-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
}

.device-item i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.device-item:hover i {
    color: var(--white);
}

.device-item p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--gradient);
    padding: 80px 20px;
    color: var(--white);
    position: relative;
}

.quote-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.quote-icon i {
    font-size: 3rem;
    color: #FFA500;
}

.testimonials-pre-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    max-width: 900px;
    margin-bottom: 50px;
    line-height: 1.8;
    opacity: 0.95;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 60px;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 auto;
    width: 350px;
    min-height: 220px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #00B67A;
    font-size: 1.2rem;
}

.time-ago {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.testimonial-card > p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
    flex-grow: 1;
    overflow: visible;
    word-wrap: break-word;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 15px;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-testimonial {
    left: 0;
}

.next-testimonial {
    right: 0;
}

.trustpilot-rating {
    text-align: center;
    margin: 40px 0 30px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trustpilot-star {
    color: #00B67A;
    font-size: 1.8rem;
}

.trustpilot-brand {
    font-weight: 600;
}

.testimonial-cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #FFA500;
    color: var(--dark-color);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 0 auto;
    display: flex;
}

.testimonial-cta-button:hover {
    background: #FF8C00;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-main-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-sub-text {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 3px;
}

.testimonial-cta-button i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

/* FAQ Section */
.faq {
    background-color: var(--light-color);
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-color);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .contact-methods {
        flex-direction: column;
        gap: 25px;
    }
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.contact-method:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-method:hover i {
    color: var(--white);
}

.contact-method h4 {
    margin-bottom: 5px;
}

.contact-method a {
    color: var(--text-color);
    text-decoration: none;
}

.contact-method:hover a {
    color: var(--white);
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

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

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

/* CTA Banner Section */
.cta-banner {
    background: var(--gradient);
    padding: 40px 20px;
    margin: 0;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-banner-text h2 {
    font-size: 2rem;
    color: var(--white);
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

.cta-banner-button {
    flex-shrink: 0;
}

.cta-banner-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #ffc107;
    color: #000;
    padding: 20px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
    min-width: 350px;
}

.cta-banner-btn:hover {
    background: #ffcd38;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.cta-banner-btn-content {
    text-align: left;
}

.cta-banner-btn-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.cta-banner-btn-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    display: block;
}

.cta-banner-btn i {
    font-size: 2rem;
}

@media (max-width: 992px) {
    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-banner-text h2 {
        font-size: 1.5rem;
    }
    
    .cta-banner-btn {
        min-width: auto;
        width: 100%;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float i {
    color: var(--white);
}

/* Responsive - Smaller button on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        margin-top: 80px;
        min-height: auto;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .brands-carousel-wrapper {
        padding: 0;
        margin: 30px 0;
    }

    .brand-item {
        width: 110px;
        height: 75px;
    }

    .brands-carousel-track {
        gap: 20px;
        animation: scroll-brands 25s linear infinite;
    }

    .prev-btn-brands,
    .next-btn-brands {
        display: none;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .device-item {
        width: 120px;
        padding: 25px 15px;
    }

    .device-item i {
        font-size: 2.5rem;
    }

    .devices-carousel-track {
        gap: 20px;
        animation: scroll-devices 20s linear infinite;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .how-title {
        font-size: 2rem;
    }

    .how-subtitle {
        font-size: 1.1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-card {
        padding: 30px 25px;
    }

    .step-card h3 {
        font-size: 1.5rem;
    }

    .sports-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .sports-subtitle {
        font-size: 1.8rem;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .device-item {
        width: 100px;
        min-width: 100px;
        padding: 20px 10px;
    }

    .device-item i {
        font-size: 2rem;
    }

    .device-item p {
        font-size: 0.9rem;
    }

    .devices-carousel-track {
        gap: 15px;
        animation: scroll-devices 18s linear infinite;
    }

    .how-title {
        font-size: 1.8rem;
    }

    .how-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .step-number {
        width: 60px;
        height: 60px;
    }

    .step-number span {
        font-size: 2rem;
    }

    .step-card h3 {
        font-size: 1.3rem;
    }

    .step-card p {
        font-size: 0.95rem;
    }

    .quote-icon {
        width: 80px;
        height: 80px;
    }

    .quote-icon i {
        font-size: 2.5rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonials-carousel-wrapper {
        padding: 0 15px;
    }

    .testimonial-card {
        width: 280px;
        min-height: auto;
        padding: 20px;
    }

    .testimonial-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .testimonial-card > p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .testimonial-header {
        margin-bottom: 12px;
    }

    .time-ago {
        font-size: 0.85rem;
    }

    .reviewer-name {
        font-size: 0.9rem;
        margin-top: 12px;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .trustpilot-rating {
        font-size: 1.1rem;
        flex-wrap: wrap;
        gap: 8px;
    }

    .testimonial-cta-button {
        padding: 16px 35px;
        font-size: 0.95rem;
    }

    .sports-title {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    .sports-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .leagues-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .sports-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .sports-cta-button i {
        display: none;
    }

    .vod-title {
        font-size: 1.8rem;
    }

    .vod-item {
        width: 160px;
        min-width: 160px;
    }

    .vod-item img {
        height: 240px;
    }

    .vod-carousel-wrapper {
        padding: 0;
        margin: 30px 0;
    }

    .vod-carousel-track {
        gap: 20px;
        animation: scroll-vod 28s linear infinite;
    }

    .vod-description {
        font-size: 1.2rem;
    }

    .vod-description .sport-icon,
    .vod-description .video-icon {
        font-size: 1.2rem;
    }

    .features-grid,
    .channels-grid {
        grid-template-columns: 1fr;
    }

    .brand-item {
        width: 100px;
        height: 70px;
        padding: 10px;
    }

    .brands-carousel-wrapper {
        padding: 0;
        margin: 20px 0;
    }

    .brands-carousel-track {
        gap: 15px;
        animation: scroll-brands 20s linear infinite;
    }

    .prev-btn-brands,
    .next-btn-brands {
        display: none;
    }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cookie-text i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cookie-text p {
    color: var(--white);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.cookie-accept {
    background: var(--primary-color);
    color: var(--white);
}

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

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-decline:hover {
    background: var(--white);
    color: var(--dark-color);
}

.cookie-link {
    color: var(--white);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.cookie-link:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-text i {
        font-size: 2rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

