/* ========== CRAZY IPTV THEME - CLEAN BACKGROUND with YELLOW & BLUE + SMOOTH ANIMATIONS ========== */
:root {
    --primary-yellow: #F5B700;
    --primary-yellow-dark: #D89E00;
    --primary-blue: #0044AA;
    --primary-blue-dark: #003388;
    --accent-pink: #FF69B4;
    --accent-green: #22C55E;
    --text-dark: #1E293B;
    --text-muted: #475569;
    --gradient-bg: linear-gradient(135deg, #FEF9E6 0%, #E8F0FE 100%);
    --gradient-yellow: linear-gradient(135deg, #F5B700, #FFD966);
    --gradient-blue: linear-gradient(135deg, #0044AA, #3B82F6);
    --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient-bg);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Clean Static Background Pattern - NO IRRITATING MOVEMENT */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(245, 183, 0, 0.03) 0%, rgba(0, 68, 170, 0.02) 100%);
    pointer-events: none;
    z-index: -1;
}

/* No floating elements - removed irritating moving elements */

#spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FEF9E6;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.elegant-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #E2E8F0;
    border-top: 3px solid var(--primary-yellow);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Navbar - with gentle animation */
.navbar-elegant {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.8rem 2rem;
    border-bottom: 2px solid var(--primary-yellow);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.navbar-brand {
    margin-right: 2rem;
    display: inline-block;
}

.navbar-brand img {
    height: 100px;
    width: auto;
    max-width: 100%;
    transition: all 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.02);
}

.navbar-elegant .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

.navbar-brand {
    margin-left: 1rem;
}

.nav-link-elegant {
    color: var(--text-dark) !important;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s;
    position: relative;
}

.nav-link-elegant:hover {
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
}

.nav-link-elegant.active {
    color: var(--primary-blue) !important;
}

.nav-link-elegant.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 3px;
}

.btn-primary-elegant {
    background: var(--gradient-yellow);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: #1E293B;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(245, 183, 0, 0.3);
    transition: all 0.3s;
}

.btn-primary-elegant:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 183, 0, 0.5);
    color: #1E293B;
}

.btn-outline-elegant {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-yellow-dark);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-outline-elegant:hover {
    background: var(--primary-yellow);
    color: #1E293B;
    transform: translateY(-3px);
}

/* Hero Section */
.hero-elegant {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 4rem 1rem;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.hero-moon-icon {
    font-size: 3rem;
    color: var(--primary-yellow);
    filter: drop-shadow(0 2px 5px rgba(245, 183, 0, 0.3));
}

.urdu-text {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.main-title-elegant {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-yellow), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
}

.title-sub-elegant {
    font-size: 1.3rem;
    color: var(--primary-blue);
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.hero-desc-elegant {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1.5rem auto;
}

/* Stats Bar */
.stats-elegant {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 1.2rem 2rem;
    margin-top: -40px;
    position: relative;
    z-index: 5;
    border: 1px solid var(--primary-yellow);
    box-shadow: var(--shadow-sm);
}

.stat-number-elegant {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    transition: all 0.3s;
}

.stat-number-elegant:hover {
    transform: scale(1.05);
    color: var(--primary-yellow);
}

/* Glass Cards */
.glass-card-elegant {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(0, 68, 170, 0.15);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.glass-card-elegant:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 25px 35px rgba(245, 183, 0, 0.15);
}

/* Apps Grid - 4 per row */
.apps-grid-elegant {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.app-card-elegant {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 68, 170, 0.1);
    box-shadow: var(--shadow-sm);
}

.app-card-elegant:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 25px 35px rgba(245, 183, 0, 0.2);
}

.app-icon-elegant {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    transition: all 0.3s;
}

.app-card-elegant:hover .app-icon-elegant {
    transform: scale(1.05);
}

.app-card-elegant h6 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.btn-app-elegant {
    display: inline-block;
    background: rgba(0, 68, 170, 0.08);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-decoration: none;
    margin: 0.25rem;
    transition: 0.2s;
    font-weight: 500;
}

.btn-app-elegant:hover {
    background: var(--primary-yellow);
    color: #1E293B;
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #FEF9E6 0%, #FFFFFF 100%);
}

.section-header-elegant {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-elegant h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-underline-elegant {
    width: 80px;
    height: 4px;
    background: var(--gradient-yellow);
    margin: 0.5rem auto;
    border-radius: 2px;
}

.pricing-grid-elegant {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.pricing-card-professional {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(0, 68, 170, 0.1);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card-professional:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    box-shadow: 0 25px 35px rgba(245, 183, 0, 0.2);
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.price-features-elegant {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    flex-grow: 1;
}

.price-features-elegant li {
    margin: 0.7rem 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-features-elegant li i {
    color: var(--accent-green);
    width: 18px;
    font-size: 0.8rem;
}

.btn-price-professional {
    background: var(--gradient-yellow);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: #1E293B;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    width: 100%;
}

.btn-price-professional:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 183, 0, 0.4);
}

/* FAQ */
.faq-container-elegant {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-elegant {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    border-left: 4px solid var(--primary-yellow);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.faq-item-elegant:hover {
    transform: translateX(5px);
    border-left-color: #FFD966;
}

.faq-question-elegant {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary-blue);
}

.faq-answer-elegant {
    padding: 0 1.5rem 1.2rem 1.5rem;
    display: none;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item-elegant.active .faq-answer-elegant {
    display: block;
}

/* Feature Icons */
.feature-grid-elegant {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.feature-item-elegant {
    text-align: center;
    transition: all 0.3s;
}

.feature-item-elegant img {
    width: 80px;
    height: 80px;
    transition: all 0.3s;
}

.feature-item-elegant:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(245, 183, 0, 0.4));
}

.feature-item-elegant:hover div {
    transform: translateY(-3px);
    color: var(--primary-yellow);
}

/* Footer */
.footer-elegant {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F4FF 100%);
    padding: 4rem 0 2.5rem;
    margin-top: 4rem;
    border-top: 3px solid var(--primary-yellow);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
}

.footer-heading-elegant {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.footer-heading-elegant::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-yellow);
    border-radius: 3px;
}

.footer-links-elegant {
    list-style: none;
    padding: 0;
}

.footer-links-elegant li {
    margin-bottom: 0.8rem;
}

.footer-links-elegant li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links-elegant li a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.social-icons-elegant {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons-elegant a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 68, 170, 0.08);
    border-radius: 50%;
    color: var(--primary-blue);
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icons-elegant a:hover {
    background: var(--gradient-yellow);
    color: #1E293B;
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 68, 170, 0.1);
    color: #64748B;
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-copyright a:hover {
    color: var(--primary-yellow);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary-yellow);
}

/* Floating WhatsApp & Back to Top */
.whatsapp-float-elegant {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
    transition: all 0.3s;
}

.whatsapp-float-elegant:hover {
    transform: scale(1.1);
}

.back-to-top-elegant {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-yellow);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E293B;
    text-decoration: none;
    z-index: 100;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top-elegant:hover {
    transform: translateY(-3px);
    background: var(--primary-yellow-dark);
}

@media (max-width: 1200px) {
    .pricing-grid-elegant {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .apps-grid-elegant {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .main-title-elegant {
        font-size: 2.8rem;
    }

    .hero-title-wrapper .urdu-text {
        font-size: 1.8rem;
    }

    .apps-grid-elegant {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    .navbar-brand img {
        height: 80px;
    }

    .app-icon-elegant {
        width: 70px;
        height: 70px;
    }

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

.feature-image-clear {
    background: transparent !important;
    box-shadow: none !important;
}


html, body {
    overflow-x: hidden;
}