:root {
            /* Primary Brand Colors - Enhanced for better accessibility */
            --brand-color: #0891b2; /* Improved cyan with better contrast */
            --brand-hover: #0e7490;
            --brand-dark: #164e63;
            --brand-light: #f0f9ff;
            --brand-lighter: #e0f2fe;
            
            /* Secondary Colors for Visual Hierarchy */
            --accent-color: #06b6d4;
            --accent-hover: #0891b2;
            --accent-light: #cffafe;
            
            /* Neutral Colors - Optimized for readability */
            --neutral-50: #f8fafc;
            --neutral-100: #f1f5f9;
            --neutral-200: #e2e8f0;
            --neutral-300: #cbd5e1;
            --neutral-400: #94a3b8;
            --neutral-500: #64748b;
            --neutral-600: #475569;
            --neutral-700: #334155;
            --neutral-800: #1e293b;
            --neutral-900: #0f172a;
            
            /* Background Colors - Enhanced for visual depth */
            --bg-primary: #ffffff;
            --bg-secondary: #f8fafc;
            --bg-tertiary: #f1f5f9;
            --bg-accent: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            --bg-hero: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 50%, #ffffff 100%);
            --bg-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            
            /* Success, Warning, Error Colors */
            --success-color: #059669;
            --success-light: #d1fae5;
            --warning-color: #d97706;
            --warning-light: #fef3c7;
            --error-color: #dc2626;
            --error-light: #fee2e2;
            
            /* Shadow System */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-brand: 0 10px 25px -5px rgba(8, 145, 178, 0.25);
        }
        
        body {
            font-family: 'Cairo', 'Tajawal', 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            padding-top: 50px;
            font-weight: 400;
            letter-spacing: 0.3px;
        }
        
        /* Typography Hierarchy */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cairo', 'Inter', sans-serif;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.3;
        }
        
        .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
            font-family: 'Cairo', 'Inter', sans-serif;
            font-weight: 800;
            letter-spacing: -1px;
        }
        
        .lead {
            font-family: 'Tajawal', 'Inter', sans-serif;
            font-weight: 400;
            line-height: 1.8;
            letter-spacing: 0.2px;
        }
        
        .btn {
            font-family: 'Almarai', 'Inter', sans-serif;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .navbar-brand {
            font-family: 'Cairo', 'Inter', sans-serif;
        }
        
        .nav-link {
            font-family: 'Tajawal', 'Inter', sans-serif;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        
        small, .small {
            font-family: 'Tajawal', 'Inter', sans-serif;
            font-weight: 400;
            letter-spacing: 0.2px;
        }
        
        .text-muted {
            font-family: 'Tajawal', 'Inter', sans-serif;
            color: #6c757d !important;
            line-height: 1.6;
        }
        
        /* Enhanced readability for Arabic text */
        p, li, span {
            font-family: 'Tajawal', 'Inter', sans-serif;
            line-height: 1.8;
            letter-spacing: 0.2px;
            color: var(--neutral-700);
        }
        
        /* Improved text contrast */
        .text-muted {
            color: var(--neutral-500) !important;
        }
        
        .text-dark {
            color: var(--neutral-900) !important;
        }
        
        h1, h2, h3, h4, h5, h6 {
            color: var(--neutral-900);
        }
        
        /* Special styling for innovative content */
        .innovative-text {
            font-family: 'Cairo', 'Inter', sans-serif;
            font-weight: 600;
            background: linear-gradient(135deg, var(--brand-color), var(--brand-dark), #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 0.5px;
        }
        
        .diverse-solutions {
            font-family: 'Almarai', 'Inter', sans-serif;
            font-weight: 400;
            color: #6c757d;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
        }
        
        /* Clean Minimalist Card Component - Enhanced */
        .clean-card {
            background: var(--bg-primary);
            border: 1px solid var(--neutral-200);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }
        
        .clean-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-brand);
            border-color: var(--brand-light);
            background: var(--bg-secondary);
        }
        
        .clean-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--brand-color), var(--brand-dark));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .clean-card:hover::before {
            opacity: 1;
        }
        
        .clean-card-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--brand-light), #ffffff);
            border: 2px solid var(--brand-color);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .clean-card:hover .clean-card-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, var(--brand-color), var(--brand-dark));
            border-color: var(--brand-dark);
        }
        
        .clean-card-icon i {
            font-size: 1.5rem;
            color: var(--brand-color);
            transition: color 0.3s ease;
        }
        
        .clean-card:hover .clean-card-icon i {
            color: white;
        }
        
        .clean-card-title {
            font-family: 'Cairo', 'Inter', sans-serif;
            font-size: 1.25rem;
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 0.75rem;
            line-height: 1.4;
            letter-spacing: -0.2px;
        }
        
        .clean-card-description {
            font-family: 'Tajawal', 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            letter-spacing: 0.1px;
        }
        
        .clean-card-action {
            font-family: 'Almarai', 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--brand-color);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            letter-spacing: 0.2px;
        }
        
        .clean-card-action:hover {
            color: var(--brand-dark);
            transform: translateX(-2px);
        }
        
        .clean-card-action i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .clean-card-action:hover i {
            transform: translateX(-3px);
        }
        
        /* Card Grid Layout */
        .clean-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .clean-card {
                padding: 1.5rem;
            }
            
            .clean-cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }
        }
        
        .diverse-solutions {
            font-family: 'Almarai', 'Inter', sans-serif;
            font-weight: 700;
            color: var(--brand-color);
            text-shadow: 0 2px 4px rgba(20, 184, 166, 0.1);
        }
        
        .btn-brand {
            background-color: var(--brand-color);
            border-color: var(--brand-color);
            color: white;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .btn-brand:hover {
            background-color: var(--brand-hover);
            border-color: var(--brand-hover);
            color: white;
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        
        .btn-outline-brand {
            color: var(--brand-color);
            border-color: var(--brand-color);
            background-color: transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .btn-outline-brand:hover {
            background-color: var(--brand-color);
            border-color: var(--brand-color);
            color: white;
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        
        /* Enhanced form controls */
        .form-control {
            border-color: var(--neutral-300);
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--brand-color);
            box-shadow: 0 0 0 0.2rem rgba(8, 145, 178, 0.25);
        }
        
        .text-brand {
            color: var(--brand-color);
        }
        
        .bg-brand {
            background-color: var(--brand-color);
        }
        
        .bg-brand-light {
            background-color: var(--brand-light);
        }
        
        .border-brand {
            border-color: var(--brand-color) !important;
        }
        
        .hero-section {
            background: var(--bg-hero);
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding-top: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(8, 145, 178, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .feature-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-brand);
            border-color: var(--brand-light) !important;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }
        
        .feature-card:hover::before {
            left: 100%;
        }
        
        .benefit-icon-container {
            position: relative;
            width: 70px;
            height: 70px;
            margin-bottom: 1.5rem;
            cursor: pointer;
        }
        
        .benefit-icon-bg {
            width: 100%;
            height: 100%;
            background: var(--brand-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .benefit-icon-inner {
            width: 30px;
            height: 30px;
            background: var(--brand-color);
            border-radius: 50%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 2;
        }
        
        .benefit-icon-bg::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--brand-color);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }
        
        .feature-card:hover .benefit-icon-bg {
            transform: rotate(360deg) scale(1.1);
            box-shadow: var(--shadow-brand);
        }
        
        .feature-card:hover .benefit-icon-bg::before {
            width: 100%;
            height: 100%;
        }
        
        .feature-card:hover .benefit-icon-inner {
            background: white;
            transform: scale(0.8) rotate(-360deg);
        }
        
        .benefit-icon-pulse {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid var(--brand-color);
            border-radius: 50%;
            opacity: 0;
            transform: scale(1);
            animation: pulse-ring 2s infinite;
        }
        
        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        .feature-card:hover .benefit-icon-pulse {
            animation-play-state: paused;
        }
        
        .benefit-sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--brand-color);
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
        }
        
        .benefit-sparkle-1 {
            top: 10px;
            right: 15px;
            animation: sparkle 1.5s infinite 0.2s;
        }
        
        .benefit-sparkle-2 {
            bottom: 15px;
            left: 10px;
            animation: sparkle 1.5s infinite 0.8s;
        }
        
        .benefit-sparkle-3 {
            top: 20px;
            left: 20px;
            animation: sparkle 1.5s infinite 1.2s;
        }
        
        @keyframes sparkle {
            0%, 100% {
                opacity: 0;
                transform: scale(0) rotate(0deg);
            }
            50% {
                opacity: 1;
                transform: scale(1) rotate(180deg);
            }
        }
        
        .feature-card:hover .benefit-sparkle {
            animation-play-state: running;
        }
        
        .process-step {
            position: relative;
        }
        
        .process-number {
            width: 80px;
            height: 80px;
            background: var(--brand-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }
        
        .pricing-card {
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card.featured {
            border: 2px solid var(--brand-color);
            transform: scale(1.05);
        }
        
        .pricing-card.featured::before {
            content: "الأكثر شعبية";
            position: absolute;
            top: -15px;
            right: 50%;
            transform: translateX(50%);
            background: var(--brand-color);
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: bold;
        }
        
        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            width: 60px;
            height: 60px;
            background: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
        }
        
        .floating-whatsapp:hover {
            background: #20b358;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }
        
        /* Animated Wavy Line Styles */
        .wavy-line-container {
            position: absolute;
            top: 15%;
            left: 0;
            width: 100%;
            height: 150px;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
            transform: translateY(-50%);
        }
        
        .wavy-line {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .wavy-path {
            fill: none;
            stroke: var(--brand-color);
            stroke-width: 2;
            stroke-dasharray: 10, 5;
            opacity: 0.3;
            filter: blur(0.5px);
        }
        
        .wavy-path-single {
            stroke-dashoffset: 0;
            animation: wavyMove1 10s linear infinite;
            stroke-width: 3;
            opacity: 0.2;
        }
        
        @keyframes wavyMove1 {
            0% {
                stroke-dashoffset: 0;
                opacity: 0.3;
            }
            50% {
                opacity: 0.5;
            }
            100% {
                stroke-dashoffset: -100;
                opacity: 0.3;
            }
        }
        
        @keyframes wavyMove2 {
            0% {
                stroke-dashoffset: 0;
                opacity: 0.2;
            }
            50% {
                opacity: 0.4;
            }
            100% {
                stroke-dashoffset: -150;
                opacity: 0.2;
            }
        }
        
        @keyframes wavyMove3 {
            0% {
                stroke-dashoffset: 0;
                opacity: 0.15;
            }
            50% {
                opacity: 0.3;
            }
            100% {
                stroke-dashoffset: -200;
                opacity: 0.15;
            }
        }
        
        .navbar {
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.95) !important;
        }
        
        .benefits-box {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid #e9ecef;
        }
        
        .benefit-icon {
            width: 40px;
            height: 40px;
            background: var(--brand-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .benefit-dot {
            width: 12px;
            height: 12px;
            background: var(--brand-color);
            border-radius: 50%;
        }
        
        .section-padding {
            padding: 5rem 0;
        }
        
        .faq-item {
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 10px;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        
        .faq-header {
            background: none;
            border: none;
            width: 100%;
            padding: 1.5rem;
            text-align: right;
            font-weight: 600;
            font-size: 1.1rem;
            color: #212529;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .faq-header:hover {
            color: var(--brand-color);
        }
        
        .faq-content {
            padding: 0 1.5rem 1.5rem;
            color: #6c757d;
            line-height: 1.6;
        }
        
        .logo-square {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--brand-color), var(--brand-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .logo-square::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }
        
        /* Enhanced Footer Styles */
        .footer-section {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            height: 100%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }
        
        .footer-section:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
            border-color: rgba(8, 145, 178, 0.3);
            box-shadow: var(--shadow-lg);
        }
        
        .newsletter-form .input-group {
            border-radius: 10px;
            overflow: hidden;
        }
        
        .newsletter-form .form-control {
            border: none;
            background: rgba(255, 255, 255, 0.9);
            color: var(--neutral-800);
            transition: all 0.3s ease;
        }
        
        .newsletter-form .form-control:focus {
            box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
            background: white;
            border-color: var(--brand-color);
        }
        
        .callback-form .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .callback-form .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--brand-color);
            box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.2);
            color: white;
        }
        
        .callback-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .promo-banner {
            animation: promoGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes promoGlow {
            0% {
                box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
            }
            100% {
                box-shadow: 0 0 30px rgba(255, 107, 107, 0.5), 0 0 40px rgba(238, 90, 36, 0.3);
            }
        }
        
        .discount-circle {
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--brand-color);
            color: white !important;
            transform: translateY(-3px);
        }
        
        .hover-brand:hover {
            color: var(--brand-color) !important;
        }
        
        /* Responsive Footer */
        @media (max-width: 768px) {
            .footer-section {
                margin-bottom: 2rem;
            }
            
            .promo-banner {
                margin-top: 1rem;
            }
        }
        
        .navbar-brand:hover .logo-square {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
        }
        
        .navbar-brand:hover .logo-square::before {
            opacity: 1;
            transform: rotate(45deg) translate(50%, 50%);
        }
        
        .brand-text {
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .brand-text {
            transform: translateX(-2px);
        }
        
        .brand-tagline {
            background: linear-gradient(90deg, var(--brand-color), var(--brand-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 500;
        }
        
        /* Desktop responsive styles */
        @media (min-width: 992px) {
            .hero-section .display-3 {
                font-size: 4.5rem !important;
                line-height: 1.1;
            }
            
            body {
                padding-top: 90px;
            }
            
            .hero-section {
                padding-top: 3rem;
            }
        }
        
        @media (min-width: 1200px) {
            .hero-section .display-3 {
                font-size: 5.5rem !important;
                line-height: 1.1;
            }
            
            body {
                padding-top: 50px;
            }
            
            .hero-section {
                padding-top: 4rem;
            }
        }
        
        @media (min-width: 1400px) {
            .hero-section .display-3 {
                font-size: 6.5rem !important;
                line-height: 1.1;
            }
            
            .hero-section {
                padding-top: 5rem;
            }
        }
        
        /* Enhanced Offers Modal Styles - Full Screen */
        #offersModal .modal-dialog {
            animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            margin: 0;
            max-width: 100vw;
            width: 100vw;
            height: 100vh;
            max-height: 100vh;
        }
        
        #offersModal .modal-content {
            height: 100vh;
            border-radius: 0;
            border: none;
        }
        
        @media (min-width: 576px) {
            #offersModal .modal-dialog {
                margin: 0;
                width: 100vw;
                height: 100vh;
            }
        }
        
        @media (min-width: 768px) {
            #offersModal .modal-dialog {
                margin: 0;
                width: 100vw;
                height: 100vh;
            }
        }
        
        @media (min-width: 992px) {
            #offersModal .modal-dialog {
                margin: 0;
                width: 100vw;
                height: 100vh;
            }
        }
        
        @media (max-height: 600px) {
            #offersModal .modal-dialog {
                margin: 0;
                width: 100vw;
                height: 100vh;
            }
        }
        
        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(-10px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        .fade-up { 
            opacity: 0; 
            transform: translateY(20px); 
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
        }
        .fade-up.reveal { 
            opacity: 1; 
            transform: translateY(0); 
            margin-bottom: 25px;
        }
       
        
        .offers-grid {
            max-height: 70vh;
            overflow-y: auto;
            padding: 2rem;
            background: linear-gradient(135deg, #fafbfc, #ffffff);
            margin: 0;
        }
        
        @media (min-width: 768px) {
            .offers-grid {
                padding: 2.5rem;
            }
        }
        
        @media (min-width: 992px) {
            .offers-grid {
                padding: 3rem;
            }
        }
        
        /* Ensure no empty space in modal */
        #offersModal .modal-body {
            display: flex;
            flex-direction: column;
        }
        
        #offersModal .enhanced-loader,
        #offersModal .offers-container {
            flex: 1;
            width: 100%;
        }
        
        /* Perfect spacing for offers container */
        .offers-container {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: none;
        }
        
        .offers-container.show {
            opacity: 1;
            transform: translateY(0);
            display: block;
        }
        
        .offer-card {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            border: 2px solid #f0f0f0 !important;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95) !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }
        
        .offer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s;
        }
        
        .offer-card:hover::before {
            left: 100%;
        }
        
        .offer-card:hover { 
            transform: translateY(-10px) scale(1.03); 
            box-shadow: 0 25px 50px rgba(0,0,0,0.18);
            border-color: #ff6b35 !important;
            background: rgba(255, 255, 255, 1) !important;
        }
        
        .offer-badge { 
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            color: #fff; 
            border-radius: 25px; 
            padding: 0.4rem 0.8rem; 
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .offer-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .offer-card:hover .offer-badge::before {
            left: 100%;
        }
        
        .modal-content {
            border-radius: 24px !important;
            border: none !important;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12) !important;
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.98);
            overflow: hidden;
        }
        
        .modal-header {
            padding: 1.75rem 2rem 1rem;
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
            border-radius: 24px 24px 0 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .modal-body {
            padding: 0;
            min-height: 0;
            position: relative;
            overflow: hidden;
        }
        
        .modal-footer {
            padding: 1rem 2rem 1.75rem;
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            border-radius: 0 0 24px 24px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }
        
        .offers-grid::-webkit-scrollbar {
            width: 8px;
        }
        
        .offers-grid::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .offers-grid::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            border-radius: 10px;
        }
        
        .offers-grid::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #e55a2b, #e67a35);
        }
        
        /* Orange themed buttons */
        .offer-card .btn-primary {
            background: linear-gradient(135deg, #ff6b35, #ff8c42) !important;
            border: none !important;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .offer-card .btn-primary:hover {
            background: linear-gradient(135deg, #e55a2b, #e67a35) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }
        
        .offer-card .btn-outline-primary {
            border: 2px solid #ff6b35 !important;
            color: #ff6b35 !important;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .offer-card .btn-outline-primary:hover {
            background: #ff6b35 !important;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
        }
        
        /* Enhanced card content styling */
        .offer-card h6 {
            color: #2c3e50;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .offer-card .text-muted {
            color: #6c757d !important;
            line-height: 1.5;
        }
        
        .offer-card .list-unstyled li {
            padding: 0.25rem 0;
            font-size: 0.9rem;
        }
        
        .offer-card .text-primary {
            color: #ff6b35 !important;
        }
        
        /* Enhanced Loading Animation Styles */
        .enhanced-loader {
            background: linear-gradient(135deg, #fafbfc 0%, #ffffff 50%, #fafbfc 100%);
            position: relative;
            overflow: hidden;
            margin: 0;
            padding: 3rem 2rem;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .enhanced-loader::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.08), transparent);
            animation: shimmer 2.5s infinite;
        }
        
        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .spinner-container {
            position: relative;
            width: 90px;
            height: 90px;
            margin-bottom: 2rem;
        }
        
        .custom-spinner {
            width: 70px;
            height: 70px;
            border: 3px solid rgba(255, 107, 53, 0.1);
            border-top: 3px solid #ff6b35;
            border-right: 3px solid #ff8c42;
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .pulse-ring {
            width: 90px;
            height: 90px;
            border: 2px solid rgba(255, 107, 53, 0.2);
            border-radius: 50%;
            animation: pulse-ring 2.5s ease-out infinite;
            position: absolute;
            top: 0;
            left: 0;
        }
        
        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        @keyframes pulse-ring {
            0% {
                transform: scale(0.8);
                opacity: 1;
            }
            100% {
                transform: scale(1.2);
                opacity: 0;
            }
        }
        
        .loader-title {
            color: #2c3e50;
            font-size: 1.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }
        
        .loader-subtitle {
            font-size: 1rem;
            color: #6c757d !important;
            font-weight: 400;
            margin-bottom: 1rem;
        }
        
        .loading-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        
        .loading-dots .dot {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #ff6b35, #ff8c42);
            border-radius: 50%;
            animation: dot-bounce 1.4s ease-in-out infinite both;
        }
        
        .loading-dots .dot:nth-child(1) { animation-delay: -0.32s; }
        .loading-dots .dot:nth-child(2) { animation-delay: -0.16s; }
        .loading-dots .dot:nth-child(3) { animation-delay: 0s; }
        
        @keyframes dot-bounce {
            0%, 80%, 100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            40% {
                transform: scale(1.2);
                opacity: 1;
            }
        }
        
        /* Loader fade out animation */
        .enhanced-loader.fade-out {
            animation: loaderFadeOut 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }
        
        @keyframes loaderFadeOut {
            0% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            100% {
                opacity: 0;
                transform: translateY(-20px) scale(0.95);
            }
        }
        
        /* Offers container fade in animation */
        .offers-container {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .offers-container.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Top Navigation Promo Banner Styles */
        .top-promo-banner {
            background: linear-gradient(135deg, #ff6b6b, #ee5a24);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            margin-left: 1rem;
            position: relative;
            overflow: hidden;
            animation: promoGlow 2s ease-in-out infinite alternate;
        }
        
        .top-promo-banner:hover {
            animation: none;
            transform: scale(1.02);
        }
        
        .top-promo-content {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: white;
            text-decoration: none;
        }
        
        .top-promo-content:hover {
            color: white;
            text-decoration: none;
        }
        
        .top-promo-badge {
            background: rgba(255, 193, 7, 0.9);
            color: #212529;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.2rem 0.5rem;
            border-radius: 12px;
            white-space: nowrap;
        }
        
        .top-promo-circle {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 700;
        }
        
        .top-promo-text {
            flex: 1;
            min-width: 0;
        }
        
        .top-promo-title {
            font-size: 0.85rem;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
        }
        
        .top-promo-desc {
            font-size: 0.7rem;
            opacity: 0.9;
            margin: 0;
            line-height: 1.1;
        }
        
        .top-promo-btn {
            background: rgba(255,255,255,0.9);
            color: #ee5a24;
            border: none;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .top-promo-btn:hover {
            background: white;
            color: #d63031;
            transform: translateY(-1px);
        }
        
        /* Mobile responsive for top promo */
         @media (max-width: 991px) {
             .top-promo-banner {
                 display: none;
             }
         }
         
         @media (max-width: 1200px) {
             .top-promo-banner {
                 margin-left: 0.5rem;
             }
             
             .top-promo-content {
                 gap: 0.5rem;
             }
             
             .top-promo-title {
                 font-size: 0.8rem;
             }
             
             .top-promo-desc {
                 font-size: 0.65rem;
             }
         }
         
         /* Enhanced Full-width top banner styles */
         .simple-top-banner {
             position: fixed;
             top: 0;
             left: 0;
             right: 0;
             width: 100%;
             background: linear-gradient(135deg, #ff7b54, #ff6b35, #f9844a);
             padding: 0.5rem 0;
             z-index: 1060;
             box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
         }
         

         
         .optimized-banner-content {
             position: relative;
             overflow: hidden;
         }
         
         .optimized-banner-content::before {
             content: '';
             position: absolute;
             top: 0;
             left: -100%;
             width: 100%;
             height: 100%;
             background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
             transition: left 0.8s ease;
         }
         
         .full-width-top-banner:hover .optimized-banner-content::before {
             left: 100%;
         }
         
         .compact-banner-text span {
             font-size: 0.85rem;
             line-height: 1.2;
             white-space: nowrap;
         }
         
         .compact-timer small {
             font-size: 0.75rem;
             white-space: nowrap;
         }
         
         .compact-discount-circle {
             flex-shrink: 0;
             transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
         }
         
         .compact-discount-circle:hover {
             transform: scale(1.1) rotate(5deg);
         }
         
         @keyframes gradientShift {
             0%, 100% {
                 background-position: 0% 50%;
             }
             50% {
                 background-position: 100% 50%;
             }
         }
         
         .full-width-banner-content {
             max-width: 1200px;
             margin: 0 auto;
             padding: 0 1rem;
             display: flex;
             align-items: center;
             justify-content: center;
             text-align: center;
             color: white;
         }
         
         .banner-text {
             font-size: 0.9rem;
             font-weight: 600;
             margin: 0;
         }
         
         .banner-highlight {
             background: rgba(255, 255, 255, 0.2);
             padding: 0.2rem 0.5rem;
             border-radius: 15px;
             margin: 0 0.5rem;
             font-weight: 700;
         }
         
         /* Adjust body padding for enhanced banner */
         body {
             padding-top: 120px !important;
         }
         
         /* Adjust navbar top position */
         .navbar.fixed-top {
             top: 45px;
         }
         
         /* Enhanced responsive adjustments for top banner */
         @media (max-width: 991px) {
             .optimized-banner-content {
                 justify-content: center !important;
                 flex-wrap: wrap;
                 gap: 0.5rem;
             }
             
             .optimized-banner-content > div:first-child,
             .optimized-banner-content > div:last-child {
                 display: none;
             }
             
             .text-center.flex-grow-1 {
                 flex-grow: 0 !important;
             }
         }
         
         @media (max-width: 768px) {
             .full-width-top-banner {
                 padding: 0.6rem 0;
                 border-radius: 0 0 20px 20px;
             }
             
             .optimized-banner-content .d-flex {
                 flex-direction: column;
                 align-items: center;
                 gap: 0.3rem;
             }
             
             .compact-discount-circle {
                 margin: 0 !important;
             }
         }
         
         @media (max-width: 576px) {
             .full-width-top-banner {
                 padding: 0.5rem 0;
                 border-radius: 0 0 15px 15px;
             }
             
             .optimized-banner-content {
                 flex-direction: column;
                 align-items: center;
                 gap: 0.5rem;
             }
             
             .optimized-banner-content > div:first-child,
             .optimized-banner-content > div:last-child {
                 display: block;
             }
             
             .text-center.flex-grow-1 .d-flex {
                 flex-direction: column;
                 gap: 0.3rem;
             }
             
             .text-center.flex-grow-1 div {
                 font-size: 0.7rem !important;
             }
             
             .compact-discount-circle div {
                 width: 30px !important;
                 height: 30px !important;
             }
             
             .compact-banner-text span {
                 font-size: 0.75rem;
             }
             
             .compact-banner-text {
                 margin-right: 0.5rem !important;
             }
         }
         
         @media (max-width: 576px) {
             .compact-banner-text span {
                 font-size: 0.7rem;
                 white-space: normal;
             }
             
             .optimized-banner-content {
                 justify-content: center !important;
             }
             
             .compact-discount-circle {
                 margin-right: 0.5rem !important;
             }
             
             .banner-text {
                 font-size: 0.8rem;
             }
             
             .navbar.fixed-top {
                 top: 55px;
             }
             
             body {
                 padding-top: 115px !important;
             }
         }
         
         @media (max-width: 576px) {
             .banner-text {
                 font-size: 0.75rem;
             }
             
             .banner-highlight {
                 margin: 0 0.25rem;
                 padding: 0.1rem 0.3rem;
             }
             
             /* Add margin-top for main heading on mobile */
             .hero-section h1.display-3 {
                 margin-top: 25px;
             }
         }