/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #000;
    color: #fff;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.8);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo a {
    color: #FFC107;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #ffd54f;
}

.nav-menu {
    display: flex;
    align-items: center;
    z-index: 1000;

}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #FFC107;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Tablet and Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Mobile version */
@media (max-width: 768px) {
    .hero {
        background-image: url('../images/hero-sports.png');
        min-height: 100vh;
        padding: 1.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .left-content {
        max-width: 100%;
    }

    .left-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .feature {
        gap: 0.8rem;
    }

    .feature i {
        font-size: 1.1rem;
    }

    .feature span {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/*ro Section Styles */
.hero {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.78)), url('../images/hero-sports.png');
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0 2rem;
}

.left-content {
    max-width: 900px;
    color: #fff;
}

.left-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #FFC107;
    font-size: 1.2rem;
}

.feature span {
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.primary-cta,
.secondary-cta {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.primary-cta {
    background: #FFC107;
    color: #000;
    border: none;
}

.secondary-cta {
    background: transparent;
    color: #fff;
    border: 2px solid #FFC107;
}

.primary-cta:hover {
    background: #ffd54f;
    transform: translateY(-2px);
}

.secondary-cta:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-2px);
}

/* Tablet version (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .left-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-features {
        gap: 1.2rem;
    }

    .feature span {
        font-size: 1rem;
    }

    .primary-cta,
    .secondary-cta {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
}

/* Small mobile devices (up to 480px) */
@media (max-width: 607px) {
    .hero {
        padding: 1rem;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8)), url('../images/hero-sports.png');
        background-position: center top;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .left-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .feature i {
        font-size: 1rem;
    }

    .feature span {
        font-size: 0.9rem;
    }

    .cta-buttons {
        gap: 0.8rem;
    }

    .primary-cta,
    .secondary-cta {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}




/* Footer Styles */
.footer {
    background: #000;
    color: #fff;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo .logo {
    font-size: 2.5rem;
    color: #FFC107;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

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

.footer-column ul li a:hover {
    color: #FFC107;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.social-links a:hover {
    background: #FFC107;
    color: #000;
    transform: translateY(-3px);
}

.newsletter h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: #FFC107;
    color: #000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ffd54f;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

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

.payment-methods i:hover {
    color: #FFC107;
}

/* Responsive Design for Footer */
@media (max-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-logo .logo {
        font-size: 2rem;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .payment-methods i {
        font-size: 1.2rem;
    }
}

/* Sports Section Styles */
.sports-section {
    background: #000;
    color: #fff;
}

.sports-container {
    max-width: 1400px;
    margin: 0 auto;
}

.sports-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.sports-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.sports-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
    .sports-title {
        font-size: 3.5rem;
    }

    .sports-description {
        font-size: 1.4rem;
        max-width: 900px;
    }
}

/* Desktop (1024px - 1439px) */
@media (max-width: 1439px) and (min-width: 1024px) {
    .sports-title {
        font-size: 3rem;
    }

    .sports-description {
        font-size: 1.25rem;
        max-width: 800px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .sports-title {
        font-size: 2.5rem;
    }

    .sports-description {
        font-size: 1.2rem;
        max-width: 700px;
    }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) and (min-width: 481px) {
    .sports-header {
        margin-bottom: 3rem;
    }

    .sports-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .sports-description {
        font-size: 1.1rem;
        max-width: 600px;
    }
}

/* Small Mobile (up to 479px) */
@media (max-width: 480px) {
    .sports-header {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .sports-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .sports-description {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
}

.channels-carousel {
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.channels-swiper {
    padding: 1rem 0;
    overflow: hidden;
    width: 100%;
}

.channel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.channel-slide:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.channel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.channel-slide:hover img {
    transform: scale(1.1);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #FFC107 !important;
    background: rgba(0, 0, 0, 0.5);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .channel-slide {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .channel-slide {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .channel-slide {
        height: 50px;
        padding: 0.8rem;
    }
}

/* Section 2 & 3 Styles */
.section-2,
.section-3 {
    padding: 2rem 1rem;
}

.swiper-container {
    max-width: 1200px;
    overflow: hidden;
}

.swiper-slide {
    height: 60px;
}

.swiper-slide img {
    width: 95%;
    height: 95%;
    object-fit: cover;
    border-radius: 8px;
}

.section-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}


/* Sports Categories Styles */
.sports-categories {
    margin-top: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sports-categories .swiper-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Desktop Grid Layout */
@media (min-width: 769px) {
    .sports-categories .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }

    .sports-categories .swiper-slide {
        width: auto !important;
        margin: 0 auto;
    }

    .sports-categories .swiper-pagination,
    .sports-categories .swiper-button-next,
    .sports-categories .swiper-button-prev {
        display: none;
    }
}

/* Mobile Swiper Layout */
@media (max-width: 768px) {
    .sports-categories .swiper-container {
        padding: 1rem 0 3rem;
        width: 90%;
        margin: 0 auto;
    }

    .sports-categories .swiper-slide {
        width: 100%;
        padding: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sports-categories .swiper-pagination {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        width: auto;
    }

    .sports-categories .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #FFC107;
        opacity: 0.5;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sports-categories .swiper-pagination-bullet-active {
        opacity: 1;
        transform: scale(1.2);
    }

    .sports-categories .swiper-button-next,
    .sports-categories .swiper-button-prev {
        color: #FFC107;
        background: rgba(0, 0, 0, 0.5);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .sports-categories .swiper-button-next:after,
    .sports-categories .swiper-button-prev:after {
        font-size: 1.2rem;
    }

    .sports-categories .swiper-button-next:hover,
    .sports-categories .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .sports-categories .swiper-button-next {
        right: 10px;
    }

    .sports-categories .swiper-button-prev {
        left: 10px;
    }
}

.category {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background-image: url('/images/sports/Football_4874.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.453), rgba(0, 0, 0, 0.4));
}

.category1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.453), rgba(0, 0, 0, 0.4));
}

.category2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.453), rgba(0, 0, 0, 0.4));
}

.category3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.453), rgba(0, 0, 0, 0.4));
}

.category1 {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background-image: url('/images/sports/Basketball_8088.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category2 {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background-image: url('/images/sports/Motosports_7762.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category3 {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    background-image: url('/images/sports/Equestrian_2685.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FFC107;
    transition: transform 0.3s ease;
    position: relative;
}

.category:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
}

.category1:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
}

.category2:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
}

.category3:hover .category-icon {
    transform: scale(1.1) rotate(10deg);
}

.category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #FFC107;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}

.category1 h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #FFC107;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}

.category2 h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #FFC107;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}

.category3 h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #FFC107;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
}

.category-list {
    list-style: none;
    padding: 0;
    position: relative;
}

.category-list li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.category-list li:hover {
    color: #FFC107;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .category .category1 .category2 .category3 {
        padding: 1.5rem;
    }

    .category-icon {
        font-size: 2rem;
    }

    .category .category1 .category2 .category3h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .category .category1 .category2 .category3 {
        padding: 1.2rem;
    }

    .category-icon {
        font-size: 1.8rem;
    }

    .category .category1 .category2 .category3 h3 {
        font-size: 1.2rem;
    }

    .category-list li {
        font-size: 0.9rem;
    }
}

/* Movies Section Styles */
.movies-section {
    background: #000;
    color: #fff;
    padding: 4rem 0;
}

.movies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.movies-header {
    text-align: center;
    margin-bottom: 4rem;
}

.movies-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.movies-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.movies-carousel {
    position: relative;
    padding: 0 0rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.movies-carousel .swiper-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.movie-slide {
    padding: 0.5rem;
    display: flex;
    justify-content: center;
}

.movie-poster {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 2/3;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.movie-poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.095), rgba(6, 3, 3, 0.395));
}

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

.movie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.movie-overlay h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #fff;
}

.movie-poster:hover {
    transform: scale(1.05);
}

.movie-poster:hover .movie-overlay {
    transform: translateY(0);
}

.movie-poster:hover img {
    transform: scale(1.1);
}

/* Swiper Navigation Buttons */
.movies-carousel .swiper-button-next,
.movies-carousel .swiper-button-prev {
    color: #FFC107;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.movies-carousel .swiper-button-next:after,
.movies-carousel .swiper-button-prev:after {
    font-size: 1.2rem;
}

.movies-carousel .swiper-button-next:hover,
.movies-carousel .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Responsive Styles */
@media (min-width: 1440px) {
    .movies-title {
        font-size: 3.5rem;
    }

    .movies-description {
        font-size: 1.4rem;
        max-width: 900px;
    }
}

@media (max-width: 1023px) {
    .movies-title {
        font-size: 2.5rem;
    }

    .movies-description {
        font-size: 1.2rem;
        max-width: 700px;
    }
}

@media (max-width: 767px) {
    .movies-section {
        padding: 3rem 0;
    }

    .movies-container {
        padding: 0 1rem;
    }

    .movies-carousel {
        padding: 0 0rem;
    }

    .movies-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .movies-description {
        font-size: 1.1rem;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .movies-section {
        padding: 2.5rem 0;
    }

    .movies-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .movies-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .movie-overlay h3 {
        font-size: 1rem;
    }
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .movie-poster {
        max-width: 240px;
    }
}

@media (max-width: 767px) {
    .movie-poster {
        max-width: 280px;
    }

    .movies-carousel {
        padding: 0 0rem;
    }
}

@media (max-width: 480px) {
    .movie-poster {
        max-width: 260px;
    }
}

/* Features Section Styles */
.features-section {
    background: #000;
    color: #fff;
    padding: 4rem 0;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.features-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #FFC107;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFC107;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive Styles for Features Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .features-section {
        padding: 3rem 0;
    }

    .features-header {
        margin-bottom: 3rem;
    }

    .features-title {
        font-size: 2.2rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

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

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

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

    .features-description {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

/* Reviews Section Styles */
.reviews-section {
    background: #000;
    padding: 2rem 0;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reviews-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
    width: 100%;
}

.reviews-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    max-width: 800px;
    text-align: center;
    width: 100%;
}

.reviews-swiper {
    padding: 1rem 0;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.085);
    border-radius: 15px;
    padding: 1rem;

    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.stars {
    color: #FFC107;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

.reviewer {
    font-weight: 600;
    color: #FFC107;
    font-size: 1.1rem;
    text-align: center;
}

/* Swiper Navigation */
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
    color: #FFC107;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-button-next:after,
.reviews-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
}

.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Swiper Pagination */
.reviews-swiper .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.reviews-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: #FFC107;
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .reviews-section h2 {
        font-size: 2.2rem;
    }

    .reviews-section p {
        font-size: 1rem;
        max-width: 700px;
    }

    .reviews-swiper {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }

    .reviews-section h2 {
        font-size: 2rem;
    }

    .reviews-section p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .stars {
        font-size: 1.3rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .reviews-swiper {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .reviews-section h2 {
        font-size: 1.8rem;
    }

    .reviews-section p {
        font-size: 0.9rem;
    }

    .review-card {
        padding: 1.2rem;
    }

    .stars {
        font-size: 1.2rem;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .reviewer {
        font-size: 1rem;
    }

    .reviews-swiper {
        max-width: 300px;
    }
}

.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
    color: #FFC107;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-button-next:after,
.reviews-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
}

.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* FAQ Section Styles */
.faq-section {
    background: #000;
    color: #fff;
    padding: 4rem 0;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.faq-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-accordion {
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-header h3 {
    font-size: 1.25rem;
    color: #FFC107;
    margin: 0;
}

.accordion-icon {
    color: #FFC107;
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.accordion-content ul,
.accordion-content ol {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}

.accordion-item.active .accordion-content {
    padding: 1.5rem;
    max-height: 1000px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* Responsive Styles for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-title {
        font-size: 2.2rem;
    }

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

    .accordion-header {
        padding: 1.2rem;
    }

    .accordion-header h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.8rem;
    }

    .faq-description {
        font-size: 1rem;
    }

    .accordion-header {
        padding: 1rem;
    }

    .accordion-content {
        padding: 0 1rem;
    }

    .accordion-item.active .accordion-content {
        padding: 1rem;
    }
}

/* Pricing Section Styles */
.pricing-section {
    background: #000;
    color: #fff;
    padding: 4rem 0;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.pricing-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 0.5px solid #FFC107;

}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #FFC107;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #FFC107;
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #FFC107;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.features-list i {
    color: #FFC107;
}

.subscribe-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    text-align: center;
}

.subscribe-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.subscribe-btn.primary {
    background: #FFC107;
    color: #000;
}

.subscribe-btn.primary:hover {
    background: #ffd54f;
}

.pricing-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.pricing-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-info i {
    color: #FFC107;
}

/* Responsive Styles for Pricing Section */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-title {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

    .pricing-title {
        font-size: 2.2rem;
    }

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

    .pricing-card {
        padding: 1.5rem;
    }

    .amount {
        font-size: 2rem;
    }
}

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

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

    .pricing-description {
        font-size: 1rem;
    }

    .pricing-info {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.2rem;
    }

    .amount {
        font-size: 1.8rem;
    }
}

/* Channels Section Styles */
.channels-section {
    background: #000;
    color: #fff;
    padding: 4rem 0;
}

.channels-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.channels-header {
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.channels-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.channels-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search and Filter Styles */
.search-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.search-box {
    flex: 1;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.country-filter select {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Country Section Styles */
.country-section {
    margin-bottom: 4rem;
}

.country-title {
    font-size: 2rem;
    color: #FFC107;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.channels-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.channel-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.channel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.channel-card img {
    width: 100%;
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

.channel-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    word-break: break-word;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .channels-title {
        font-size: 2.5rem;
    }

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

    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .group-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .channels-section {
        padding: 3rem 0;
    }

    .channels-header {
        margin-bottom: 3rem;
    }

    .channels-title {
        font-size: 2.2rem;
    }

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

    .search-filter {
        flex-direction: column;
        gap: 1rem;
    }

    .search-box,
    .country-filter {
        width: 100%;
    }

    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .channel-card {
        padding: 1rem;
        min-height: 80px;
    }

    .channel-card h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .channels-title {
        font-size: 1.8rem;
    }

    .channels-description {
        font-size: 1rem;
    }

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

    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .channel-card {
        padding: 0.8rem;
        min-height: 70px;
    }

    .channel-card img {
        max-width: 100px;
    }

    .channel-card h3 {
        font-size: 0.9rem;
    }

    .group-title {
        font-size: 1.2rem;
    }
}

/* Channel Group Styles */
.channel-group {
    margin-bottom: 3rem;
}

.group-title {
    font-size: 1.5rem;
    color: #FFC107;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Channel Subgroup Styles */
.channel-subgroup {
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 1.5rem;
}

.subgroup-title {
    font-size: 1.2rem;
    color: #FFC107;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Update Channels List Styles */
.channels-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.channel-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.channel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.channel-card h3 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    word-break: break-word;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .group-title {
        font-size: 1.3rem;
    }

    .subgroup-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .channel-card {
        padding: 1rem;
        min-height: 80px;
    }

    .channel-card h3 {
        font-size: 1rem;
    }

    .channel-subgroup {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .channels-list {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .channel-card {
        padding: 0.8rem;
        min-height: 70px;
    }

    .channel-card h3 {
        font-size: 0.9rem;
    }

    .group-title {
        font-size: 1.2rem;
    }

    .subgroup-title {
        font-size: 1rem;
    }

    .channel-subgroup {
        padding: 0.8rem;
    }
}

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    padding: 6px 15px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-button span {
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.pricing-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pricing-btn {
    padding: 0.8rem 0.5rem;
    border: none;
    border-radius: 25px;
    background-color: #212222;
    color: #ededed;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-btn:hover {
    background-color: #FFC107;
    color: #161616;
    transform: translateY(-2px);
}

.pricing-btn.active {
    background-color: #FFC107;
    color: #161616;
    ;
    transform: translateY(-2px);
}

.pricings-section.active {
    display: block;
}


.pricings-section.active {
    animation: fadeIn 0.5s ease-out;
}

.pricings-section {
    display: none;
}

.pricings-section.active {
    display: block;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Contact Us Page Styles
   ========================================= */
.contact-header {
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), #000);
}

.contact-header h1 {
    font-size: 3rem;
    color: #FFC107;
    margin-bottom: 20px;
}

.contact-header p {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h2,
.contact-form h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: #FFC107;
}

.info-item i {
    font-size: 1.5rem;
    color: #FFC107;
    margin-top: 5px;
}

.info-item h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-item p {
    color: #ccc;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #FFC107;
    background: rgba(0, 0, 0, 0.5);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: #000;
    padding: 0 5px;
    color: #FFC107;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #FFC107;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

/* =========================================
   Policies Page Styles
   ========================================= */
.policies-container {
    max-width: 1000px;
    margin: 120px auto 80px;
    padding: 0 20px;
}

.policies-container h1 {
    text-align: center;
    color: #fff;
    font-size: 3rem;
    margin-bottom: 50px;
}

.policy-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.policy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.policy-btn:hover,
.policy-btn.active {
    background: #FFC107;
    color: #000;
    border-color: #FFC107;
}

.policy-section {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease;
}

.policy-section.active {
    display: block;
}

.policy-section h2 {
    color: #FFC107;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.policy-text h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.policy-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-text ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-text ul li {
    color: #ccc;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.policy-text ul li::before {
    content: "•";
    color: #FFC107;
    position: absolute;
    left: 0;
}

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

    .contact-header h1,
    .policies-container h1 {
        font-size: 2rem;
    }
}

/* =========================================
   What is IPTV Section
   ========================================= */
.what-is-iptv {
    padding: 1rem 2rem;
    background: linear-gradient(to bottom, #000, #0a0a0a);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.what-is-iptv .header-container {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.header-container2 {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.what-is-iptv h2 {
    font-size: 2.8rem;
    color: #FFC107;
    margin-bottom: 2rem;
    font-weight: 700;
}

.what-is-iptv .iptv-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: center;
    /* Center all text for better aesthetic */
    max-width: 900px;
    margin: 0 auto;
}

.what-is-iptv .iptv-content p {
    margin-bottom: 2rem;
}

.what-is-iptv ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
    text-align: left;
    /* Keep list items left-aligned internally */
}

.what-is-iptv ul li {
    background: rgba(255, 255, 255, 0.08);
    /* Slightly lighter for better contrast */
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.what-is-iptv ul li:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 193, 7, 0.3);
}

.what-is-iptv ul li i {
    color: #FFC107;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Responsive Styles for What is IPTV */
@media (max-width: 768px) {
    .what-is-iptv {
        padding: 4rem 1.5rem;
    }

    .what-is-iptv h2 {
        font-size: 2.2rem;
    }

    .what-is-iptv .iptv-content {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .what-is-iptv {
        padding: 3rem 1rem;
    }

    .what-is-iptv h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .what-is-iptv ul {
        grid-template-columns: 1fr;
        /* Force single column on small mobile */
        gap: 12px;
    }

    .what-is-iptv ul li {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* =========================================
   Installation Guide Specific Styles
   ========================================= */
.installation-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px 60px;
    text-align: center;
    color: #fff;
}

.installation-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFC107;
}

.device-nav {
    padding: 20px 0;
    top: 70px;
    z-index: 90;
    border-bottom: 1px solid #333;
}

.device-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0 20px;
}

.device-nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    background: #333;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.device-nav a:hover,
.device-nav a.active {
    background: #FFC107;
    color: #000;
}

.guide-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    border-bottom: 1px solid #222;
}

.guide-section:last-child {
    border-bottom: none;
}

.guide-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.guide-section h2 i {
    color: #FFC107;
}

.step {
    margin-bottom: 25px;
    background: #111;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FFC107;
}

.step h3 {
    color: #FFC107;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step p {
    color: #ccc;
    line-height: 1.6;
}

.step strong {
    color: #fff;
}

.guide-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    color: #ffc107;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .installation-hero h1 {
        font-size: 2rem;
    }

    .device-nav ul {
        gap: 10px;
    }

    .device-nav a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

/* Note Designed Style */
.note-designed {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-left: 4px solid #FFC107;
    padding: 1.2rem 1.5rem;
    margin: 2rem auto;
    max-width: 1000px;
    border-radius: 6px;
    text-align: left;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    align-items: center;
    color: #ddd;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.note-designed i {
    color: #FFC107;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 3px;
}

@media (max-width: 768px) {
    .note-designed {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.2rem;
    }

    .note-designed i {
        margin-bottom: 0.5rem;
    }
}