
        /* ========== ORANGE & RED COLOR THEME ========== */
        :root {
            --primary-orange: #FF6B1A;
            --deep-orange: #E85D04;
            --vibrant-red: #DC2F02;
            --dark-red: #9D0208;
            --warm-red: #BA181B;
            --light-orange: #FF9F4A;
            --golden-accent: #FFB347;
            --text-dark: #2C2A29;
            --bg-light: #FFF8F2;
            --white-smoke: #FFFDF9;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
        }
        #spinner {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
        .custom-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 107, 26, 0.2);
            border-top: 4px solid var(--primary-orange);
            border-right: 4px solid var(--vibrant-red);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        
        /* Navbar */
        .navbar-sama {
            background: rgba(255, 248, 242, 0.96);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 20px rgba(220, 47, 2, 0.08);
            padding: 0.7rem 0;
        }
        .navbar-brand {
            margin-right: 2rem !important;
        }
        @media (min-width: 992px) {
            .navbar-brand {
                margin-right: 4rem !important;
            }
        }
        .nav-link-sama {
            font-weight: 500;
            color: var(--text-dark);
            margin: 0 0.25rem;
            transition: all 0.3s;
            font-size: 0.95rem;
        }
        .nav-link-sama:hover, .nav-link-sama.active {
            color: var(--vibrant-red);
            background: rgba(220, 47, 2, 0.08);
            border-radius: 40px;
        }
        .btn-primary-sama {
            background: linear-gradient(135deg, var(--primary-orange), var(--vibrant-red));
            color: white;
            border: none;
            padding: 8px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 10px rgba(220, 47, 2, 0.25);
        }
        .btn-primary-sama:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 20px rgba(220, 47, 2, 0.35);
            color: white;
            background: linear-gradient(135deg, var(--deep-orange), var(--dark-red));
        }
        .btn-outline-sama {
            background: transparent;
            border: 1.5px solid var(--vibrant-red);
            color: var(--vibrant-red);
            padding: 7px 22px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-outline-sama:hover {
            background: var(--vibrant-red);
            color: white;
            border-color: var(--vibrant-red);
        }
        
        /* ========== HERO SECTION ========== */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(220,47,2,0.6) 50%, rgba(0,0,0,0.7) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            padding: 4rem 0;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 107, 26, 0.25);
            backdrop-filter: blur(8px);
            padding: 0.5rem 1.5rem;
            border-radius: 60px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: #FFD699;
            border: 1px solid rgba(255, 107, 26, 0.5);
            margin-bottom: 1.5rem;
        }
        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.15;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .hero-title span {
            background: linear-gradient(135deg, #FFB347, #FF6B1A, #DC2F02);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        .hero-description {
            font-size: 1rem;
            color: rgba(255,255,240,0.92);
            max-width: 520px;
            margin-bottom: 2rem;
            line-height: 1.6;
            font-weight: 400;
        }
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        .btn-hero-primary {
            background: linear-gradient(135deg, var(--primary-orange), var(--vibrant-red));
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            box-shadow: 0 8px 20px rgba(220, 47, 2, 0.3);
        }
        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(220, 47, 2, 0.4);
            color: white;
        }
        .btn-hero-outline {
            background: transparent;
            border: 2px solid #FFD699;
            padding: 10px 32px;
            border-radius: 50px;
            font-weight: 600;
            color: #FFD699;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        .btn-hero-outline:hover {
            background: #FFD699;
            color: var(--dark-red);
            border-color: #FFD699;
        }
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }
        .hero-stat-item {
            text-align: left;
        }
        .hero-stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #FFB347, #FF6B1A);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-stat-label {
            font-size: 0.8rem;
            color: rgba(255,255,240,0.8);
        }
        .hero-right-card {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(16px);
            border-radius: 32px;
            padding: 2rem;
            border: 1px solid rgba(255, 107, 26, 0.4);
            text-align: center;
            box-shadow: 0 25px 45px rgba(0,0,0,0.3);
        }
        .hero-right-card h3 {
            color: #FFD699;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .hero-qr-img {
            background: white;
            padding: 12px;
            border-radius: 20px;
            display: inline-block;
            margin: 1rem 0;
        }
        
        /* ========== STATS BAR SECTION ========== */
        .stats-section {
            margin-top: -30px;
            position: relative;
            z-index: 10;
        }
        .stats-grid {
            background: white;
            border-radius: 48px;
            padding: 1.5rem 2rem;
            box-shadow: 0 20px 35px -12px rgba(220, 47, 2, 0.12);
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(255, 107, 26, 0.15);
        }
        .stat-card-mini {
            text-align: center;
            border-right: 1px solid rgba(0,0,0,0.05);
        }
        .stat-card-mini:last-child { border-right: none; }
        .stat-number {
            font-size: 1.3rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-orange), var(--vibrant-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .stat-label { font-size: 0.8rem; font-weight: 500; color: #5E5B58; }
        
        /* ========== CARD MODERN ========== */
        .card-modern {
            background: white;
            border-radius: 2rem;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 1px solid rgba(220, 47, 2, 0.2);
        }
        .card-modern:hover {
            border-color: var(--primary-orange);
            box-shadow: 0 20px 35px rgba(220, 47, 2, 0.1);
        }
        
        /* ========== DOWNLOAD & QR SECTION ========== */
        .download-qr-section {
            padding: 4rem 0;
        }
        
        /* ========== WHATSAPP SUPPORT SECTION ========== */
        .whatsapp-section {
            margin: 2rem 0;
        }
        
        /* ========== PROFESSIONAL APPS SECTION ========== */
        .apps-section {
            background: linear-gradient(145deg, #FFF5EE, #FFFBF7);
            padding: 5rem 0;
            margin: 2rem 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-header h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--text-dark);
        }
        .underline {
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--vibrant-red));
            margin: 0.8rem auto 0;
            border-radius: 4px;
        }
        .apps-subtitle {
            text-align: center;
            color: #6B6B6B;
            font-size: 1rem;
            margin-top: -0.5rem;
            margin-bottom: 2.5rem;
        }
        .apps-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.8rem;
            margin-bottom: 2rem;
        }
        .app-card {
            background: white;
            border-radius: 1.5rem;
            padding: 1.8rem 1.2rem;
            text-align: center;
            width: 210px;
            transition: all 0.35s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(220, 47, 2, 0.08);
            cursor: pointer;
        }
        .app-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 35px rgba(220, 47, 2, 0.12);
            border-color: var(--primary-orange);
        }
        .app-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            padding: 0;
        }
        .app-icon img {
            width: 140px;
            height: auto;
            transition: transform 0.3s;
            object-fit: contain;
        }
        .app-card:hover .app-icon img {
            transform: scale(1.05);
        }
        .app-card h5 {
            font-size: 1rem;
            font-weight: 700;
            margin: 0.8rem 0 0.5rem;
            color: var(--text-dark);
        }
        .app-device-type {
            font-size: 0.7rem;
            color: #888;
            margin-bottom: 1rem;
            letter-spacing: 0.3px;
        }
        .app-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
        }
        .btn-app {
            background: #FFF0E6;
            border-radius: 50px;
            padding: 0.4rem 0.9rem;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--vibrant-red);
            text-decoration: none;
            transition: all 0.25s;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        .btn-app i {
            font-size: 0.7rem;
        }
        .btn-app:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-2px);
        }
        .apps-note {
            text-align: center;
            margin-top: 2.5rem;
            font-size: 0.85rem;
            color: #888;
        }
        .apps-note i {
            color: var(--vibrant-red);
            margin-right: 5px;
        }
        
        /* ========== FEATURE LINES SECTION ========== */
        .features-section {
            padding: 4rem 0;
        }
        .feature-line-item {
            margin: 4rem 0;
        }
        .feature-content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        .feature-content h3::before {
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        /* ========== PROFESSIONAL PRICING SECTION ========== */
        .pricing-section {
            background: linear-gradient(145deg, #FFF0E8, #FFE6DC);
            padding: 5rem 0;
            margin-top: 2rem;
        }
        .pricing-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }
        .pricing-header h2 {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        .pricing-header p {
            color: #6B6B6B;
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .pricing-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        .pricing-card {
            background: white;
            border-radius: 1.5rem;
            padding: 0;
            width: 280px;
            transition: all 0.35s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(220, 47, 2, 0.1);
            overflow: hidden;
            position: relative;
        }
        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 45px rgba(220, 47, 2, 0.15);
            border-color: var(--primary-orange);
        }
        .pricing-card-header {
            padding: 1.8rem 1.5rem 1rem;
            text-align: center;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .plan-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }
        .plan-price {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-orange), var(--vibrant-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }
        .plan-price small {
            font-size: 0.9rem;
            font-weight: 500;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            color: #888;
        }
        .plan-duration {
            font-size: 0.85rem;
            color: #888;
            margin-top: 0.25rem;
        }
        .pricing-card-body {
            padding: 1.5rem;
        }
        .features-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .features-list li {
            font-size: 0.85rem;
            padding: 0.6rem 0;
            color: #555;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .features-list li i {
            color: var(--vibrant-red);
            font-size: 0.85rem;
            width: 20px;
        }
        .pricing-footer {
            padding: 1rem 1.5rem 1.8rem;
            text-align: center;
        }
        .btn-pricing {
            display: inline-block;
            width: 100%;
            background: linear-gradient(135deg, var(--primary-orange), var(--vibrant-red));
            color: white;
            padding: 0.8rem 1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
            text-align: center;
        }
        .btn-pricing:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(220, 47, 2, 0.3);
            color: white;
        }
        
        /* ========== FAQ SECTION ========== */
        .faq-section {
            padding: 4rem 0;
        }
        .faq-item {
            background: white;
            border-radius: 1rem;
            margin-bottom: 1rem;
            border: 1px solid rgba(220, 47, 2, 0.15);
            overflow: hidden;
            transition: 0.2s;
        }
        .faq-question {
            padding: 1.2rem 1.5rem;
            font-weight: 700;
            cursor: pointer;
            background: white;
            transition: 0.2s;
            color: var(--text-dark);
        }
        .faq-question i {
            color: var(--vibrant-red);
        }
        .faq-answer {
            max-height: 0;
            padding: 0 1.5rem;
            overflow: hidden;
            transition: max-height 0.4s ease;
            color: #5E5B58;
            font-size: 0.95rem;
        }
        .faq-item.active .faq-answer {
            max-height: 280px;
            padding: 0 1.5rem 1.2rem 1.5rem;
        }
        
        /* ========== FEATURE ICONS SECTION ========== */
        .feature-icons-section {
            padding: 3rem 0;
            text-align: center;
        }
        
        /* ========== PARTNERS SECTION ========== */
        .partners-section {
            padding: 1.5rem;
        }
        
        /* ========== FOOTER SECTION - UPDATED TO MATCH ORANGE/RED THEME ========== */
        .footer-sama {
            background: linear-gradient(135deg, #1A0D08 0%, #2C150E 50%, #1A0D08 100%);
            color: #F5E6D9;
            padding: 3rem 0 2rem;
            margin-top: 3rem;
            border-top: 3px solid var(--vibrant-red);
        }
        .footer-heading {
            color: var(--primary-orange);
            font-weight: 700;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }
        .footer-links-list {
            list-style: none;
            padding-left: 0;
        }
        .footer-links-list li {
            margin-bottom: 0.5rem;
        }
        .footer-links-list li a {
            color: #F5E6D9;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s;
            display: inline-block;
        }
        .footer-links-list li a:hover {
            color: var(--primary-orange);
            transform: translateX(5px);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 107, 26, 0.3);
            font-size: 0.8rem;
            color: #C9B8A8;
        }
        .footer-bottom a {
            color: var(--primary-orange);
            text-decoration: none;
            transition: all 0.3s;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
            color: var(--vibrant-red);
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            justify-content: center;
        }
        .social-links a {
            color: #F5E6D9;
            background: rgba(255, 107, 26, 0.15);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-3px);
        }
        
        /* WhatsApp Float & Back to Top */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            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 15px rgba(0,0,0,0.2);
            transition: 0.2s;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 25px;
            background: linear-gradient(135deg, var(--primary-orange), var(--vibrant-red));
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: 0.2s;
            z-index: 99;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: linear-gradient(135deg, var(--deep-orange), var(--dark-red));
            color: white;
            transform: translateY(-3px);
        }
        
        @media (max-width: 992px) {
            .hero-title { font-size: 2.5rem; }
            .hero-right-card { margin-top: 2rem; }
        }
        @media (max-width: 768px) {
            .hero-title { font-size: 2rem; }
            .stats-grid .row { gap: 1rem; }
            .app-card { width: 170px; }
            .pricing-card { width: 280px; margin: 0 auto; }
            .app-icon img { width: 50px; }
        }



        /* ===== REMOVE HORIZONTAL SCROLL ===== */
html, body {
    overflow-x: hidden;
}

/* Fix Bootstrap row overflow issue */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Container padding fix for mobile */
.container,
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Prevent elements from exceeding width */
img, iframe {
    max-width: 100%;
    height: auto;
}

/* Fix stats section overflow */
.stats-section {
    overflow: hidden;
}

/* Fix hero section overflow */
.hero-section {
    overflow: hidden;
}