
        /* ===== ISLAMIC INSPIRED DESIGN SYSTEM WITH BLUE THEME ===== */
        :root {
            --primary: #0A2A4A;        /* Deep Islamic Blue */
            --primary-light: #1A3A5A;   /* Lighter Blue */
            --secondary: #2A4A6A;       /* Medium Blue */
            --accent: #C9A84A;          /* Islamic Gold */
            --accent-light: #E5C87B;    /* Light Gold */
            --dark: #0A1A2A;            /* Almost Black Blue */
            --gray-100: #F9F7F0;        /* Cream Background */
            --gray-200: #E8E2D4;        /* Border Light */
            --gray-300: #C9BCA5;         /* Border Medium */
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #D4B06A 100%);
            --gradient-dark: linear-gradient(135deg, #0A2A4A 0%, #1A3A5A 100%);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--gray-100);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
            font-weight: 300;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Amiri', serif;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        /* ===== ISLAMIC PATTERN OVERLAY ===== */
        .islamic-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 100px 100px;
            background-repeat: repeat;
            pointer-events: none;
            z-index: 2;
        }

        /* ===== UTILITY CLASSES ===== */
        .container {
            max-width: 1280px;
            padding: 0 24px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--accent);
        }

        .section-title p {
            color: var(--secondary);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            padding: 12px 32px;
            border-radius: 0;
            font-weight: 400;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--primary);
            border: 1px solid var(--accent);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--accent);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1px solid var(--accent);
        }

        .btn-outline:hover {
            background: var(--accent);
            color: var(--primary);
        }

        .btn-outline-dark {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-outline-dark:hover {
            background: var(--primary);
            color: var(--white);
        }

        .btn-gold {
            background: var(--accent);
            color: var(--primary);
            border: 1px solid var(--accent);
        }

        .btn-gold:hover {
            background: transparent;
            color: var(--accent);
        }

        .btn-lg {
            padding: 14px 42px;
            font-size: 1rem;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: rgba(10, 42, 74, 0.95);
            backdrop-filter: blur(10px);
            padding: 16px 0;
            box-shadow: var(--shadow-sm);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent);
        }

        .navbar .container-fluid {
            padding: 0 24px;
        }

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

        .navbar-nav .nav-link {
            color: var(--white);
            font-weight: 400;
            padding: 8px 18px !important;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            border-radius: 0;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 30px;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--accent);
            background: transparent;
        }

        .navbar-toggler {
            background: var(--accent);
            border: none;
            padding: 8px 12px;
            border-radius: 0;
        }

        .navbar-toggler-icon {
            filter: brightness(0);
        }

        /* ===== ISLAMIC HERO SECTION WITH TAJ MAHAL BACKGROUND ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            width: 100%;
            background-image: url('../img/hero.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            padding: 120px 0;
            margin-top: 76px;
            overflow: hidden;
        }

        /* Blue Overlay to match Taj Mahal's serene atmosphere */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(10, 42, 74, 0.4) 0%, rgba(26, 58, 90, 0.3) 100%);
            z-index: 1;
        }

        /* Islamic Pattern - Very Subtle */
        .hero-islamic-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M50,5 L55,20 L70,20 L60,30 L65,45 L50,35 L35,45 L40,30 L30,20 L45,20 L50,5" fill="none" stroke="%23C9A84A" stroke-width="0.5"/><path d="M50,95 L55,80 L70,80 L60,70 L65,55 L50,65 L35,55 L40,70 L30,80 L45,80 L50,95" fill="none" stroke="%23C9A84A" stroke-width="0.5"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23C9A84A" stroke-width="0.5"/></svg>');
            background-size: 150px 150px;
            background-repeat: repeat;
            z-index: 2;
            pointer-events: none;
            opacity: 0.1;
        }

        /* Islamic Border Elements */
        .hero-border-top {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: repeating-linear-gradient(90deg, var(--accent) 0px, var(--accent) 10px, transparent 10px, transparent 20px);
            z-index: 5;
            opacity: 0.2;
        }

        .hero-border-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: repeating-linear-gradient(90deg, var(--accent) 0px, var(--accent) 10px, transparent 10px, transparent 20px);
            z-index: 5;
            opacity: 0.2;
        }

        .hero-border-left {
            position: absolute;
            top: 0;
            left: 0;
            width: 10px;
            height: 100%;
            background: repeating-linear-gradient(180deg, var(--accent) 0px, var(--accent) 10px, transparent 10px, transparent 20px);
            z-index: 5;
            opacity: 0.2;
        }

        .hero-border-right {
            position: absolute;
            top: 0;
            right: 0;
            width: 10px;
            height: 100%;
            background: repeating-linear-gradient(180deg, var(--accent) 0px, var(--accent) 10px, transparent 10px, transparent 20px);
            z-index: 5;
            opacity: 0.2;
        }

        /* Animated Stars (Islamic Symbol) */
        .hero-stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .star {
            position: absolute;
            color: var(--accent);
            font-size: 1rem;
            opacity: 0.2;
            animation: twinkle 4s infinite ease-in-out;
        }

        .star:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
        .star:nth-child(2) { top: 25%; left: 85%; animation-delay: 1s; }
        .star:nth-child(3) { top: 70%; left: 20%; animation-delay: 2s; }
        .star:nth-child(4) { top: 80%; left: 90%; animation-delay: 3s; }
        .star:nth-child(5) { top: 40%; left: 50%; animation-delay: 1.5s; }
        .star:nth-child(6) { top: 60%; left: 70%; animation-delay: 2.5s; }
        .star:nth-child(7) { top: 30%; left: 30%; animation-delay: 0.5s; }
        .star:nth-child(8) { top: 85%; left: 40%; animation-delay: 3.5s; }

        @keyframes twinkle {
            0%, 100% { opacity: 0.1; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(1.2); }
        }

        /* Hero Content */
        .hero-content {
            position: relative;
            z-index: 10;
            color: var(--white);
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        /* Islamic Inspired Tagline */
        .hero-tagline-wrapper {
            margin-bottom: 20px;
            position: relative;
        }

        .hero-tagline {
            display: inline-block;
            color: var(--accent);
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            background: transparent;
            padding: 0 20px;
            border: none;
            font-family: 'Poppins', sans-serif;
            position: relative;
        }

        .hero-tagline::before {
            content: '﴾';
            font-family: 'Amiri', serif;
            font-size: 1.5rem;
            color: var(--accent);
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
        }

        .hero-tagline::after {
            content: '﴿';
            font-family: 'Amiri', serif;
            font-size: 1.5rem;
            color: var(--accent);
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
        }

        /* Islamic Inspired Title */
        .hero-title-wrapper {
            margin-bottom: 20px;
            position: relative;
        }

        .hero-title {
            font-family: 'Amiri', serif;
            font-size: 5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 0 5px 20px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease 0.2s both;
            letter-spacing: 0.02em;
        }

        .hero-title span {
            color: var(--accent);
            font-style: normal;
            font-weight: 700;
            position: relative;
            display: inline-block;
            padding: 0 15px;
        }

        .hero-title span::before {
            content: '✨';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            opacity: 0.7;
        }

        .hero-title span::after {
            content: '✨';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            opacity: 0.7;
        }

        /* Refined Description - Matches Taj Mahal's Majesty */
        .hero-description {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 15px rgba(0,0,0,0.6);
            animation: fadeInUp 1s ease 0.4s both;
            font-style: italic;
            background: rgba(10, 42, 74, 0.2);
            backdrop-filter: blur(2px);
            padding: 20px 30px;
            border-left: 3px solid var(--accent);
            border-right: 3px solid var(--accent);
        }

        /* Islamic Inspired Buttons */
        .hero-buttons {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn-hero-1 {
            background: var(--accent);
            color: var(--primary);
            padding: 14px 48px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 1px solid var(--accent);
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .btn-hero-1::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-hero-1:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-2px);
        }

        .btn-hero-1:hover::before {
            left: 100%;
        }

        .btn-hero-2 {
            background: transparent;
            color: var(--white);
            padding: 14px 48px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 1px solid var(--accent);
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            backdrop-filter: blur(5px);
        }

        .btn-hero-2::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-hero-2:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .btn-hero-2:hover::before {
            left: 100%;
        }

        /* Islamic Inspired Stats */
        .hero-stats {
            display: flex;
            gap: 60px;
            justify-content: center;
            animation: fadeInUp 1s ease 0.8s both;
            position: relative;
            background: rgba(10, 42, 74, 0.3);
            backdrop-filter: blur(5px);
            padding: 20px 40px;
            border: 1px solid rgba(201, 168, 74, 0.3);
            display: inline-flex;
            margin: 0 auto;
        }

        .hero-stat {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }

        .hero-stat::before {
            content: '•';
            color: var(--accent);
            position: absolute;
            left: -30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            opacity: 0.5;
        }

        .hero-stat:first-child::before {
            display: none;
        }

        .hero-stat h3 {
            font-family: 'Amiri', serif;
            color: var(--accent);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            line-height: 1;
        }

        .hero-stat p {
            font-family: 'Poppins', sans-serif;
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.8rem;
            font-weight: 300;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Islamic Crescent Scroll Indicator */
        .hero-scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            animation: fadeInOut 2s infinite;
            pointer-events: none;
        }

        .hero-scroll-indicator span {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }

        .hero-scroll-indicator i {
            color: var(--accent);
            font-size: 1.2rem;
            opacity: 0.8;
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
            50% { opacity: 0.8; transform: translateX(-50%) translateY(10px); }
        }

        /* ===== STATS CARD ===== */
        .stats-card {
            background: var(--white);
            border-radius: 0;
            padding: 40px;
            margin-top: -80px;
            position: relative;
            z-index: 20;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--accent);
        }

        .stat-item {
            text-align: center;
            border-right: 1px solid rgba(201, 168, 74, 0.3);
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-item h5 {
            color: var(--primary);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 8px;
            font-family: 'Amiri', serif;
        }

        .stat-item p {
            color: var(--secondary);
            font-weight: 300;
            margin: 0;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        /* ===== FEATURE SECTIONS WITH ISLAMIC ARCHITECTURE IMAGES ===== */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            align-items: center;
            margin: 40px 0;
        }

        .feature-image {
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feature-image::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 1px solid var(--accent);
            opacity: 0.3;
            z-index: 1;
            pointer-events: none;
        }

        .feature-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            pointer-events: none;
        }

        .feature-image img {
            max-width: 100%;
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        .feature-image img:hover {
            transform: scale(1.05);
        }

        .feature-content {
            padding: 0 20px;
        }

        .feature-subtitle {
            color: var(--accent);
            font-size: 0.8rem;
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            position: relative;
            display: inline-block;
        }

        .feature-subtitle::before,
        .feature-subtitle::after {
            content: '•';
            color: var(--accent);
            margin: 0 10px;
            opacity: 0.5;
        }

        .feature-title {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
        }

        .feature-description {
            color: var(--secondary);
            font-size: 1rem;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.8;
        }

        .qr-code {
            width: 200px;
            height: 200px;
            margin: 20px auto;
            background: var(--white);
            padding: 15px;
            border-radius: 0;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--accent);
        }

        .qr-code img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* ===== INSTALLATION CARDS ===== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .install-card {
            background: var(--white);
            border-radius: 0;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .install-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-accent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .install-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
        }

        .install-card:hover::before {
            opacity: 1;
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: var(--primary);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: var(--accent);
            font-size: 1.8rem;
            border: 1px solid var(--accent);
        }

        .install-card h4 {
            font-size: 1.2rem;
            margin-bottom: 16px;
            color: var(--primary);
            font-weight: 600;
        }

        .install-card p {
            color: var(--secondary);
            margin-bottom: 24px;
            font-size: 0.9rem;
            font-weight: 300;
        }

        /* ===== PRICING CARDS ===== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 40px 0;
        }

        .pricing-card {
            background: var(--white);
            border-radius: 0;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            position: relative;
            box-shadow: var(--shadow-sm);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            border: 1px dashed var(--accent);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
        }

        .pricing-card:hover::before {
            opacity: 0.3;
        }

        .pricing-card.popular {
            border: 1px solid var(--accent);
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--primary);
            padding: 4px 20px;
            font-weight: 400;
            font-size: 0.75rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .pricing-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin: 15px 0 5px;
            font-family: 'Amiri', serif;
        }

        .pricing-period {
            color: var(--secondary);
            font-weight: 300;
            margin-bottom: 20px;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px;
        }

        .pricing-features li {
            margin: 12px 0;
            color: var(--dark);
            font-size: 0.85rem;
            font-weight: 300;
        }

        .pricing-features li i {
            color: var(--accent);
            margin-right: 8px;
            font-size: 0.8rem;
        }

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

        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 0 !important;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--gray-200);
        }

        .accordion-button {
            background: var(--white);
            color: var(--primary);
            font-weight: 600;
            padding: 20px 25px;
            font-size: 1rem;
            border: none;
            font-family: 'Amiri', serif;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }

        .accordion-body {
            background: var(--white);
            padding: 25px;
            color: var(--secondary);
            line-height: 1.8;
            font-weight: 300;
            font-size: 0.95rem;
        }

        /* ===== WHATSAPP SECTION ===== */
        .whatsapp-card {
            background: var(--primary);
            border-radius: 0;
            padding: 60px;
            text-align: center;
            color: var(--white);
            margin: 50px 0;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--accent);
            position: relative;
        }

        .whatsapp-card::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            border: 1px dashed var(--accent);
            opacity: 0.3;
            pointer-events: none;
        }

        .whatsapp-number {
            font-size: 2.5rem;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.05);
            padding: 15px 40px;
            display: inline-block;
            margin: 25px 0;
            color: var(--accent);
            letter-spacing: 2px;
            font-family: 'Amiri', serif;
            border: 1px solid var(--accent);
        }

        .verified-badge {
            background: var(--accent);
            color: var(--primary);
            padding: 6px 24px;
            font-weight: 400;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
            margin-top: 80px;
            position: relative;
            border-top: 3px solid var(--accent);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: repeating-linear-gradient(90deg, var(--accent) 0px, var(--accent) 10px, transparent 10px, transparent 20px);
            opacity: 0.2;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h5 {
            color: var(--accent);
            margin-bottom: 24px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .footer-col h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--accent);
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            display: block;
            margin: 12px 0;
            font-size: 0.9rem;
            font-weight: 300;
            transition: all 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(201, 168, 74, 0.2);
            color: rgba(255, 255, 255, 0.4);
            font-weight: 300;
            font-size: 0.85rem;
        }

        /* ===== FLOATING ELEMENTS ===== */
        .floating-wa {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.2);
            z-index: 99;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .floating-wa:hover {
            transform: scale(1.1) rotate(5deg);
            color: white;
            background: #20b359;
        }

        .back-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: var(--accent);
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
            border: 1px solid var(--accent);
        }

        .back-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-top:hover {
            background: transparent;
            color: var(--accent);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 4.2rem;
            }
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.8rem;
            }
            
            .hero-stats {
                gap: 40px;
                padding: 15px 30px;
            }
            
            .hero-stat::before {
                left: -20px;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .feature-content {
                text-align: center;
                padding: 0;
            }
            
            .feature-buttons {
                justify-content: center;
            }
            
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-col h5::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-col {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                padding: 12px 0;
            }
            
            .navbar .container-fluid {
                padding: 0 16px;
            }
            
            .navbar-nav {
                padding: 20px 0;
            }
            
            .navbar .ms-3 {
                margin-left: 0 !important;
                margin-top: 15px;
                flex-direction: column;
            }
            
            .hero {
                margin-top: 70px;
                background-attachment: scroll;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-description {
                font-size: 1rem;
                padding: 15px 20px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 30px;
                padding: 20px;
                width: 100%;
            }
            
            .hero-stat::before {
                display: none;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-hero-1, .btn-hero-2 {
                width: 100%;
                justify-content: center;
            }
            
            .stats-card {
                margin-top: 30px;
                padding: 30px 20px;
            }
            
            .stat-item {
                border-right: none;
                border-bottom: 1px solid rgba(201, 168, 74, 0.2);
                padding: 20px 0;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .whatsapp-card {
                padding: 40px 20px;
            }
            
            .whatsapp-number {
                font-size: 1.8rem;
                padding: 12px 20px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-tagline::before,
            .hero-tagline::after {
                font-size: 1rem;
            }
            
            .hero-title span::before,
            .hero-title span::after {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-description {
                font-size: 0.9rem;
                padding: 12px 15px;
            }
            
            .feature-title {
                font-size: 2rem;
            }
            
            .hero-tagline {
                font-size: 0.8rem;
                letter-spacing: 3px;
            }
        }
    /* Mobile Responsive CSS for NOOR TV */

/* ========== BASE RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
    /* General Spacing */
    .section-padding {
        padding: 50px 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* ========== NAVBAR ========== */
    .navbar .container-fluid {
        padding: 15px 20px;
    }

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

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 14px;
    }

    .ms-3.d-flex.gap-2 {
        flex-direction: column;
        gap: 10px !important;
        margin-top: 15px;
    }

    .ms-3.d-flex.gap-2 a {
        text-align: center;
    }

    /* ========== HERO SECTION ========== */
    .hero {
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    .hero-tagline {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 1.2;
    }

    .hero-title span {
        font-size: 48px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 40px;
    }

    .hero-stat {
        flex: 0 0 calc(33.33% - 20px);
        min-width: 100px;
    }

    .hero-stat h3 {
        font-size: 20px;
    }

    .hero-stat p {
        font-size: 11px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
        right: 20px;
    }

    /* ========== STATS CARD ========== */
    .stats-card {
        margin-top: -40px;
        padding: 20px 15px;
    }

    .stat-item {
        text-align: center;
        margin-bottom: 15px;
    }

    .stat-item h5 {
        font-size: 14px;
    }

    .stat-item p {
        font-size: 12px;
    }

    /* ========== FEATURE GRID (About Sections) ========== */
    .feature-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .feature-grid.reverse {
        flex-direction: column;
    }

    .feature-image {
        order: -1;
    }

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

    .feature-content {
        text-align: center;
    }

    .feature-title {
        font-size: 28px;
    }

    .feature-description {
        font-size: 14px;
    }

    .feature-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .feature-buttons a {
        width: 100%;
        text-align: center;
    }

    /* ========== QR SECTION ========== */
    .feature-image img[alt="qr"] {
        width: 200px !important;
    }

    /* ========== WHATSAPP CARD ========== */
    .whatsapp-card {
        padding: 30px 20px;
        margin: 20px;
        text-align: center;
    }

    .whatsapp-card h2 {
        font-size: 24px;
    }

    .whatsapp-card p {
        font-size: 14px;
    }

    .whatsapp-number {
        font-size: 20px;
        word-break: break-all;
    }

    .d-flex.align-items-center.justify-content-center.gap-3 {
        flex-direction: column;
        gap: 10px !important;
    }

    .verified-badge {
        font-size: 12px;
    }

    .btn-gold.btn-lg {
        font-size: 14px;
        padding: 12px 30px;
    }

    .mt-4.p-3 {
        font-size: 12px;
        padding: 10px !important;
    }

    /* ========== INSTALLATION CARDS GRID ========== */
    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }

    .install-card {
        padding: 20px;
    }

    .install-card img {
        width: 70px !important;
        height: 70px !important;
    }

    .install-card h4 {
        font-size: 16px;
    }

    .install-card .btn {
        font-size: 13px;
        padding: 8px 12px;
    }

    /* ========== PRICING CARDS ========== */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .pricing-card {
        max-width: 350px;
        margin: 0 auto;
        width: 100%;
    }

    .pricing-price {
        font-size: 36px;
    }

    .pricing-period {
        font-size: 14px;
    }

    .pricing-features li {
        font-size: 13px;
    }

    /* ========== FAQ SECTION ========== */
    .faq-container {
        padding: 0 15px;
    }

    .accordion-button {
        font-size: 14px;
        padding: 15px;
    }

    .accordion-body {
        font-size: 13px;
        padding: 15px;
    }

    .faq-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 30px auto 0;
    }

    .faq-buttons a {
        width: 100%;
        text-align: center;
    }

    /* ========== FEATURES ICONS SECTION ========== */
    .row.justify-content-center .col-6 {
        margin-bottom: 30px;
    }

    .row.justify-content-center img {
        width: 60px !important;
    }

    .row.justify-content-center h5 {
        font-size: 14px;
        margin-top: 10px;
    }

    /* ========== PARTNERS IFRAME ========== */
    .partners-container {
        padding: 0;
    }

    #4thdimensionpartnersIframe {
        height: 300px;
    }

    /* ========== FOOTER ========== */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h5 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer-col a {
        font-size: 13px;
        display: inline-block;
        margin: 5px 0;
    }

    .footer-col img {
        max-width: 150px;
        margin: 0 auto;
    }

    .copyright {
        text-align: center;
        padding: 20px 15px 0;
        font-size: 11px;
    }

    /* ========== FLOATING WHATSAPP ========== */
    .floating-wa {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    /* ========== BACK TO TOP ========== */
    .back-top {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 20px;
        left: 20px;
    }
}

/* ========== TABLET RESPONSIVE (769px - 1024px) ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-title span {
        font-size: 64px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-grid {
        gap: 40px;
    }

    .feature-title {
        font-size: 32px;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ========== SMALL MOBILE (up to 480px) ========== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-title span {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-stat h3 {
        font-size: 18px;
    }

    .hero-stat p {
        font-size: 10px;
    }

    .stats-card .stat-item {
        flex: 0 0 50%;
        margin-bottom: 15px;
    }

    .feature-title {
        font-size: 24px;
    }

    .whatsapp-number {
        font-size: 18px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pricing-card {
        padding: 20px;
    }

    .pricing-price {
        font-size: 32px;
    }

    .accordion-button {
        font-size: 13px;
        padding: 12px;
    }

    .footer-col h5 {
        font-size: 14px;
    }

    .footer-col a {
        font-size: 12px;
    }
}

/* ========== LANDSCAPE MODE ========== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-stats {
        margin-top: 30px;
    }

    .feature-grid {
        flex-direction: row;
        gap: 20px;
    }

    .feature-image {
        flex: 1;
    }

    .feature-content {
        flex: 1;
    }
}

/* ========== UTILITY CLASSES FOR MOBILE ========== */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center;
    }

    .d-none-mobile {
        display: none;
    }

    .mt-30-mobile {
        margin-top: 30px;
    }

    .mb-30-mobile {
        margin-bottom: 30px;
    }

    .full-width-mobile {
        width: 100%;
    }

    .mx-auto-mobile {
        margin-left: auto;
        margin-right: auto;
    }
}


/* Mobile Responsive CSS for NOOR TV */

/* ========== BASE RESPONSIVE STYLES ========== */
@media (max-width: 768px) {
    /* General Spacing */
    .section-padding {
        padding: 50px 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* ========== NAVBAR - FIXED VISIBILITY ========== */
    .navbar {
        background: var(--white) !important;
        padding: 10px 0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar .container-fluid {
        padding: 0 20px;
    }

    .navbar-brand img {
        height: 40px;
        width: auto;
    }

    /* Navbar Toggler Button */
    .navbar-toggler {
        display: block !important;
        border: 1px solid var(--accent);
        padding: 8px 12px;
        background: transparent;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 168, 74, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Collapsible Menu */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        border-radius: 0 0 10px 10px;
        margin-top: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
        border-top: 2px solid var(--accent);
    }

    .navbar-collapse.collapse:not(.show) {
        display: none !important;
    }

    .navbar-collapse.show {
        display: block !important;
    }

    .navbar-nav {
        margin: 0 !important;
        padding: 0 !important;
    }

    .navbar-nav .nav-item {
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        font-size: 15px;
        font-weight: 500;
        color: #333 !important;
        display: block;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--accent) !important;
    }

    /* Navbar Buttons Container */
    .ms-3.d-flex.gap-2 {
        flex-direction: row;
        gap: 12px !important;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .ms-3.d-flex.gap-2 a {
        flex: 1;
        text-align: center;
        padding: 10px 15px;
        font-size: 14px;
        margin: 0;
    }

    .ms-3.d-flex.gap-2 .btn-primary {
        background: var(--accent);
        border: none;
    }

    .ms-3.d-flex.gap-2 .btn-outline {
        border: 1px solid var(--accent);
        background: transparent;
        color: var(--accent);
    }

    /* ========== HERO SECTION ========== */
    .hero {
        min-height: 100vh;
        padding: 100px 0 50px;
        margin-top: 0;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    .hero-tagline {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 1.2;
    }

    .hero-title span {
        font-size: 48px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 40px;
    }

    .hero-stat {
        flex: 0 0 calc(33.33% - 20px);
        min-width: 100px;
    }

    .hero-stat h3 {
        font-size: 20px;
    }

    .hero-stat p {
        font-size: 11px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
        right: 20px;
    }

    /* ========== STATS CARD ========== */
    .stats-card {
        margin-top: -40px;
        padding: 20px 15px;
    }

    .stat-item {
        text-align: center;
        margin-bottom: 15px;
    }

    .stat-item h5 {
        font-size: 14px;
    }

    .stat-item p {
        font-size: 12px;
    }

    /* ========== FEATURE GRID (About Sections) ========== */
    .feature-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .feature-grid.reverse {
        flex-direction: column;
    }

    .feature-image {
        order: -1;
        width: 100%;
    }

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

    .feature-content {
        text-align: center;
        width: 100%;
    }

    .feature-title {
        font-size: 28px;
    }

    .feature-description {
        font-size: 14px;
    }

    .feature-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .feature-buttons a {
        width: 100%;
        text-align: center;
    }

    /* ========== QR SECTION ========== */
    .feature-image img[alt="qr"] {
        width: 200px !important;
        margin: 0 auto;
        display: block;
    }

    /* ========== WHATSAPP CARD ========== */
    .whatsapp-card {
        padding: 30px 20px;
        margin: 20px;
        text-align: center;
    }

    .whatsapp-card h2 {
        font-size: 24px;
    }

    .whatsapp-card p {
        font-size: 14px;
    }

    .whatsapp-number {
        font-size: 20px;
        word-break: break-all;
    }

    .d-flex.align-items-center.justify-content-center.gap-3 {
        flex-direction: column;
        gap: 10px !important;
    }

    .verified-badge {
        font-size: 12px;
    }

    .btn-gold.btn-lg {
        font-size: 14px;
        padding: 12px 30px;
    }

    .mt-4.p-3 {
        font-size: 12px;
        padding: 10px !important;
    }

    /* ========== INSTALLATION CARDS GRID ========== */
    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }

    .install-card {
        padding: 20px;
        text-align: center;
    }

    .install-card img {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 15px;
    }

    .install-card h4 {
        font-size: 16px;
        margin: 10px 0;
    }

    .install-card .btn {
        font-size: 13px;
        padding: 8px 12px;
        margin-top: 5px;
    }

    .install-card .btn-primary {
        background: var(--accent);
        border: none;
    }

    .install-card .btn-outline-dark {
        border: 1px solid var(--accent);
        color: var(--accent);
        background: transparent;
    }

    /* ========== PRICING CARDS ========== */
    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }

    .pricing-card {
        max-width: 350px;
        margin: 0 auto;
        width: 100%;
        padding: 25px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .pricing-period {
        font-size: 14px;
    }

    .pricing-features li {
        font-size: 13px;
        padding: 8px 0;
    }

    /* ========== FAQ SECTION ========== */
    .faq-container {
        padding: 0 15px;
    }

    .accordion-button {
        font-size: 14px;
        padding: 15px;
    }

    .accordion-body {
        font-size: 13px;
        padding: 15px;
    }

    .faq-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 280px;
        margin: 30px auto 0;
    }

    .faq-buttons a {
        width: 100%;
        text-align: center;
    }

    /* ========== FEATURES ICONS SECTION ========== */
    .row.justify-content-center .col-6 {
        margin-bottom: 30px;
        text-align: center;
    }

    .row.justify-content-center img {
        width: 60px !important;
        height: auto;
    }

    .row.justify-content-center h5 {
        font-size: 14px;
        margin-top: 10px;
    }

    /* ========== PARTNERS IFRAME ========== */
    .partners-container {
        padding: 0;
    }

    #4thdimensionpartnersIframe {
        height: 300px;
    }

    /* ========== FOOTER ========== */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h5 {
        font-size: 16px;
        margin-bottom: 15px;
        color: var(--accent);
    }

    .footer-col a {
        font-size: 13px;
        display: block;
        margin: 8px 0;
        color: #666;
        text-decoration: none;
    }

    .footer-col a:hover {
        color: var(--accent);
    }

    .footer-col img {
        max-width: 150px;
        margin: 0 auto;
        display: block;
    }

    .copyright {
        text-align: center;
        padding: 20px 15px 0;
        font-size: 11px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }

    /* ========== FLOATING WHATSAPP ========== */
    .floating-wa {
        position: fixed;
        width: 50px;
        height: 50px;
        background: #25D366;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
        z-index: 999;
        text-decoration: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .floating-wa:hover {
        color: white;
        transform: scale(1.1);
    }

    /* ========== BACK TO TOP ========== */
    .back-top {
        position: fixed;
        width: 40px;
        height: 40px;
        background: var(--accent);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        bottom: 20px;
        left: 20px;
        z-index: 999;
        text-decoration: none;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .back-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-top:hover {
        color: white;
        transform: translateY(-3px);
    }
}

/* ========== TABLET RESPONSIVE (769px - 1024px) ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-title span {
        font-size: 64px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-grid {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    .feature-title {
        font-size: 32px;
    }

    .card-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* ========== SMALL MOBILE (up to 480px) ========== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-title span {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-stat h3 {
        font-size: 18px;
    }

    .hero-stat p {
        font-size: 10px;
    }

    .stats-card .stat-item {
        flex: 0 0 50%;
        margin-bottom: 15px;
    }

    .feature-title {
        font-size: 24px;
    }

    .whatsapp-number {
        font-size: 18px;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .pricing-card {
        padding: 20px;
    }

    .pricing-price {
        font-size: 32px;
    }

    .accordion-button {
        font-size: 13px;
        padding: 12px;
    }

    .footer-col h5 {
        font-size: 14px;
    }

    .footer-col a {
        font-size: 12px;
    }

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

    .navbar-toggler {
        padding: 6px 10px;
    }
}

/* ========== LANDSCAPE MODE ========== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-stats {
        margin-top: 30px;
    }

    .feature-grid {
        flex-direction: row;
        gap: 20px;
    }

    .feature-image {
        flex: 1;
    }

    .feature-content {
        flex: 1;
    }

    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* ========== UTILITY CLASSES FOR MOBILE ========== */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center;
    }

    .d-none-mobile {
        display: none;
    }

    .mt-30-mobile {
        margin-top: 30px;
    }

    .mb-30-mobile {
        margin-bottom: 30px;
    }

    .full-width-mobile {
        width: 100%;
    }

    .mx-auto-mobile {
        margin-left: auto;
        margin-right: auto;
    }
}