
        /* ============================================
           QURAN TV THEME - GREEN & GOLD COLORS
           Hero Section & Stats Bar: EXACTLY AS PROVIDED
           Download Apps Section: Modern Grid with 4 per row
           Customer Plan Section: NEW MODERN LAYOUT (ALL 7 POINTS PRESERVED)
           All Other Content Unchanged
           ============================================ */
        
        :root {
            --quran-green: #1A472B;
            --quran-gold: #D4AF37;
            --quran-cream: #FEF9E6;
            --quran-light: #F5F7F2;
            --quran-white: #FFFFFF;
            --quran-dark: #2C3E2B;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--quran-cream);
            color: var(--quran-dark);
            overflow-x: hidden;
        }

        /* Spinner */
        #spinner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--quran-green);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .custom-spinner {
            width: 60px;
            height: 60px;
            border: 6px solid rgba(212, 175, 55, 0.3);
            border-top: 6px solid var(--quran-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Navbar - Perfectly Aligned */
        .navbar-sama {
            background: var(--quran-green);
            padding: 0.8rem 1rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            padding: 0 !important;
            margin: 0 !important;
            line-height: 1;
        }
        .navbar-brand img {
            display: block;
            vertical-align: middle;
        }
        .nav-link-sama {
            color: var(--quran-cream) !important;
            font-weight: 500;
            margin: 0 0.25rem;
            transition: all 0.3s ease;
            border-radius: 30px;
        }
        .nav-link-sama:hover, .nav-link-sama.active {
            background: var(--quran-gold);
            color: var(--quran-green) !important;
        }
        .btn-primary-sama {
            background: var(--quran-gold);
            color: var(--quran-green);
            font-weight: 600;
            padding: 8px 22px;
            border-radius: 40px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-size: 0.9rem;
        }
        .btn-primary-sama:hover {
            background: #e5bc5a;
            transform: translateY(-2px);
            color: #0f3a22;
        }
        .btn-outline-sama {
            background: transparent;
            color: var(--quran-gold);
            font-weight: 600;
            padding: 8px 22px;
            border-radius: 40px;
            text-decoration: none;
            border: 2px solid var(--quran-gold);
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-outline-sama:hover {
            background: var(--quran-gold);
            color: var(--quran-green);
        }
        .btn-navy-outline {
            background: transparent;
            border: 1.5px solid var(--quran-green);
            color: var(--quran-green);
            border-radius: 30px;
            padding: 5px 12px;
            font-size: 0.75rem;
            text-decoration: none;
            display: inline-block;
            transition: 0.2s;
        }
        .btn-navy-outline:hover {
            background: var(--quran-green);
            color: white;
        }

        /* Hero Section - EXACTLY AS PROVIDED */
        .hero-split {
            background: linear-gradient(135deg, #0a2f1f 0%, #1a472b 100%);
            min-height: 85vh;
            display: flex;
            align-items: center;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.15;
            z-index: 0;
        }
        .hero-content-left {
            position: relative;
            z-index: 2;
            padding-right: 2rem;
        }
        .badge-islamic {
            display: inline-block;
            background: rgba(212, 175, 55, 0.2);
            backdrop-filter: blur(4px);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            color: var(--quran-gold);
            font-size: 0.85rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(212, 175, 55, 0.4);
        }
        .hero-title-main {
            font-size: 3.8rem;
            font-weight: 800;
            color: white;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        .hero-title-main span {
            color: var(--quran-gold);
        }
        .hero-desc {
            color: rgba(255, 250, 235, 0.92);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        .btn-gold {
            background: var(--quran-gold);
            color: var(--quran-green);
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
        }
        .btn-gold:hover {
            background: #e8bc5e;
            transform: translateY(-2px);
            color: #0f3a22;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .btn-outline-gold {
            background: transparent;
            color: var(--quran-gold);
            font-weight: 600;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            border: 2px solid var(--quran-gold);
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 1rem;
        }
        .btn-outline-gold:hover {
            background: var(--quran-gold);
            color: var(--quran-green);
            transform: translateY(-2px);
        }
        @media (max-width: 992px) {
            .hero-title-main { font-size: 2.5rem; }
            .hero-content-left { padding-right: 0; text-align: center; margin-bottom: 2rem; }
            .hero-desc { font-size: 1rem; }
        }

        /* Stats Bar - EXACTLY AS PROVIDED */
        .stats-grid {
            background: var(--quran-white);
            margin-top: -2rem;
            position: relative;
            z-index: 5;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            padding: 1rem 1.5rem;
        }
        .stat-card-mini {
            text-align: center;
            padding: 1rem;
            border-right: 1px solid #eee;
        }
        .stat-card-mini:last-child { border-right: none; }
        .stat-number { font-size: 1.4rem; font-weight: 800; color: var(--quran-green); }
        .stat-label { font-size: 0.8rem; color: #666; }
        @media (max-width: 768px) {
            .stat-card-mini { border-right: none; border-bottom: 1px solid #eee; }
            .stat-card-mini:last-child { border-bottom: none; }
        }

        /* Download Apps Section - Modern Grid with 4 per row */
        .apps-section {
            background: linear-gradient(135deg, var(--quran-light) 0%, #fff9ef 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        .apps-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .apps-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(26,71,43,0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
            position: relative;
            z-index: 1;
        }
        .section-header h2 {
            color: var(--quran-green);
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            position: relative;
            display: inline-block;
        }
        .section-header h2:before {
            font-size: 2rem;
            position: absolute;
            left: -45px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.6;
        }
        .section-header h2:after {
            font-size: 2rem;
            position: absolute;
            right: -45px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.6;
        }
        .section-header .underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--quran-gold), #ffdd88, var(--quran-gold));
            margin: 0 auto;
            border-radius: 4px;
            animation: pulseWidth 2s ease-in-out infinite;
        }
        @keyframes pulseWidth {
            0%, 100% { width: 80px; opacity: 0.7; }
            50% { width: 100px; opacity: 1; }
        }
        .apps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.8rem;
            position: relative;
            z-index: 1;
            margin-bottom: 2rem;
        }
        .app-card {
            background: white;
            border-radius: 28px;
            padding: 1.8rem 1.2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border: 1px solid rgba(212,175,55,0.2);
            position: relative;
            overflow: hidden;
        }
        .app-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
            transition: left 0.6s ease;
        }
        .app-card:hover::before {
            left: 100%;
        }
        .app-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 40px rgba(26,71,43,0.15);
            border-color: var(--quran-gold);
        }
        .app-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 1.2rem auto;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f8f3e8, #fff9ef);
            border-radius: 24px;
            transition: all 0.3s ease;
        }
        .app-card:hover .app-icon {
            transform: scale(1.05);
            background: linear-gradient(135deg, #fff5e6, #fff0df);
        }
        .app-icon img {
            max-width: 100%;
            max-height: 65px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }
        .app-card:hover .app-icon img {
            transform: scale(1.05);
        }
        .app-card h5 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--quran-green);
            margin-bottom: 1rem;
            letter-spacing: -0.2px;
        }
        .app-buttons {
            display: flex;
            gap: 0.6rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-app {
            background: transparent;
            border: 1.5px solid var(--quran-green);
            color: var(--quran-green);
            border-radius: 40px;
            padding: 6px 14px;
            font-size: 0.7rem;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .btn-app:hover {
            background: var(--quran-green);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26,71,43,0.2);
        }
        .btn-app i {
            margin-right: 4px;
            font-size: 0.7rem;
        }
        @media (max-width: 992px) {
            .apps-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .apps-section { padding: 3rem 0; }
            .apps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
            .app-card { padding: 1.2rem 0.8rem; }
            .app-icon { width: 70px; height: 70px; }
            .app-icon img { max-height: 50px; }
            .section-header h2:before, .section-header h2:after { display: none; }
        }

        /* Customer Plan Section - NEW MODERN LAYOUT (ALL 7 POINTS) */
        .pricing-section {
            background: var(--quran-light);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }
        .pricing-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .pricing-section .section-header h2 {
            color: var(--quran-green);
        }
        .pricing-section .section-header h2:before {
        
            font-size: 2rem;
        }
        .pricing-section .section-header h2:after {
        
            font-size: 2rem;
        }
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 1;
            margin-top: 2rem;
        }
        .pricing-card-modern {
            background: white;
            border-radius: 32px;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(212,175,55,0.2);
            position: relative;
            overflow: hidden;
        }
        .pricing-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--quran-gold), #ffdd88, var(--quran-gold));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        .pricing-card-modern:hover::before {
            transform: scaleX(1);
        }
        .pricing-card-modern.featured {
            border: 2px solid var(--quran-gold);
            transform: scale(1.02);
            background: linear-gradient(145deg, white, #fffef7);
            box-shadow: 0 20px 40px rgba(212,175,55,0.2);
        }
        .pricing-card-modern:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 45px rgba(0,0,0,0.1);
        }
        .pricing-card-modern.featured:hover {
            transform: translateY(-8px) scale(1.02);
        }
        .price-badge {
            display: inline-block;
            background: rgba(212,175,55,0.15);
            color: var(--quran-gold);
            font-size: 0.7rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 50px;
            margin-bottom: 1rem;
        }
        .price-amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--quran-green);
            line-height: 1;
        }
        .price-amount small {
            font-size: 0.9rem;
            font-weight: 500;
            color: #888;
        }
        .price-period {
            font-size: 0.8rem;
            color: #888;
            margin-bottom: 1.5rem;
            display: block;
        }
        .price-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            text-align: left;
        }
        .price-features li {
            padding: 0.45rem 0;
            font-size: 0.8rem;
            color: #555;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .price-features li i {
            color: var(--quran-gold);
            font-size: 0.75rem;
            width: 20px;
            flex-shrink: 0;
        }
        .btn-price {
            background: var(--quran-gold);
            color: var(--quran-green);
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            width: 100%;
            border: none;
            font-size: 0.9rem;
        }
        .btn-price:hover {
            background: #e8bc5e;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212,175,55,0.3);
        }
        @media (max-width: 992px) {
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .pricing-grid { grid-template-columns: 1fr; }
            .pricing-card-modern.featured { transform: scale(1); }
        }

        /* Cards & Modern Elements - UNCHANGED */
        .card-modern {
            background: white;
            border-radius: 32px;
            padding: 2rem;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
            transition: transform 0.2s;
            text-align: center;
            border: 1px solid rgba(212,175,55,0.2);
        }

        /* FAQ - UNCHANGED */
        .faq-item {
            background: white;
            border-radius: 20px;
            margin-bottom: 1rem;
            padding: 0.5rem 1rem;
            cursor: pointer;
            border-left: 5px solid var(--quran-gold);
        }
        .faq-question {
            font-weight: 600;
            padding: 1rem 0;
            font-size: 1.1rem;
            color: var(--quran-green);
        }
        .faq-answer {
            display: none;
            padding-bottom: 1rem;
            color: #666;
            line-height: 1.5;
        }
        .faq-item.active .faq-answer {
            display: block;
        }

        /* Footer - UNCHANGED */
        .footer-sama {
            background: var(--quran-green);
            color: #e2e8dc;
            padding: 3rem 0 1.5rem;
            margin-top: 2rem;
        }
        .footer-heading {
            color: var(--quran-gold);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .footer-links-list {
            list-style: none;
            padding: 0;
        }
        .footer-links-list li a {
            color: #cddec9;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .footer-links-list li a:hover {
            color: var(--quran-gold);
            padding-left: 5px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(212,175,55,0.3);
            margin-top: 2rem;
            font-size: 0.85rem;
        }

        /* WhatsApp Float - UNCHANGED */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 99;
            background: #25D366;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            transition: 0.2s;
        }
        .whatsapp-float img {
            width: 70%;
        }
        .back-to-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: var(--quran-gold);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--quran-green);
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            z-index: 99;
        }
        .feature-line-item {
            margin-bottom: 3rem;
        }
        .feature-content h3 {
            color: var(--quran-green);
            font-weight: 700;
        }
        .qr-code-wrapper img {
            border-radius: 20px;
        }
    