
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #1e293b;
            overflow-x: hidden;
            line-height: 1.5;
        }
        /* Blue and Green color palette with 2% yellow and pink accents */
        :root {
            --primary-blue: #1e90ff;      /* vibrant blue */
            --primary-green: #32cd32;      /* lime green */
            --accent-yellow: #ffd700;      /* gold yellow - used sparingly (2%) */
            --accent-pink: #ff69b4;        /* hot pink - used sparingly (2%) */
            --dark-blue: #0f172a;          /* dark navy for footer */
            --gray-100: #f8fafc;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-500: #64748b;
            --gray-700: #334155;
            --gray-900: #0f172a;
        }
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--gray-900);
        }
        
        /* Buttons with blue and green (primary) - yellow/pink only as subtle accents */
        .btn-blue {
            background: var(--primary-blue);
            color: white;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
        }
        .btn-blue:hover {
            background: #0c7cd5;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(30, 144, 255, 0.5);
        }
        
        .btn-green {
            background: var(--primary-green);
            color: white;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
        }
        .btn-green:hover {
            background: #2db82d;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(50, 205, 50, 0.5);
        }
        
        .btn-outline-blue {
            background: transparent;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            font-weight: 600;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            transition: 0.3s;
        }
        .btn-outline-blue:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
        }
        
        .btn-outline-green {
            background: transparent;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            font-weight: 600;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            transition: 0.3s;
        }
        .btn-outline-green:hover {
            background: var(--primary-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(50, 205, 50, 0.4);
        }
        
        /* Navbar – one line on desktop */
        .navbar-blue-green {
            background: white !important;
            border-bottom: 3px solid var(--primary-green);
            padding: 0.5rem 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }
        .navbar-blue-green .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
        }
        .navbar-blue-green .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            white-space: nowrap;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        .navbar-blue-green .navbar-collapse {
            flex-grow: 0;
            display: flex;
            align-items: center;
        }
        .navbar-blue-green .navbar-nav {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.15rem;
            margin: 0;
            padding: 0;
            white-space: nowrap;
        }
        .navbar-blue-green .nav-link {
            font-weight: 500;
            color: var(--gray-700) !important;
            border-radius: 30px;
            padding: 0.4rem 0.8rem !important;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .navbar-blue-green .nav-link.active, 
        .navbar-blue-green .nav-link:hover {
            background: var(--primary-green);
            color: white !important;
        }
        .navbar-blue-green .navbar-buttons {
            display: flex;
            gap: 0.5rem;
            flex-wrap: nowrap;
            margin-left: 1rem;
            flex-shrink: 0;
        }
        
        /* HERO SECTION – Text in box, image as background */
        .hero-box-bg {
            position: relative;
            height: 750px;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .hero-box-bg .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/hero.png');
            background-size: cover;
            background-position: center;
            z-index: 0;
        }
        .hero-box-bg .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 25, 45, 0.85) 0%, rgba(20, 40, 70, 0.8) 100%);
            z-index: 1;
        }
        .hero-box-bg .container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .hero-box-bg .hero-content-box {
            max-width: 650px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 3rem;
            color: white;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }
        .hero-box-bg .hero-content-box .badge {
            display: inline-block;
            background: var(--accent-yellow);
            color: var(--gray-900);
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .hero-box-bg .hero-content-box h1 {
            font-size: 4.2rem;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        .hero-box-bg .hero-content-box h1 span {
            color: var(--accent-yellow);
        }
        .hero-box-bg .hero-content-box p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.6;
        }
        .hero-box-bg .hero-content-box .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        .hero-box-bg .hero-stats-mini {
            display: flex;
            gap: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 2rem;
        }
        .hero-box-bg .hero-stat-item {
            display: flex;
            flex-direction: column;
        }
        .hero-box-bg .hero-stat-item .stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--accent-yellow);
            line-height: 1.2;
        }
        .hero-box-bg .hero-stat-item .stat-label {
            font-size: 0.9rem;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Stats row */
        .stats-wrapper { margin-top: -2.5rem; position: relative; z-index: 20; }
        .stats-row {
            background: white;
            border-radius: 60px;
            padding: 1.5rem 2rem;
            box-shadow: 0 20px 40px -15px rgba(30, 144, 255, 0.2);
            border: 2px solid var(--accent-yellow); /* 2% yellow accent */
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        .stat-item { text-align: center; flex: 1 0 auto; padding: 0.5rem 1rem; }
        .stat-item h5 {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.25rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .stat-item p { color: var(--gray-500); margin-bottom: 0; font-size: 0.9rem; }
        
        /* App cards */
        .app-card {
            background: white;
            border-radius: 30px;
            padding: 2rem 1rem 1.5rem;
            border: 2px solid var(--primary-blue);
            transition: 0.3s;
            height: 100%;
            box-shadow: 0 10px 25px rgba(30, 144, 255, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .app-card:hover {
            border-color: var(--primary-green);
            transform: translateY(-8px);
            box-shadow: 0 20px 30px rgba(50, 205, 50, 0.2);
        }
        .app-icon-wrapper {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            color: white;
            font-size: 2rem;
            transition: 0.3s;
        }
        .app-card:hover .app-icon-wrapper {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(30, 144, 255, 0.3);
        }
        .app-card h5 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            color: var(--gray-900);
        }
        .btn-group-custom {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            margin-top: auto;
        }
        .btn-link-blue {
            background: transparent;
            border: 1px solid var(--primary-blue);
            color: var(--primary-blue);
            font-weight: 500;
            font-size: 0.85rem;
            padding: 0.4rem 1rem;
            border-radius: 30px;
            text-decoration: none;
            transition: 0.2s;
        }
        .btn-link-blue:hover {
            background: var(--primary-blue);
            color: white;
        }
        
        /* Pricing cards */
        .pricing-card {
            background: white;
            border-radius: 30px;
            padding: 2rem 1.5rem;
            border: 2px solid var(--primary-green);
            transition: 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 25px rgba(50, 205, 50, 0.1);
        }
        .pricing-card.popular {
            border: 3px solid var(--primary-blue);
            transform: scale(1.02);
            background: linear-gradient(145deg, white, #f0f8ff);
        }
        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            font-family: 'Inter', sans-serif;
            line-height: 1;
        }
        .pricing-card .duration {
            color: var(--gray-500);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            flex-grow: 1;
        }
        .pricing-card li {
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            color: var(--gray-700);
        }
        .pricing-card li i {
            color: var(--primary-green);
            margin-right: 0.75rem;
        }
        .popular-badge {
            background: var(--primary-blue);
            color: white;
            font-weight: 600;
            font-size: 0.75rem;
            padding: 0.25rem 1rem;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }
        
        /* FAQ accordion */
        .faq-accordion .accordion-item {
            border: none;
            background: transparent;
            margin-bottom: 1rem;
        }
        .faq-accordion .accordion-button {
            background: white;
            border-radius: 30px !important;
            padding: 1.25rem 1.5rem;
            font-weight: 500;
            color: var(--gray-900);
            border: 2px solid var(--primary-blue);
            box-shadow: 0 5px 15px rgba(30, 144, 255, 0.1);
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            background: #f0f8ff;
            color: var(--primary-green);
            border-color: var(--primary-green);
        }
        .faq-accordion .accordion-body {
            background: white;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            border: 2px solid var(--primary-green);
            border-top: none;
            padding: 1.5rem;
        }
        
        /* Professional Footer – dark blue (single color) */
        .footer-professional {
            background: var(--dark-blue);
            color: #9ca3af;
            border-radius: 60px 60px 0 0;
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-professional h5 {
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }
        .footer-professional a {
            color: #9ca3af;
            text-decoration: none;
            transition: 0.2s;
            display: inline-block;
            margin: 0.4rem 0;
            font-size: 0.95rem;
        }
        .footer-professional a:hover { 
            color: white; 
            transform: translateX(4px);
        }
        .footer-professional .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: #9ca3af;
            font-size: 0.9rem;
        }
        .footer-professional .copyright a {
            color: #d1d5db;
            margin: 0 0.25rem;
        }
        .footer-professional .copyright a:hover {
            color: var(--primary-green);
        }
        .footer-professional .app-badge {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 0.5rem 1rem;
            margin-bottom: 0.5rem;
            transition: 0.2s;
        }
        .footer-professional .app-badge:hover {
            background: rgba(255,255,255,0.1);
        }
        
        /* Floating buttons */
        .whatsapp-float {
            position: fixed; bottom: 30px; right: 30px; z-index: 99;
            background: #25D366; width: 60px; height: 60px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            border: 3px solid var(--accent-pink); /* 2% pink accent */
            transition: 0.3s;
        }
        .whatsapp-float:hover { transform: scale(1.1) rotate(5deg); }
        .back-to-top {
            position: fixed; bottom: 30px; left: 30px; z-index: 99;
            background: var(--primary-blue); color: white; width: 50px; height: 50px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            border: 2px solid var(--primary-green); transition: 0.3s;
        }
        .back-to-top:hover { background: var(--primary-green); color: white; }
        
        @media (max-width: 1200px) {
            .navbar-blue-green .nav-link { font-size: 0.85rem; padding: 0.4rem 0.5rem !important; }
        }
        @media (max-width: 992px) {
            .navbar-blue-green .container { flex-wrap: wrap; }
            .navbar-blue-green .navbar-collapse { 
                flex-grow: 1; 
                width: 100%;
            }
            .navbar-blue-green .navbar-nav { 
                flex-direction: column; 
                width: 100%;
                margin-top: 1rem;
            }
            .navbar-blue-green .navbar-buttons { 
                margin-left: 0; 
                margin-top: 1rem;
                width: 100%;
                justify-content: center;
            }
            .hero-box-bg { height: auto; min-height: 700px; padding: 4rem 0; }
            .hero-box-bg .hero-content-box { max-width: 100%; padding: 2rem; }
            .hero-box-bg .hero-stats-mini { gap: 1rem; flex-wrap: wrap; }
        }
     /* ============================================
   SAMA TV - MOBILE RESPONSIVE CSS
   ============================================ */

/* Base Reset - Prevent Horizontal Scroll */
* {
    max-width: 100%;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container, .container-fluid {
    overflow-x: hidden;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== TABLET & MOBILE (max-width: 992px) ========== */
@media (max-width: 992px) {
    /* Navbar */
    .navbar-sama {
        padding: 0.7rem 1rem;
    }
    
    .navbar-brand img {
        max-height: 42px;
        width: auto;
    }
    
    .nav-link-sama {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .btn-primary-sama, .btn-outline-sama {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    /* Hero Section */
    .hero-fullscreen {
        min-height: 600px;
        height: auto;
    }
    
    .hero-content {
        padding: 4rem 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem !important;
        gap: 0.3rem;
    }
    
    .hero-text {
        font-size: 0.9rem !important;
        line-height: 1.5;
        padding: 0 1rem;
    }
    
    .hero-buttons a {
        padding: 10px 24px !important;
        font-size: 0.85rem;
    }
    
    /* Stats Bar */
    .stats-bar {
        padding: 1rem 0;
    }
    
    .stats-wrapper {
        gap: 0.6rem;
    }
    
    .stat-pill {
        padding: 0.4rem 0.9rem;
        font-size: 0.75rem;
    }
    
    .stat-pill strong {
        font-size: 0.75rem;
    }
    
    /* Device Cards */
    .device-card {
        padding: 1rem;
    }
    
    .device-icon {
        width: 55px;
        height: 55px;
    }
    
    .device-icon img {
        width: 35px;
        height: 35px;
    }
    
    .device-card h5 {
        font-size: 0.8rem;
    }
    
    .btn-navy-outline {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    /* Feature Section */
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
    }
    
    /* Pricing */
    .price-number {
        font-size: 1.8rem;
    }
    
    .pricing-card ul li {
        font-size: 0.75rem;
    }
}

/* ========== MOBILE (max-width: 768px) ========== */
@media (max-width: 768px) {
    /* General */
    body {
        font-size: 14px;
    }
    
    /* Navbar */
    .navbar-sama {
        padding: 0.6rem 1rem;
    }
    
    .navbar-brand img {
        max-height: 38px;
    }
    
    .nav-link-sama {
        font-size: 0.85rem;
        margin: 0;
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .btn-primary-sama, .btn-outline-sama {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    /* Hero Section */
    .hero-fullscreen {
        min-height: 550px;
    }
    
    .hero-content {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
        gap: 0.2rem;
    }
    
    .hero-text {
        font-size: 0.85rem !important;
        line-height: 1.4;
        padding: 0 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        gap: 0.6rem;
    }
    
    .hero-buttons a {
        padding: 8px 20px !important;
        font-size: 0.8rem;
    }
    
    .hero-soft-glow {
        height: 40px;
        width: 70%;
        left: 15%;
        bottom: -15px;
    }
    
    /* Stats Bar */
    .stats-bar {
        padding: 0.8rem 0;
    }
    
    .stats-wrapper {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-pill {
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .stat-pill strong {
        font-size: 0.7rem;
    }
    
    /* Download & QR Section */
    .py-4.py-md-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .card-modern {
        padding: 1.2rem;
        margin-top: 1rem;
    }
    
    .card-modern h3 {
        font-size: 1.2rem;
    }
    
    .qr-code-wrapper {
        padding: 10px !important;
    }
    
    .qr-code-wrapper img {
        width: 110px !important;
        height: 110px !important;
    }
    
    /* WhatsApp Support Box */
    .container.my-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .card-modern h2.h4 {
        font-size: 1.2rem;
    }
    
    .card-modern .fs-4 {
        font-size: 1.2rem !important;
    }
    
    .card-modern .btn-primary-sama {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    /* Devices Showcase */
    .device-card {
        padding: 0.8rem;
    }
    
    .device-icon {
        width: 50px;
        height: 50px;
    }
    
    .device-icon img {
        width: 30px;
        height: 30px;
    }
    
    .device-card h5 {
        font-size: 0.75rem;
        margin: 0.5rem 0;
    }
    
    .btn-navy-outline {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    /* Feature Line Items - 3 Line Layout */
    .feature-line-item {
        padding: 1.5rem 0;
    }
    
    .feature-image {
        margin-bottom: 1rem;
    }
    
    .feature-image img {
        width: 100%;
        border-radius: 1rem;
    }
    
    .feature-line-item .col-md-6 div img {
        width: 100%;
        height: auto;
        border-radius: 1rem;
    }
    
    .feature-content {
        text-align: center;
        padding: 0;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .feature-buttons {
        justify-content: center;
    }
    
    .feature-buttons a {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    /* Pricing Section */
    .pricing-card {
        padding: 1rem;
    }
    
    .pricing-card h4.h5 {
        font-size: 1rem;
    }
    
    .price-number {
        font-size: 1.5rem;
    }
    
    .pricing-card small {
        font-size: 0.7rem;
    }
    
    .pricing-card ul li {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .featured-tag {
        top: -8px;
        right: 10px;
        padding: 2px 10px;
        font-size: 0.55rem;
    }
    
    /* FAQ Section */
    .faq-question {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .faq-answer {
        padding: 0 1rem 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Feature Icons Section */
    .container.my-4.text-center {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .fa-3x {
        font-size: 2rem !important;
    }
    
    .mt-1.fw-bold.small {
        font-size: 0.65rem;
    }
    
    /* Footer */
    .footer-sama {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-heading {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links-list li {
        margin-bottom: 0.3rem;
    }
    
    .footer-links-list a {
        font-size: 0.7rem;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
    }
    
    .footer-item h4 {
        font-size: 0.85rem;
    }
    
    /* WhatsApp Float & Back to Top */
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-float img {
        width: 48px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
    
    /* Partners Iframe */
    .container-fluid.my-3.px-3 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ========== SMALL MOBILE (max-width: 576px) ========== */
@media (max-width: 576px) {
    /* Hero Section */
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .hero-text {
        font-size: 0.75rem !important;
    }
    
    /* Stats Bar */
    .stat-pill {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .stat-pill strong {
        font-size: 0.65rem;
    }
    
    /* Device Cards */
    .device-card {
        padding: 0.6rem;
    }
    
    .device-card h5 {
        font-size: 0.7rem;
    }
    
    .btn-navy-outline {
        padding: 3px 6px;
        font-size: 0.6rem;
    }
    
    /* Feature Section */
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.75rem;
    }
    
    /* Pricing Section */
    .pricing-card {
        padding: 0.8rem;
    }
    
    .price-number {
        font-size: 1.2rem;
    }
    
    .pricing-card ul li {
        font-size: 0.65rem;
    }
    
    /* FAQ Section */
    .faq-question {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .faq-answer {
        font-size: 0.75rem;
    }
    
    /* Footer */
    .footer-heading {
        font-size: 0.8rem;
    }
    
    .footer-links-list a {
        font-size: 0.65rem;
    }
    
    /* Buttons */
    .btn-primary-sama, .btn-outline-sama {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .btn-primary-sama.btn-sm, .btn-outline-sama.btn-sm {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
}

/* ========== LANDSCAPE MODE FIXES ========== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-fullscreen {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-text {
        font-size: 0.8rem !important;
    }
}


/* ============================================
   SAMA TV - COMPLETE MOBILE RESPONSIVE CSS
   ============================================ */

/* Base Reset - Prevent Horizontal Scroll */
* {
    max-width: 100%;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container, .container-fluid {
    overflow-x: hidden;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

[class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== NAVBAR MOBILE FIXES ========== */
@media (max-width: 991.98px) {
    /* Navbar Container */
    .navbar-sama {
        padding: 0.6rem 1rem;
        position: relative;
    }
    
    .navbar-brand img {
        max-height: 38px;
        width: auto;
    }
    
    /* Navbar Toggler Button - Fix */
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
        background: transparent;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
        background: rgba(0,0,0,0.05);
    }
    
    .navbar-toggler .fa-bars {
        font-size: 1.2rem;
        color: var(--sama-orange, #FF5E1A);
    }
    
    /* Collapsed Navbar Menu - Fix Horizontal Sliding */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        z-index: 1050;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 1rem 1.2rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        border-radius: 0 0 12px 12px;
        border-top: 2px solid var(--sama-orange, #FF5E1A);
        transition: all 0.3s ease;
    }
    
    /* When menu is collapsed, hide it properly */
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    /* When menu is showing */
    .navbar-collapse.show {
        display: block !important;
    }
    
    /* Navigation Links Container */
    .navbar-nav {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    /* Navigation Links - Stack Vertically */
    .nav-link-sama {
        font-size: 0.9rem;
        padding: 0.7rem 0;
        text-align: left;
        margin: 0;
        border-bottom: 1px solid #e9ecef;
        display: block;
        width: 100%;
        color: #334155 !important;
    }
    
    .nav-link-sama:last-child {
        border-bottom: none;
    }
    
    .nav-link-sama.active {
        color: var(--sama-orange, #FF5E1A) !important;
    }
    
    /* Buttons Container in Mobile Menu */
    .navbar-sama .d-flex {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem !important;
        margin-top: 0.5rem;
    }
    
    .navbar-sama .d-flex a {
        text-align: center;
        width: 100%;
        display: block;
        margin: 0 !important;
    }
    
    .btn-primary-sama, .btn-outline-sama {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

/* ========== TABLET & MOBILE (max-width: 768px) ========== */
@media (max-width: 768px) {
    /* Navbar */
    .navbar-sama {
        padding: 0.5rem 1rem;
    }
    
    .navbar-brand img {
        max-height: 35px;
    }
    
    .navbar-toggler {
        padding: 0.4rem;
    }
    
    .navbar-toggler .fa-bars {
        font-size: 1.1rem;
    }
    
    .navbar-collapse {
        padding: 0.8rem 1rem;
        max-height: calc(100vh - 60px);
    }
    
    .nav-link-sama {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
    
    .btn-primary-sama, .btn-outline-sama {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    /* Hero Section */
    .hero-fullscreen {
        min-height: 550px;
        height: auto;
    }
    
    .hero-content {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
        gap: 0.2rem;
    }
    
    .hero-text {
        font-size: 0.85rem !important;
        line-height: 1.4;
        padding: 0 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        gap: 0.6rem;
    }
    
    .hero-buttons a {
        padding: 8px 20px !important;
        font-size: 0.8rem;
    }
    
    .hero-soft-glow {
        height: 40px;
        width: 70%;
        left: 15%;
        bottom: -15px;
    }
    
    /* Stats Bar */
    .stats-bar {
        padding: 0.8rem 0;
    }
    
    .stats-wrapper {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-pill {
        padding: 0.3rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .stat-pill strong {
        font-size: 0.7rem;
    }
    
    /* Download & QR Section */
    .py-4.py-md-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .card-modern {
        padding: 1.2rem;
        margin-top: 1rem;
    }
    
    .card-modern h3 {
        font-size: 1.2rem;
    }
    
    .qr-code-wrapper {
        padding: 10px !important;
    }
    
    .qr-code-wrapper img {
        width: 110px !important;
        height: 110px !important;
    }
    
    /* WhatsApp Support Box */
    .container.my-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .card-modern h2.h4 {
        font-size: 1.2rem;
    }
    
    .card-modern .fs-4 {
        font-size: 1.2rem !important;
    }
    
    .card-modern .btn-primary-sama {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    /* Devices Showcase */
    .device-card {
        padding: 0.8rem;
    }
    
    .device-icon {
        width: 50px;
        height: 50px;
    }
    
    .device-icon img {
        width: 30px;
        height: 30px;
    }
    
    .device-card h5 {
        font-size: 0.75rem;
        margin: 0.5rem 0;
    }
    
    .btn-navy-outline {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    /* Feature Line Items - 3 Line Layout */
    .feature-line-item {
        padding: 1.5rem 0;
    }
    
    .feature-image {
        margin-bottom: 1rem;
    }
    
    .feature-image img {
        width: 100%;
        border-radius: 1rem;
    }
    
    .feature-line-item .col-md-6 div img {
        width: 100%;
        height: auto;
        border-radius: 1rem;
    }
    
    .feature-content {
        text-align: center;
        padding: 0;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .feature-buttons {
        justify-content: center;
    }
    
    .feature-buttons a {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    /* Pricing Section */
    .pricing-card {
        padding: 1rem;
    }
    
    .pricing-card h4.h5 {
        font-size: 1rem;
    }
    
    .price-number {
        font-size: 1.5rem;
    }
    
    .pricing-card small {
        font-size: 0.7rem;
    }
    
    .pricing-card ul li {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
    }
    
    .featured-tag {
        top: -8px;
        right: 10px;
        padding: 2px 10px;
        font-size: 0.55rem;
    }
    
    /* FAQ Section */
    .faq-question {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .faq-answer {
        padding: 0 1rem 0.8rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Feature Icons Section */
    .container.my-4.text-center {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .fa-3x {
        font-size: 2rem !important;
    }
    
    .mt-1.fw-bold.small {
        font-size: 0.65rem;
    }
    
    /* Footer */
    .footer-sama {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-heading {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links-list li {
        margin-bottom: 0.3rem;
    }
    
    .footer-links-list a {
        font-size: 0.7rem;
    }
    
    .footer-bottom p {
        font-size: 0.65rem;
    }
    
    .footer-item h4 {
        font-size: 0.85rem;
    }
    
    /* WhatsApp Float & Back to Top */
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-float img {
        width: 48px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
    
    /* Partners Iframe */
    .container-fluid.my-3.px-3 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ========== SMALL MOBILE (max-width: 576px) ========== */
@media (max-width: 576px) {
    /* Navbar */
    .navbar-sama {
        padding: 0.4rem 0.8rem;
    }
    
    .navbar-brand img {
        max-height: 32px;
    }
    
    .navbar-toggler {
        padding: 0.3rem;
    }
    
    .navbar-toggler .fa-bars {
        font-size: 1rem;
    }
    
    .navbar-collapse {
        padding: 0.6rem 0.8rem;
    }
    
    .nav-link-sama {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    .btn-primary-sama, .btn-outline-sama {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .hero-text {
        font-size: 0.75rem !important;
    }
    
    /* Stats Bar */
    .stat-pill {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }
    
    .stat-pill strong {
        font-size: 0.65rem;
    }
    
    /* Device Cards */
    .device-card {
        padding: 0.6rem;
    }
    
    .device-card h5 {
        font-size: 0.7rem;
    }
    
    .btn-navy-outline {
        padding: 3px 6px;
        font-size: 0.6rem;
    }
    
    /* Feature Section */
    .feature-content h3 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.75rem;
    }
    
    /* Pricing Section */
    .pricing-card {
        padding: 0.8rem;
    }
    
    .price-number {
        font-size: 1.2rem;
    }
    
    .pricing-card ul li {
        font-size: 0.65rem;
    }
    
    /* FAQ Section */
    .faq-question {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .faq-answer {
        font-size: 0.75rem;
    }
    
    /* Footer */
    .footer-heading {
        font-size: 0.8rem;
    }
    
    .footer-links-list a {
        font-size: 0.65rem;
    }
}

/* ========== LANDSCAPE MODE FIXES ========== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-fullscreen {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-text {
        font-size: 0.8rem !important;
    }
    
    .navbar-collapse {
        max-height: 60vh;
    }
    
    .nav-link-sama {
        padding: 0.4rem 0;
    }
}