        /* CSS Reset & Base */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary-blue: #3b82f6;
            --deep-blue: #1d4ed8;
            --light-blue: #60a5fa;
            --accent-blue: #2563eb;
            --dark-blue: #1e3a8a;
            --text-primary: #ffffff;
            --text-secondary: #e5e7eb;
            --text-muted: #9ca3af;
            --background: #0f172a;
            --surface: #1e293b;
            --border: rgba(59, 130, 246, 0.2);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--background);
            overflow-x: hidden;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
           
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--text-primary);
        }

        .logo-img {
            width: auto;
            height: 60px;
            border-radius: 12px;
            object-fit: contain;
        }

        .logo-text {
            display: none;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-blue);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
          background-image: url('https://choloiptv.store/assets/img/bg4.jpg');
		    background-repeat: no-repeat;
			


            z-index: 1;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            max-width: 600px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            color: var(--light-blue);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--text-primary), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-blue);
            display: block;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            padding: 1rem 2rem;
            border: 2px solid var(--border);
            border-radius: 0.75rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-secondary:hover {
            border-color: var(--primary-blue);
            background: rgba(59, 130, 246, 0.1);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            background: var(--surface);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: rgba(59, 130, 246, 0.05);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 2rem;
            background: var(--background);
        }

       .pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

        .pricing-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .pricing-card.featured {
            border-color: var(--primary-blue);
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-blue);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

        .plan-period {
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-feature {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .plan-feature::before {
            content: '✓';
            color: var(--primary-blue);
            font-weight: bold;
        }

        /* Free Trial Section */
        .free-trial {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            position: relative;
            overflow: hidden;
        }

        .free-trial::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .trial-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .trial-text {
            max-width: 500px;
        }

        .trial-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }

        .trial-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .trial-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .trial-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .trial-feature {
            padding: 0.75rem 0;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.1rem;
        }

        .trial-feature::before {
            content: '✓';
            background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.875rem;
            flex-shrink: 0;
        }

        .trial-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .trial-card {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 1.5rem;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            right: 1rem;
            background: rgba(15, 23, 42, 0.95);
        }

        .trial-timer {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .trial-timer-label {
            color: var(--text-muted);
            font-size: 0.875rem;
            margin-bottom: 2rem;
        }

        /* Content with Image Sections */
        .content-section {
            padding: 6rem 2rem;
        }

        .content-section:nth-child(even) {
            background: var(--surface);
        }

        .content-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .content-grid.reverse {
            direction: rtl;
        }

        .content-grid.reverse > * {
            direction: ltr;
        }

        .content-text {
            max-width: 500px;
        }

        .content-badge {
            display: inline-block;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            color: var(--light-blue);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .content-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .content-description {
            font-size: 1.125rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .content-points {
            list-style: none;
            margin-bottom: 2rem;
        }

        .content-point {
            padding: 0.5rem 0;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .content-point::before {
            content: '→';
            color: var(--primary-blue);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .content-visual {
            position: relative;
        }

        .content-image {
            width: 100%;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .content-image:hover {
            transform: scale(1.02);
        }

        .image-overlay {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            right: 1rem;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 0.75rem;
            padding: 1rem;
            color: white;
        }

        .overlay-title {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .overlay-subtitle {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        /* Statistics Section */
        .stats-section {
            padding: 4rem 2rem;
            background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
        }

        .stats-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .stat-description {
            font-size: 0.875rem;
            opacity: 0.7;
            margin-top: 0.5rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: var(--background);
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .cta-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: var(--text-secondary);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: white;
            color: var(--primary-blue);
            padding: 1rem 2rem;
            border-radius: 0.75rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer {
            background: var(--surface);
            padding: 3rem 2rem 1rem;
            border-top: 1px solid var(--border);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            display: block;
            padding: 0.25rem 0;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-blue);
        }

        .footer-bottom {
    
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--text-muted);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Enhanced Responsive Design for ALL devices */
        
        /* Large Desktop */
        @media (min-width: 1440px) {
            .hero-content,
            .trial-content,
            .content-grid {
                max-width: 1400px;
                margin: 0 auto;
            }
            
            .hero-title {
                font-size: 4.5rem;
            }
            
            .section-title {
                font-size: 3.5rem;
            }
        }

        /* Standard Desktop */
        @media (min-width: 1200px) and (max-width: 1439px) {
            .container {
                max-width: 1200px;
            }
        }

        /* Small Desktop / Large Laptop */
        @media (min-width: 1024px) and (max-width: 1199px) {
            .hero-content,
            .trial-content,
            .content-grid {
                gap: 3rem;
            }
            
            .nav {
                padding: 1rem 1.5rem;
            }
        }

        /* Tablet Landscape */
        @media (min-width: 768px) and (max-width: 1023px) {
            .hero-content,
            .trial-content,
            .content-grid {
                gap: 2.5rem;
            }
            
            .hero-stats {
                gap: 1.5rem;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 800px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Tablet Portrait & Large Mobile */
        @media (max-width: 767px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(15, 23, 42, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 1rem;
                border-top: 1px solid var(--border);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-content,
            .trial-content,
            .content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .content-grid.reverse {
                direction: ltr;
            }

            .hero-stats {
                justify-content: center;
                gap: 2rem;
            }

            .hero-buttons,
            .cta-buttons {
                justify-content: center;
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn-primary,
            .btn-secondary,
            .btn-white {
                width: 100%;
                max-width: 300px;
                text-align: center;
                justify-content: center;
            }

            .nav {
                padding: 1rem;
                position: relative;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-5px);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .trial-visual {
                order: -1;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .hero {
                padding-top: 80px;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .content-title {
                font-size: 2rem;
            }
        }

        /* Standard Mobile */
        @media (max-width: 480px) {
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .stat {
                padding: 1rem;
                background: rgba(59, 130, 246, 0.1);
                border-radius: 1rem;
              border: 1px solid rgba(59, 130, 246, 0.2);
           }

           .hero-buttons,
           .cta-buttons {
               width: 100%;
           }

           .btn-primary,
           .btn-secondary,
           .btn-white {
               width: 100%;
               max-width: none;
               padding: 1rem;
               font-size: 1rem;
           }

           .features-grid {
               gap: 1.5rem;
           }

           .feature-card {
               padding: 1.5rem;
           }

           .content-section {
               padding: 4rem 1rem;
           }

           .hero {
               padding: 1rem;
               padding-top: 80px;
           }

           .nav {
               padding: 0.75rem;
           }

           .logo-img {
               width: 50px;
               height: 50px;
           }

           .section-title {
               font-size: 2rem;
           }

           .content-title {
               font-size: 1.75rem;
           }

           .stats-grid {
               grid-template-columns: 1fr;
               gap: 1rem;
           }

           .stat-card {
               padding: 1.5rem;
               background: rgba(255, 255, 255, 0.1);
               border-radius: 1rem;
           }
       }

       /* Small Mobile */
       @media (max-width: 360px) {
           .hero,
           .content-section {
               padding: 1rem 0.5rem;
           }

           .hero {
               padding-top: 70px;
           }

           .nav {
               padding: 0.5rem;
           }

           .logo-img {
               width: 45px;
               height: 45px;
           }

           .cta-button {
               padding: 0.5rem 1rem;
               font-size: 0.875rem;
           }

           .hero-title {
               font-size: 2rem;
           }

           .section-title {
               font-size: 1.75rem;
           }

           .content-title {
               font-size: 1.5rem;
           }

           .feature-card,
           .pricing-card {
               padding: 1rem;
           }

           .btn-primary,
           .btn-secondary,
           .btn-white {
               padding: 0.875rem;
               font-size: 0.95rem;
           }
       }

       /* Landscape Mobile */
       @media (max-height: 500px) and (orientation: landscape) {
           .hero {
               padding: 1rem;
               padding-top: 70px;
               min-height: auto;
           }

           .hero-content {
               gap: 2rem;
           }

           .hero-title {
               font-size: 2rem;
           }

           .hero-subtitle {
               font-size: 1rem;
           }

           .hero-stats {
               flex-direction: row;
               gap: 1rem;
           }

           .content-section {
               padding: 3rem 1rem;
           }
       }

       /* High DPI / Retina Displays */
       @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
           .logo-img,
           .content-image {
               image-rendering: -webkit-optimize-contrast;
               image-rendering: crisp-edges;
           }
       }

       /* Print Styles */
       @media print {
           .header,
           .cta-section,
           .footer {
               display: none;
           }
           
           .hero,
           .content-section {
               page-break-inside: avoid;
           }
       }

       @media (max-width: 480px) {
           .hero-stats {
               flex-direction: column;
               gap: 1rem;
           }

           .hero-buttons {
               flex-direction: column;
               align-items: center;
           }

           .btn-primary,
           .btn-secondary {
               width: 100%;
               text-align: center;
               justify-content: center;
           }
       }

       /* Performance optimizations */
       .hero-image {
           content-visibility: auto;
           contain-intrinsic-size: 500px 300px;
       }

       /* Accessibility */
       @media (prefers-reduced-motion: reduce) {
           * {
               animation-duration: 0.01ms !important;
               animation-iteration-count: 1 !important;
               transition-duration: 0.01ms !important;
           }
       }

       /* Focus styles */
       .cta-button:focus,
       .btn-primary:focus,
       .btn-secondary:focus,
       .btn-white:focus {
           outline: 2px solid var(--primary-blue);
           outline-offset: 2px;
       }
   	
.customer-service-banner {
   background: var(--surface);
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
   padding: 2rem;
}

.banner-container {
   max-width: 1200px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   gap: 2rem;
   background: rgba(59, 130, 246, 0.05);
   border: 1px solid var(--border);
   border-radius: 1rem;
   padding: 1.5rem 2rem;
}

.banner-icon {
   font-size: 3rem;
   background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
   width: 70px;
   height: 70px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.banner-info {
   flex: 1;
}

.banner-info h3 {
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--text-primary);
   margin-bottom: 0.25rem;
}

.banner-info p {
   color: var(--text-secondary);
   font-size: 1rem;
}

.banner-buttons {
   display: flex;
   gap: 1rem;
}

.support-btn {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.75rem 1.5rem;
   border-radius: 0.5rem;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
   font-size: 0.95rem;
}

.support-btn.whatsapp {
   background: #25d366;
   color: white;
}

.support-btn.whatsapp:hover {
   background: #20b954;
   transform: translateY(-2px);
}

.support-btn.email {
   background: var(--primary-blue);
   color: white;
}

.support-btn.email:hover {
   background: var(--deep-blue);
   transform: translateY(-2px);
}

@media (max-width: 768px) {
   .banner-container {
       flex-direction: column;
       text-align: center;
       gap: 1.5rem;
   }
   
   .banner-buttons {
       width: 100%;
       justify-content: center;
   }
}

@media (max-width: 480px) {
   .banner-buttons {
       flex-direction: column;
       width: 100%;
   }
   
   .support-btn {
       justify-content: center;
   }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: var(--surface);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid var(--border);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.1);
}

.faq-question:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: -2px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    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;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-content p {
    margin-bottom: 1rem;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content ul {
    list-style: none;
    margin: 1rem 0;
}

.faq-content li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.faq-content li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.faq-highlight {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    color: var(--text-primary);
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid var(--border);
    border-radius: 1rem;
}

.faq-cta h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 0 1.5rem 1rem;
    }
    
    .faq-section {
        padding: 4rem 1rem;
    }
}

/* Trustpilot Reviews Section */
.trustpilot-section {
    padding: 6rem 2rem;
    background: var(--surface);
    position: relative;
}

.trustpilot-container {
    max-width: 1400px; /* Increased for 5 columns */
    margin: 0 auto;
}

.trustpilot-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trustpilot-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #00b67a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 24px;
    height: 24px;
    background: #00b67a;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star.empty {
    background: #ddd;
}

.rating-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.trustpilot-summary {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* 5 Reviews in Line */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #00b67a;
    box-shadow: 0 10px 30px rgba(0, 179, 122, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviewer-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00b67a, #00a170);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.reviewer-details h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.125rem;
    font-size: 0.875rem;
    line-height: 1.2;
}

.reviewer-details p {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.review-rating {
    display: flex;
    gap: 0.125rem;
    flex-shrink: 0;
}

.review-rating .star {
    width: 12px;
    height: 12px;
}

.review-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.review-content {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    margin-top: auto;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(0, 179, 122, 0.1);
    color: #00b67a;
    padding: 0.125rem 0.375rem;
    border-radius: 1rem;
    font-size: 0.625rem;
    font-weight: 600;
}

.trustpilot-cta {
    text-align: center;
    background: rgba(0, 179, 122, 0.05);
    border: 1px solid rgba(0, 179, 122, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.trustpilot-cta h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.trustpilot-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.trust-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-btn {
    background: #00b67a;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-btn:hover {
    background: #00a170;
    transform: translateY(-2px);
}

.trust-btn.secondary {
    background: transparent;
    color: #00b67a;
    border: 2px solid #00b67a;
}

.trust-btn.secondary:hover {
    background: rgba(0, 179, 122, 0.1);
}

/* Responsive Breakpoints for 5-column layout */

/* Large Desktop (1400px+) - 5 columns */
@media (min-width: 1400px) {
    .reviews-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }
    
    .review-card {
        padding: 1.75rem;
    }
}

/* Medium Desktop (1200px - 1399px) - 5 columns but smaller */
@media (min-width: 1200px) and (max-width: 1399px) {
    .reviews-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: 300px;
    }
}

/* Small Desktop (1024px - 1199px) - 4 columns */
@media (min-width: 1024px) and (max-width: 1199px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: 320px;
    }
}

/* Tablet Landscape (768px - 1023px) - 3 columns */
@media (min-width: 768px) and (max-width: 1023px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: 340px;
    }
    
    .trustpilot-section {
        padding: 4rem 1rem;
    }
}

/* Tablet Portrait (600px - 767px) - 2 columns */
@media (min-width: 600px) and (max-width: 767px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: 360px;
    }
    
    .trustpilot-section {
        padding: 4rem 1rem;
    }
}

/* Mobile (below 600px) - 1 column */
@media (max-width: 599px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .review-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .reviewer-info {
        width: 100%;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .trustpilot-section {
        padding: 4rem 1rem;
    }
    
    .trust-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trustpilot-rating {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .reviewer-details h4 {
        font-size: 1rem;
    }
    
    .reviewer-details p {
        font-size: 0.875rem;
    }
    
    .review-rating .star {
        width: 16px;
        height: 16px;
    }
    
    .review-title {
        font-size: 1.125rem;
    }
    
    .review-content {
        font-size: 1rem;
        -webkit-line-clamp: none;
        overflow: visible;
        display: block;
    }
}


/* Mobile: Hide Order Now button and make logo much bigger */
@media (max-width: 767px) {
    .cta-button {
        display: none !important;
    }
    
    .logo-img {
        width: auto;

    }
    
    .logo-text {
        display: none !important;
    }
    
    /* Adjust nav padding to accommodate bigger logo */
    .nav {
        padding: 0.75rem 1rem;
    }
}

/* Desktop: Normal sizes */
@media (min-width: 768px) {
    .cta-button {
        display: inline-block;
    }
    
    .logo-img {
        width: auto;
        height: 60px;
    }
}

