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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a1a;
    color: #ffffff;
    line-height: 1.6;
}

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

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

/* Header */
header {
    background: rgba(10, 10, 26, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo img {
    height: 50px;
}

nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #6366f1;
}

#lang {
    background: #1a1a2e;
    color: white;
    border: 1px solid #6366f1;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

#lang option {
    background: #1a1a2e;
    color: white;
}

/* Hero Section */
.hero {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0a0a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #a5b4fc;
    margin-bottom: 40px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stats div {
    text-align: center;
}

.stats strong {
    display: block;
    font-size: 2.2rem;
    color: #6366f1;
}

.stats span {
    color: #94a3b8;
    font-size: 0.95rem;
}

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

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn.secondary {
    background: transparent;
    border: 2px solid #25d366;
    color: #25d366;
}

.btn.secondary:hover {
    background: #25d366;
    color: white;
}

/* Trust Section */
.trust {
    padding: 40px 20px;
    background: linear-gradient(180deg, #0a0a1a, #111127);
}

.logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.logo-card:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    transform: translateY(-5px);
}

.logo-card i {
    color: #6366f1;
    font-size: 1.3rem;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 2.5rem;
    color: #6366f1;
    transition: all 0.3s;
}

.payment-methods i:hover {
    color: #8b5cf6;
    transform: scale(1.1);
}

/* Pricing Section */
.pricing, .channels, .movies, .why, .steps, .devices, .apps, .reviews, .faq {
    padding: 80px 20px;
}

.pricing {
    background: linear-gradient(180deg, #111127, #0a0a1a);
}

.pricing h3, .channels h3, .movies h3, .why h3, .steps h3, .devices h3, .apps h3, .reviews h3, .faq h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.pricing-grid, .why-grid, .steps-grid, .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #6366f1;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.card h4 i {
    color: #6366f1;
    margin-right: 10px;
}

.card p {
    color: #94a3b8;
}

.card .btn {
    margin-top: 20px;
}

/* Package Icons */
.package-icon {
    font-size: 3rem;
    color: #6366f1;
    margin-bottom: 15px;
}

.package-icon i {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Card Styles */
.pricing-grid .card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin: 20px 0;
}

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

.pricing-grid .card .features li {
    padding: 8px 0;
    color: #94a3b8;
}

.pricing-grid .card .features i {
    color: #10b981;
    margin-right: 10px;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.popular-badge.best {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.card.popular, .card.best-value {
    border: 2px solid #6366f1;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

/* Channels & Movies */
.channels, .movies {
    background: #0a0a1a;
}

.channels .logos, .movies .logos, .apps .logos {
    justify-content: center;
}

.channels .logo-card, .movies .logo-card, .apps .logo-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    padding: 20px 35px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Why Section */
.why {
    background: linear-gradient(180deg, #0a0a1a, #111127);
}

.why-grid .card i {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 15px;
}

.why-grid .card h4 {
    font-size: 1.1rem;
}

/* Steps Section */
.steps {
    background: #0a0a1a;
}

.steps-grid .card {
    padding: 40px 25px;
}

.step-number {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.steps-grid .card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Devices Section */
.devices {
    background: linear-gradient(180deg, #0a0a1a, #111127);
    text-align: center;
}

.devices p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 900px;
    margin: 0 auto;
    line-height: 2;
}

.devices i {
    color: #6366f1;
    margin: 0 5px;
}

/* Apps Section */
.apps {
    background: #0a0a1a;
}

/* Reviews */
.reviews {
    background: linear-gradient(180deg, #0a0a1a, #111127);
}

.reviews .card {
    text-align: left;
}

.reviews .card .stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.reviews .card p {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

/* FAQ */
.faq {
    background: #0a0a1a;
}

.faq-grid .card {
    text-align: left;
}

.faq-grid .card strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #ffffff;
}

.faq-grid .card p {
    color: #94a3b8;
    line-height: 1.7;
}

/* Footer */
footer {
    background: #050510;
    padding: 50px 20px 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: #94a3b8;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6366f1;
}

footer p {
    color: #64748b;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 5px 40px rgba(37, 211, 102, 0.8); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    .header-flex {
        display: flex;
        justify-content: space-between; /* E mban logon majtas dhe gjuhėn djathtas */
        align-items: center;
        gap: 8px;
    }

    .logo {
        flex: 0 0 auto;
    }

    .logo img {
        height: 28px; /* Logo mė e vogėl pėr t'u pėrshtatur bukur */
    }

    #lang {
        flex: 0 0 auto;
        padding: 4px 8px;
        font-size: 12px;
        margin: 0;
    }

    nav {
        flex: 0 0 100%; /* Detyron menynė tė kalojė nė rresht tė ri */
        justify-content: center;
        gap: 12px;
        margin-top: 5px; /* Hapėsirė e vogėl nga logoja */
    }

    nav a {
        font-size: 13px;
    }
    
    /* Pėrshtatim hapėsirėn e hero section me header-in e ri mė tė hollė */
    .hero {
        padding: 130px 20px 60px; /* E rritėm vlerėn e parė (130px) qė ta shtyjė poshtė */
    }

    /* Bėjmė pjesėn e verdhė pak mė tė vogėl pėr ekranet e vogla */
    .badge {
        padding: 8px 15px;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .stats {
        gap: 20px;
    }
    
    .stats strong {
        font-size: 1.5rem;
    }
    
    .pricing-grid, .why-grid, .steps-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-card {
        padding: 15px 20px;
        font-size: 0.9rem;
    }
    
    .payment-methods i {
        font-size: 2rem;
    }
}
/* RTL Support for Arabic */
[dir="rtl"] body {
    direction: rtl;
}

[dir="rtl"] nav {
    flex-direction: row-reverse;
}

[dir="rtl"] .faq-grid .card {
    text-align: right;
}

[dir="rtl"] .reviews .card {
    text-align: right;
}

[dir="rtl"] .pricing-grid .card .features {
    text-align: right;
}
