 
        /* Yellow & Orange Theme - Clean White Background */
        :root {
            --primary: #FF8C00;        /* Dark Orange */
            --primary-light: #FFA500;   /* Orange */
            --secondary: #FFD700;        /* Gold/Yellow */
            --secondary-light: #FFE55C;  /* Light Yellow */
            --accent: #FF6B35;           /* Warm Orange */
            --dark: #333333;              /* Dark Gray */
            --light-bg: #FFFFFF;          /* Pure White */
            --gray-bg: #F8F9FA;           /* Light Gray Background */
            --border-color: #FFE4B5;      /* Light Orange Border */
            --text-primary: #2C3E50;       /* Dark Blue-Gray */
            --text-secondary: #5A6A7A;      /* Medium Gray */
            --whatsapp-green: #25D366;
            --gradient-1: linear-gradient(135deg, #FF8C00, #FFD700);
            --gradient-2: linear-gradient(135deg, #FFD700, #FF8C00);
            --shadow: 0 10px 40px rgba(255, 140, 0, 0.1);
            --shadow-hover: 0 15px 50px rgba(255, 140, 0, 0.2);
            --tooltip-bg: #FF8C00;
            --tooltip-text: white;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--light-bg);
            color: var(--text-secondary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: -0.02em;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        /* Container */
        .container {
            max-width: 1400px;
            padding: 0 15px;
            margin: 0 auto;
        }

        /* Hero Motion Animations */
        @keyframes floatText {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes glowText {
            0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
            50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 140, 0, 0.5); }
            100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

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

        @keyframes zoomIn {
            from {
                transform: scale(0.5);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0.3);
                opacity: 0;
            }
            50% {
                transform: scale(1.05);
            }
            70% {
                transform: scale(0.9);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10% { transform: translateX(-10px); }
            20% { transform: translateX(10px); }
            30% { transform: translateX(-5px); }
            40% { transform: translateX(5px); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Hero Animation Classes */
        .hero-badge {
            animation: bounceIn 1.2s ease-out, glowText 3s infinite 1.2s;
        }

        .hero-content h1 {
            animation: slideInLeft 1s ease-out, floatText 4s ease-in-out infinite 1s;
        }

        .hero-content h1 .project-name {
            animation: pulse 2s ease-in-out infinite, glowText 2s infinite;
            display: inline-block;
        }

        .hero-content p {
            animation: slideInRight 1s ease-out 0.2s both, floatText 4s ease-in-out infinite 1.2s;
        }

        .hero-buttons {
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-buttons .btn-custom {
            animation: pulse 2s ease-in-out infinite 2s;
        }

        .hero-stats {
            animation: zoomIn 1s ease-out 0.6s both;
        }

        .hero-stat-item {
            animation: fadeInUp 0.8s ease-out both;
            animation-iteration-count: 1;
            transition: all 0.3s;
        }

        .hero-stat-item:nth-child(1) {
            animation-delay: 0.8s;
        }
        .hero-stat-item:nth-child(2) {
            animation-delay: 1s;
        }
        .hero-stat-item:nth-child(3) {
            animation-delay: 1.2s;
        }
        .hero-stat-item:nth-child(4) {
            animation-delay: 1.4s;
        }

        .hero-stat-item:hover {
            animation: bounce 0.5s ease-out;
            transform: translateY(-5px);
        }

        /* Hover Animations */
        .hover-scale {
            transition: transform 0.3s ease;
        }

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

        .hover-rotate {
            transition: transform 0.3s ease;
        }

        .hover-rotate:hover {
            transform: rotate(5deg);
        }

        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hover-lift:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .hover-shine {
            position: relative;
            overflow: hidden;
        }

        .hover-shine::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20%;
            height: 200%;
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(30deg);
            transition: left 0.5s;
        }

        .hover-shine:hover::after {
            left: 150%;
        }

        /* Navbar */
        .navbar {
            background: var(--light-bg) !important;
            padding: 12px 0;
            box-shadow: 0 2px 20px rgba(255, 140, 0, 0.1);
            border-bottom: 3px solid var(--primary);
            transition: all 0.3s;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .navbar-brand {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary) !important;
            white-space: nowrap;
            display: flex;
            align-items: center;
        }

        .navbar-brand span {
            color: var(--primary);
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .navbar-brand i {
            color: var(--primary);
            margin-right: 8px;
            font-size: 28px;
        }

        .navbar-toggler {
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 8px 12px;
            background: transparent;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .navbar-toggler i {
            font-size: 20px;
        }

        .navbar-collapse {
            flex-basis: 100%;
            flex-grow: 1;
            margin-top: 15px;
            display: none;
        }

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

        .navbar-nav {
            display: flex;
            flex-direction: column;
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
            gap: 5px;
        }

        .nav-item {
            width: 100%;
        }

        .nav-link {
            color: var(--text-primary) !important;
            font-weight: 500;
            padding: 12px 15px !important;
            font-size: 15px;
            display: block;
            border-radius: 8px;
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary) !important;
            background: rgba(255, 140, 0, 0.05);
            border-left-color: var(--primary);
        }

        .navbar-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 10px;
        }

        .btn-navbar {
            background: var(--gradient-1);
            color: white;
            padding: 12px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
            border: none;
            white-space: nowrap;
            display: block;
            text-align: center;
            width: 100%;
        }

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

        .btn-navbar:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
            color: white;
        }

        @media (min-width: 992px) {
            .navbar .container {
                flex-wrap: nowrap;
            }
            
            .navbar-toggler {
                display: none;
            }
            
            .navbar-collapse {
                flex-basis: auto;
                display: flex !important;
                margin-top: 0;
                flex-grow: 1;
            }
            
            .navbar-nav {
                flex-direction: row;
                margin: 0 auto;
                gap: 2px;
            }
            
            .nav-item {
                width: auto;
            }
            
            .nav-link {
                padding: 8px 12px !important;
                font-size: 14px;
                border-left: none;
            }
            
            .nav-link:hover,
            .nav-link.active {
                background: transparent;
                border-left: none;
                color: var(--primary) !important;
            }
            
            .nav-link::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 0;
                height: 2px;
                background: var(--gradient-1);
                transition: width 0.3s;
            }
            
            .nav-link:hover::after,
            .nav-link.active::after {
                width: 70%;
            }
            
            .navbar-buttons {
                flex-direction: row;
                margin-top: 0;
                width: auto;
            }
            
            .btn-navbar {
                padding: 8px 16px;
                font-size: 13px;
                width: auto;
            }
        }

        @media (min-width: 1200px) {
            .nav-link {
                padding: 8px 16px !important;
                font-size: 15px;
            }
            
            .btn-navbar {
                padding: 8px 20px;
                font-size: 14px;
            }
        }

        /* Tooltip Styles */
        [data-tooltip] {
            position: relative;
            cursor: help;
        }

        [data-tooltip]:before {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-1);
            color: white;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            white-space: nowrap;
            box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
            margin-bottom: 10px;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            pointer-events: none;
            font-family: 'Inter', sans-serif;
        }

        [data-tooltip]:after {
            content: '';
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid var(--primary);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            margin-bottom: 2px;
        }

        [data-tooltip]:hover:before,
        [data-tooltip]:hover:after {
            opacity: 1;
            visibility: visible;
            bottom: 120%;
        }

        /* Stats Tooltips */
        .stat-item {
            position: relative;
            cursor: pointer;
        }

        .stat-tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-1);
            color: white;
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 13px;
            white-space: nowrap;
            box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
            margin-bottom: 10px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
            pointer-events: none;
        }

        .stat-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid var(--primary);
        }

        .stat-item:hover .stat-tooltip {
            opacity: 1;
            visibility: visible;
            bottom: 120%;
        }

        /* Hero Section - Full Screen Image */
        .hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 100px 0;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-background img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            animation: zoomIn 2s ease-out;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 140, 0, 0.4) 0%, rgba(255, 215, 0, 0.4) 100%);
            z-index: 2;
            animation: fadeInUp 1.5s ease-out;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            color: white;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 30px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            animation: bounceIn 1.2s ease-out, glowText 3s infinite 1.2s;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: slideInLeft 1s ease-out, floatText 4s ease-in-out infinite 1s;
        }

        @media (min-width: 768px) {
            .hero-content h1 {
                font-size: 5rem;
            }
        }

        @media (min-width: 992px) {
            .hero-content h1 {
                font-size: 6rem;
            }
        }

        .hero-content h1 .project-name {
            color: var(--secondary);
            position: relative;
            display: inline-block;
            font-size: 1.2em;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: pulse 2s ease-in-out infinite, glowText 2s infinite;
        }

        .hero-content h1 .project-name::after {
            content: '';
            position: absolute;
            bottom: 15px;
            left: 0;
            width: 100%;
            height: 15px;
            background: var(--gradient-1);
            opacity: 0.5;
            border-radius: 4px;
            z-index: -1;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            animation: slideInRight 1s ease-out 0.2s both, floatText 4s ease-in-out infinite 1.2s;
        }

        @media (min-width: 768px) {
            .hero-content p {
                font-size: 1.4rem;
            }
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease-out 0.4s both;
            justify-content: center;
        }

        @media (min-width: 480px) {
            .hero-buttons {
                flex-direction: row;
                gap: 20px;
            }
        }

        .hero-content .btn-custom {
            background: var(--gradient-1);
            color: white;
            border: 2px solid white;
            font-size: 18px;
            padding: 16px 40px;
            font-weight: 700;
            animation: pulse 2s ease-in-out infinite 2s;
        }

        .hero-content .btn-custom:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            background: var(--gradient-2);
            animation: shake 0.5s ease-out;
        }

        .hero-content .btn-secondary-custom {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .hero-content .btn-secondary-custom:hover {
            background: var(--gradient-1);
            color: white;
            border-color: white;
            animation: shake 0.5s ease-out;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
            animation: zoomIn 1s ease-out 0.6s both;
        }

        @media (min-width: 480px) {
            .hero-stats {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .hero-stat-item {
            text-align: center;
            padding: 18px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s;
            animation: fadeInUp 0.8s ease-out both;
            animation-iteration-count: 1;
        }

        .hero-stat-item:nth-child(1) {
            animation-delay: 0.8s;
        }
        .hero-stat-item:nth-child(2) {
            animation-delay: 1s;
        }
        .hero-stat-item:nth-child(3) {
            animation-delay: 1.2s;
        }
        .hero-stat-item:nth-child(4) {
            animation-delay: 1.4s;
        }

        .hero-stat-item:hover {
            animation: bounce 0.5s ease-out;
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
            border-color: var(--secondary);
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            line-height: 1.2;
        }

        .hero-stat-label {
            font-size: 1rem;
            color: white;
            font-weight: 500;
            opacity: 0.9;
        }

        /* Buttons */
        .btn-custom {
            padding: 14px 30px;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
            font-size: 15px;
            display: inline-block;
            text-align: center;
            box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
        }

        @media (min-width: 768px) {
            .btn-custom {
                padding: 16px 40px;
                font-size: 16px;
            }
        }

        .btn-primary-custom {
            background: var(--gradient-1);
            color: white;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
            color: white;
        }

        .btn-secondary-custom {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary-custom:hover {
            background: var(--gradient-1);
            color: white;
            border-color: transparent;
            transform: translateY(-3px) scale(1.05);
        }

        /* Feature Cards - Perfectly Centered */
        .feature-card {
            background: var(--light-bg);
            border-radius: 20px;
            padding: 30px 20px;
            box-shadow: var(--shadow);
            transition: all 0.4s;
            height: 100%;
            border: 1px solid var(--border-color);
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .feature-card {
                padding: 35px 25px;
            }
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 32px;
            transition: all 0.3s;
        }

        @media (min-width: 768px) {
            .feature-icon {
                width: 90px;
                height: 90px;
                font-size: 36px;
            }
        }

        .feature-card:hover .feature-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .feature-card h4 {
            color: var(--primary);
            margin-bottom: 12px;
            font-weight: 700;
            font-size: 1.2rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .feature-card h4 {
                font-size: 1.3rem;
            }
        }

        .feature-card p {
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-size: 0.95rem;
            text-align: center;
        }

        .feature-link {
            color: var(--primary);
            font-weight: 600;
            display: inline-block;
            font-size: 0.95rem;
            text-align: center;
        }

        .feature-link:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        /* Professional Pricing Cards - All Points Included */
        .pricing-section {
            padding: 60px 0;
            background: var(--gray-bg);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 640px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .pricing-card {
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }

        .pricing-header {
            background: var(--gradient-1);
            padding: 24px 20px;
            text-align: center;
            position: relative;
        }

        .pricing-header h3 {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .pricing-price {
            color: white;
            font-size: 2rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .pricing-price small {
            font-size: 0.9rem;
            font-weight: 500;
            opacity: 0.9;
        }

        .pricing-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(4px);
            color: white;
            padding: 4px 10px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .pricing-body {
            padding: 24px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

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

        .pricing-features li {
            padding: 8px 0;
            color: var(--text-primary);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: var(--primary);
            margin-right: 10px;
            font-size: 0.9rem;
            width: 18px;
            text-align: center;
        }

        .pricing-footer {
            margin-top: auto;
        }

        .btn-pricing {
            width: 100%;
            padding: 12px;
            background: var(--gradient-1);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
        }

        .btn-pricing:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
        }

        /* QR Card */
        .qr-card {
            background: var(--light-bg);
            border-radius: 20px;
            padding: 30px 20px;
            box-shadow: var(--shadow);
            text-align: center;
            border: 1px solid var(--border-color);
        }

        @media (min-width: 768px) {
            .qr-card {
                border-radius: 30px;
                padding: 40px 30px;
            }
        }

        .qr-code-placeholder {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #FFF8E7, #FFE4B5);
            border-radius: 15px;
            margin: 15px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px dashed var(--primary);
        }

        @media (min-width: 768px) {
            .qr-code-placeholder {
                width: 200px;
                height: 200px;
                border-radius: 20px;
            }
        }

        .qr-code-placeholder i {
            font-size: 60px;
            color: var(--primary);
        }

        @media (min-width: 768px) {
            .qr-code-placeholder i {
                font-size: 80px;
            }
        }

        /* WhatsApp Support Card */
        .support-card {
            background: linear-gradient(135deg, #FFF8E7, #FFFFFF);
            border-radius: 30px;
            padding: 30px 20px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            .support-card {
                border-radius: 40px;
                padding: 50px 40px;
            }
        }

        .whatsapp-icon-large {
            width: 60px;
            height: 60px;
            background: var(--whatsapp-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 30px;
            color: white;
            animation: pulse 2s infinite;
        }

        @media (min-width: 768px) {
            .whatsapp-icon-large {
                width: 80px;
                height: 80px;
                font-size: 40px;
            }
        }

        .contact-number-india {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            margin: 15px 0;
            word-break: break-word;
        }

        @media (min-width: 768px) {
            .contact-number-india {
                font-size: 2.2rem;
            }
        }

        .verified-badge {
            background: var(--gradient-1);
            color: white;
            padding: 6px 15px;
            border-radius: 50px;
            display: inline-block;
            font-size: 0.8rem;
        }

        @media (min-width: 768px) {
            .verified-badge {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }

        .btn-whatsapp {
            background: var(--whatsapp-green);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            display: inline-block;
            margin-top: 15px;
            border: 2px solid white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
            transition: all 0.3s;
            width: 100%;
        }

        @media (min-width: 480px) {
            .btn-whatsapp {
                width: auto;
                padding: 15px 40px;
                font-size: 1.1rem;
            }
        }

        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            color: white;
        }

        .response-badge {
            background: #FFF8E7;
            padding: 10px 15px;
            border-radius: 50px;
            display: inline-block;
            margin-top: 15px;
            border: 1px solid var(--border-color);
            font-size: 0.9rem;
        }

        @media (min-width: 768px) {
            .response-badge {
                padding: 10px 20px;
                font-size: 1rem;
            }
        }

        /* Footer */
        .footer {
            background: #F8F9FA;
            color: var(--text-secondary);
            padding: 40px 0 20px;
            border-top: 3px solid var(--primary);
        }

        @media (min-width: 768px) {
            .footer {
                padding: 60px 0 30px;
            }
        }

        .footer h4 {
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 8px;
        }

        .footer h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gradient-1);
        }

        .footer a {
            color: var(--text-secondary);
            display: block;
            padding: 6px 0;
            transition: all 0.3s;
            font-size: 0.9rem;
        }

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

        .app-download {
            background: var(--gradient-1);
            padding: 15px;
            border-radius: 15px;
            color: white;
            text-align: center;
        }

        .app-download i {
            font-size: 30px;
            margin: 0 8px;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: var(--gradient-1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            border: 2px solid white;
            box-shadow: var(--shadow);
        }

        @media (min-width: 768px) {
            .back-to-top {
                bottom: 30px;
                right: 30px;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

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

        .back-to-top:hover {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: var(--shadow-hover);
            color: white;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            right: 20px;
            bottom: 80px;
            width: 55px;
            height: 55px;
            background: var(--whatsapp-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            z-index: 99;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
            animation: float 3s ease-in-out infinite;
            border: 3px solid white;
        }

        @media (min-width: 768px) {
            .whatsapp-float {
                right: 30px;
                bottom: 120px;
                width: 70px;
                height: 70px;
                font-size: 35px;
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #128C7E;
            color: white;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        @media (min-width: 768px) {
            .section-title {
                margin-bottom: 60px;
            }
        }

        .section-title .badge {
            background: var(--gradient-1);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 15px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        @media (min-width: 768px) {
            .section-title .badge {
                padding: 10px 25px;
                font-size: 1rem;
            }
        }

        .section-title h2 {
            font-size: 2rem;
            color: var(--text-primary);
        }

        @media (min-width: 768px) {
            .section-title h2 {
                font-size: 2.8rem;
            }
        }

        .section-title h2 span {
            color: var(--primary);
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Device Grid */
        .device-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
            padding: 10px 0;
        }

        @media (min-width: 576px) {
            .device-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 25px;
            }
        }

        @media (min-width: 768px) {
            .device-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
                padding: 20px 0;
            }
        }

        /* Stats Section */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 30px 0;
        }

        @media (min-width: 480px) {
            .stats-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (min-width: 768px) {
            .stats-container {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 30px;
                padding: 40px 0;
            }
        }

        .stat-box {
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        @media (min-width: 768px) {
            .stat-box {
                min-width: 120px;
                padding: 15px 20px;
            }
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary);
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
        }

        @media (min-width: 768px) {
            .stat-number {
                font-size: 2.5rem;
            }
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--text-secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (min-width: 768px) {
            .stat-label {
                font-size: 1rem;
            }
        }

        /* Accordion */
        .accordion-item {
            border: 1px solid var(--border-color);
            margin-bottom: 10px;
            border-radius: 10px !important;
            overflow: hidden;
        }

        .accordion-button {
            padding: 15px 20px;
            font-weight: 600;
            color: var(--text-primary);
            background: var(--light-bg);
            font-size: 0.95rem;
        }

        @media (min-width: 768px) {
            .accordion-button {
                padding: 20px 25px;
                font-size: 1.1rem;
            }
        }

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

        .accordion-body {
            padding: 15px 20px;
            background: var(--light-bg);
            font-size: 0.9rem;
        }

        @media (min-width: 768px) {
            .accordion-body {
                padding: 25px;
                font-size: 1rem;
            }
        }

        /* Spinner */
        #spinner {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--light-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s;
        }

        #spinner.show {
            opacity: 1;
            visibility: visible;
        }

        .spinner-border {
            width: 2.5rem;
            height: 2.5rem;
            color: var(--primary);
        }

        @media (min-width: 768px) {
            .spinner-border {
                width: 3rem;
                height: 3rem;
            }
        }

        /* Utility Classes */
        .text-gradient {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .bg-gradient-custom {
            background: var(--gradient-1);
        }

        .py-5 {
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
        }

        @media (min-width: 768px) {
            .py-5 {
                padding-top: 3rem;
                padding-bottom: 3rem;
            }
        }
        /* ========================================
   OTT SPAIN - COMPLETE MOBILE RESPONSIVE CSS
   Centered Sections | Fixed Navbar | No Horizontal Scroll
   ======================================== */

:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #2C3E50;
    --whatsapp-green: #25D366;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* ========== PREVENT HORIZONTAL SCROLLING ========== */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
}

* {
    max-width: 100%;
    box-sizing: border-box;
}

/* ========== MOBILE STYLES (max-width: 768px) ========== */
@media (max-width: 768px) {
    
    body {
        overflow-x: hidden !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .container,
    .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
        width: 100%;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100%;
    }
    
    [class*="col-"] {
        padding-left: 8px !important;
        padding-right: 8px !important;
        width: 100%;
    }
    
    /* ========== SPINNER ========== */
    #spinner {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* ========== NAVBAR - STICKY ABOVE EVERYTHING ========== */
    .navbar {
        background: var(--white) !important;
        padding: 10px 0 !important;
        box-shadow: var(--shadow-sm);
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 9999;
    }
    
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 16px;
    }
    
    .navbar-brand img {
        width: 70px !important;
        height: auto;
    }
    
    /* Navbar Toggler */
    .navbar-toggler {
        display: block !important;
        background: transparent;
        border: none;
        padding: 8px 12px;
        cursor: pointer;
    }
    
    .navbar-toggler i {
        font-size: 24px;
        color: var(--primary) !important;
    }
    
    /* Collapsible Menu */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        border-radius: 0 0 16px 16px;
        box-shadow: var(--shadow);
        z-index: 9998;
        border-top: 3px solid var(--primary);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        transition: none !important;
    }
    
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    /* Nav Links */
    .navbar-nav {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 12px 0 !important;
        font-size: 15px;
        font-weight: 500;
        color: var(--text-dark) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link.active {
        color: var(--primary) !important;
    }
    
    /* Navbar Buttons */
    .navbar-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    
    .navbar-buttons a {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
        font-size: 14px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
    }
    
    .btn-navbar {
        background: var(--primary);
        color: var(--white);
    }
    
    .btn-navbar-outline {
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
    }
    
    /* ========== HERO SECTION ========== */
    .hero-section {
        position: relative;
        min-height: 100vh;
        padding: 60px 0 40px;
        display: flex;
        align-items: center;
        text-align: center;
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.2;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 16px;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .project-name {
        display: inline-block;
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .btn-custom {
        display: block;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    /* ========== STATS SECTION - CENTERED ========== */
    .py-4.bg-light {
        padding: 30px 0 !important;
    }
    
    .stats-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        width: 100%;
    }
    
    .stat-box {
        flex: 0 0 calc(33.33% - 15px);
        min-width: 100px;
        text-align: center;
        padding: 15px 10px;
        background: var(--white);
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
    }
    
    .stat-number {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary);
    }
    
    .stat-number i {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
        margin-top: 5px;
        color: var(--text-light);
    }
    
    .stat-tooltip {
        display: none;
    }
    
    /* ========== ABOUT SECTION - CENTERED ========== */
    .py-5 {
        padding: 40px 0 !important;
    }
    
    .row.align-items-center {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .col-lg-6 {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-image-container img {
        width: 100%;
        max-width: 280px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .qr-card {
        text-align: center;
        padding: 20px;
    }
    
    .qr-card h3 {
        font-size: 24px;
    }
    
    .qr-code-placeholder img {
        width: 180px !important;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    .d-flex.flex-wrap.gap-2 {
        justify-content: center;
    }
    
    /* ========== SUPPORT CARD ========== */
    .support-card {
        text-align: center;
        padding: 30px 20px;
        margin: 0 auto;
    }
    
    .support-card h2 {
        font-size: 24px;
    }
    
    .whatsapp-icon-large i {
        font-size: 48px;
        color: var(--whatsapp-green);
    }
    
    .contact-number-india {
        font-size: 20px;
        word-break: break-all;
    }
    
    .btn-whatsapp {
        display: inline-block;
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .response-badge {
        font-size: 12px;
    }
    
    /* ========== DEVICE CARDS GRID - CENTERED ========== */
    .device-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
    
    .feature-card {
        flex: 0 0 calc(50% - 20px);
        max-width: 280px;
        text-align: center;
        padding: 20px;
        margin: 0 auto;
    }
    
    .feature-card img {
        width: 70px !important;
        height: auto;
        margin-bottom: 15px;
    }
    
    .feature-card h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .feature-link {
        display: inline-block;
        margin: 5px;
        font-size: 12px;
    }
    
    .d-flex.flex-wrap.justify-content-center.gap-2 {
        justify-content: center;
    }
    
    /* ========== SECTION TITLE ========== */
    .section-title {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .section-title span {
        font-size: 26px;
    }
    
    .badge {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    /* ========== PRICING SECTION - CENTERED ========== */
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 100%;
    }
    
    .pricing-card {
        flex: 0 0 100%;
        max-width: 320px;
        margin: 0 auto;
        text-align: center;
        padding: 20px;
    }
    
    .pricing-price {
        font-size: 28px;
    }
    
    .pricing-price small {
        font-size: 12px;
    }
    
    .pricing-features {
        text-align: left;
        padding-left: 20px;
    }
    
    .pricing-features li {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .btn-pricing {
        display: block;
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    /* ========== FAQ SECTION ========== */
    .accordion-item {
        margin-bottom: 10px;
    }
    
    .accordion-button {
        font-size: 14px;
        padding: 12px;
    }
    
    .accordion-body {
        font-size: 13px;
        padding: 12px;
    }
    
    /* ========== FEATURE ICONS - CENTERED ========== */
    .row.text-center.justify-content-center {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .col-6.col-md-4.col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .col-6.col-md-4.col-lg-2 img {
        width: 60px !important;
        height: auto;
        display: inline-block;
    }
    
    .col-6.col-md-4.col-lg-2 h5 {
        font-size: 13px;
        margin-top: 8px;
    }
    
    /* ========== PARTNERS IFRAME ========== */
    #partnersIframe {
        height: 200px !important;
    }
    
    /* ========== FOOTER ========== */
    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer .row {
        text-align: center;
    }
    
    .footer .col-md-6,
    .footer .col-lg-3 {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer a {
        display: block;
        margin: 8px 0;
        font-size: 13px;
    }
    
    .footer img {
        width: 180px !important;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    
    /* ========== COPYRIGHT ========== */
    .bg-gradient-custom {
        padding: 15px !important;
    }
    
    .bg-gradient-custom p {
        font-size: 11px;
    }
    
    /* ========== FLOATING BUTTONS ========== */
    .whatsapp-float {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: var(--whatsapp-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        text-decoration: none;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }
    
    .whatsapp-float i {
        font-size: 28px;
        color: var(--white);
    }
    
    .back-to-top {
        position: fixed;
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 9999;
        box-shadow: var(--shadow);
    }
    
    .back-to-top i {
        color: var(--white);
        font-size: 20px;
    }
    
    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }
    
    /* ========== UTILITY CLASSES ========== */
    .text-center-mobile {
        text-align: center;
    }
    
    .mx-auto-mobile {
        margin-left: auto;
        margin-right: auto;
    }
    
    .w-100-mobile {
        width: 100%;
    }
    
    .mb-30-mobile {
        margin-bottom: 30px;
    }
}

/* ========== TABLET STYLES (769px - 1024px) ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    .stats-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .stat-box {
        flex: 0 0 calc(16.66% - 15px);
        min-width: 120px;
    }
    
    .device-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        max-width: 100%;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .col-6.col-md-4.col-lg-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .project-name {
        font-size: 48px;
    }
}

/* ========== SMALL MOBILE (max-width: 480px) ========== */
@media (max-width: 480px) {
    .stat-box {
        flex: 0 0 calc(50% - 12px);
        min-width: 130px;
    }
    
    .feature-card {
        flex: 0 0 100%;
        max-width: 280px;
    }
    
    .device-grid {
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .project-name {
        font-size: 28px;
    }
    
    .section-title h2,
    .section-title span {
        font-size: 24px;
    }
    
    .pricing-price {
        font-size: 24px;
    }
    
    .support-card h2 {
        font-size: 22px;
    }
    
    .contact-number-india {
        font-size: 18px;
    }
    
    .col-6.col-md-4.col-lg-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        left: 15px;
    }
}

/* ========== LANDSCAPE MODE ========== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .navbar-collapse {
        max-height: 70vh;
    }
    
    .stats-container {
        gap: 10px;
    }
    
    .stat-box {
        flex: 0 0 calc(25% - 10px);
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card,
.stat-box,
.support-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* ========== SAFE AREA INSETS ========== */
@supports (padding: max(0px)) {
    .whatsapp-float {
        right: max(20px, env(safe-area-inset-right));
        bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    .back-to-top {
        left: max(20px, env(safe-area-inset-left));
        bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* ========== HOVER EFFECTS FOR MOBILE (touch-friendly) ========== */
@media (max-width: 768px) {
    .btn-custom:active,
    .btn-navbar:active,
    .btn-pricing:active,
    .feature-link:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .whatsapp-float:active,
    .back-to-top:active {
        transform: scale(0.95);
    }
}