/* Font Face Definitions */
@font-face {
    font-family: 'CircularStd';
    src: url('../fonts/CircularStd-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CircularStd';
    src: url('../fonts/CircularStd-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'CircularStd', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #511BC9;
    color: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

input {
    font-family: inherit;
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

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

/* Header */
.header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-link {
    display: inline-block;
}

.logo {
    height: 100px;
    width: auto;
    background: #fff;
    padding: 8px 15px;
    border-radius: 8px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 40px 20px 60px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.hero-title .highlight {
    color: #EF1893;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: url('../images/line.svg') no-repeat center;
    background-size: contain;
}

.hero-subtitle {
    font-size: 22px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.badge-check {
    flex-shrink: 0;
}

/* WhatsApp CTA */
.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-cta:hover {
    background: #20bd5a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-icon {
    flex-shrink: 0;
    animation: bounce 1s ease-in-out infinite;
}

.urgency-text {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Stickers */
.sticker {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-4px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.sticker img {
    width: 100%;
    height: 100%;
    animation: float 3s ease-in-out infinite;
}

.sticker-yes img {
    animation-delay: 0s;
}

.sticker-thumb img {
    animation-delay: 0.3s;
}

.sticker-yeah img {
    animation-delay: 0.6s;
}

.sticker-omg img {
    animation-delay: 0.9s;
}

/* YES! sticker - Left side, below title area near subtitle */
.sticker-yes {
    left: 10%;
    top: 120px;
    width: 90px;
    height: 65px;
}

/* Thumbs up - Right side, below title area near subtitle */
.sticker-thumb {
    right: 10%;
    top: 100px;
    width: 110px;
    height: 110px;
}

/* YEAH! - Bottom Left, near form/disclaimer */
.sticker-yeah {
    left: 8%;
    top: 320px;
    width: 110px;
    height: 110px;
}

/* OMG! - Bottom Right, near form/disclaimer */
.sticker-omg {
    right: 8%;
    top: 290px;
    width: 120px;
    height: 120px;
}

/* TV Section */
.tv-section {
    position: relative;
    padding: 40px 20px;
    overflow: visible;
}

.tv-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
}

.tv-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.tv-badge {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.channels-badge {
    left: -50px;
    top: 30%;
}

.multi-devices-badge {
    right: -50px;
    bottom: 20%;
}

.badge-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 18px;
    font-weight: 700;
    color: #511BC9;
}

.badge-number.multi {
    color: #EF1893;
}

.badge-label {
    font-size: 12px;
    color: #666;
}

/* Movie Posters Background */
.movie-posters {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    overflow: hidden;
    z-index: 1;
}

.movies-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background: #511BC9;
}

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

.feature-card {
    background: rgba(55, 54, 62, 0.3);
    border-radius: 10px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-check {
    flex-shrink: 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* World Map Section */
.world-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #511BC9 0%, #EF1893 100%);
    position: relative;
    overflow: hidden;
}

.world-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.world-map {
    width: 80%;
    max-width: 800px;
    height: auto;
    opacity: 0.2;
}

.channels-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.channel-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.channel-card:nth-child(1) {
    animation-delay: 0.1s;
}

.channel-card:nth-child(2) {
    animation-delay: 0.15s;
}

.channel-card:nth-child(3) {
    animation-delay: 0.2s;
}

.channel-card:nth-child(4) {
    animation-delay: 0.25s;
}

.channel-card:nth-child(5) {
    animation-delay: 0.3s;
}

.channel-card:nth-child(6) {
    animation-delay: 0.35s;
}

.channel-card:nth-child(7) {
    animation-delay: 0.4s;
}

.channel-card:nth-child(8) {
    animation-delay: 0.45s;
}

.channel-card:nth-child(9) {
    animation-delay: 0.5s;
}

.channel-card:nth-child(10) {
    animation-delay: 0.55s;
}

.channel-card:nth-child(11) {
    animation-delay: 0.6s;
}

.channel-card:nth-child(12) {
    animation-delay: 0.65s;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.channel-card .flag {
    font-size: 28px;
    line-height: 1;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #3d1499 0%, #511BC9 100%);
    position: relative;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.faq-header .section-title {
    margin-bottom: 0;
}

.faq-sticker {
    position: absolute;
    left: -100px;
    top: 0;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.faq-sticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

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

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 200, 100, 0.5);
    border-radius: 10px;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px 60px;
    background: #F3F1F4;
    color: #333;
    position: relative;
    overflow: hidden;
}

.testimonials-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.testimonials-header {
    max-width: 550px;
}

.testimonials-sticker {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
}

.testimonials-sticker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #37363E;
}

.testimonials-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.rating-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.rating-score {
    font-size: 14px;
    color: #666;
}

.trustpilot-stars {
    display: flex;
    align-items: center;
}

.trustpilot-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

/* Testimonials Carousel */
.testimonials-carousel {
    overflow: hidden;
    margin: 0 -20px;
    padding: 0 20px;
}

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

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

    100% {
        transform: translateX(-50%);
    }
}

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

.testimonial-card {
    flex-shrink: 0;
    width: 280px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-date {
    font-size: 12px;
    color: #999;
}

/* Footer */
.footer {
    background: #511BC9;
    padding: 20px 40px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 14px;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 14px;
    color: #fff;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher select {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.language-switcher select:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-switcher select option {
    background: #511BC9;
    color: #fff;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }

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

    .sticker-yes,
    .sticker-thumb,
    .sticker-yeah,
    .sticker-omg {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .feature-badges {
        flex-direction: column;
        align-items: center;
    }

    .whatsapp-cta {
        padding: 15px 40px;
        font-size: 16px;
    }

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

    .tv-badge {
        display: none;
    }

    .section-title {
        font-size: 24px;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

    .channel-card {
        padding: 14px 18px;
        font-size: 14px;
    }

    .channel-card .flag {
        font-size: 24px;
    }

    .testimonials-header-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonials-sticker {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero {
        padding: 30px 15px 40px;
    }

    .urgency-text {
        font-size: 16px;
    }

    .testimonial-card {
        width: 250px;
    }

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

    .channel-card {
        padding: 12px 16px;
    }
}
/* RTL Support for Arabic and Urdu */
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .badge svg,
html[dir="rtl"] .feature-card svg,
html[dir="rtl"] .whatsapp-icon,
html[dir="rtl"] .channel-card .flag {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .faq-question {
    text-align: right;
    flex-direction: row;
}

html[dir="rtl"] .faq-icon {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .language-switcher select {
    background-position: left 10px center;
    padding-right: 12px;
    padding-left: 30px;
}

html[dir="rtl"] .trustpilot-rating {
    flex-direction: row;
}

html[dir="rtl"] .testimonial-stars {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .badge-icon-wrapper {
    margin-right: 0;
    margin-left: 12px;
}

html[dir="rtl"] .tv-badge {
    flex-direction: row;
}

html[dir="rtl"] .footer-links {
    flex-direction: row;
}

html[dir="rtl"] .footer-links li:not(:last-child) {
    margin-right: 0;
    margin-left: 20px;
}

/* Sticky WhatsApp Button */
.sticky-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none; /* No underline */
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.sticky-whatsapp svg {
    width: 35px;
    height: 35px;
    margin: 0 !important; /* Override any global margins from RTL fix */
}

/* RTL Support for Sticky Button */
html[dir="rtl"] .sticky-whatsapp {
    right: auto;
    left: 20px;
}

/* WhatsApp Attention Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.sticky-whatsapp {
    animation: whatsapp-pulse 2s infinite;
}

.sticky-whatsapp:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
