     /* Global Styles */
        :root {
            --primary-color: #c2185b; /* وردي غامق للزهور */
            --secondary-color: #8e24aa; /* بنفسجي للتنويع */
            --accent-color: #4caf50; /* أخضر زيتي للأوراق */
            --success-color: #66bb6a;
            --info-color: #26a69a;
            --warning-color: #ffa726;
            --danger-color: #ef5350;
            --light-color: #f8f5f2; /* خلفية فاتحة جداً */
            --dark-color: #4a2c2a; /* بني غامق للنصوص */
            --gray-color: #78909c;
            --font-primary: 'Tajawal', sans-serif;
            --font-heading: 'Cairo', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-primary);
            background-color: #fefaf7; /* خلفية وردي فاتح جداً */
            color: var(--dark-color);
            padding-top: 80px;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
        }
        
        /* RTL Support */
        html[dir="rtl"] body {
            text-align: right;
        }
        
        html[dir="rtl"] .dropdown-menu {
            text-align: right;
        }
        
        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #9c1550;
        }
        
        /* Buttons */
        .btn {
            border-radius: 30px;
            font-weight: 500;
            padding: 12px 25px;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #9c1550;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(194, 24, 91, 0.2);
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            padding: 0;
        }
        
        .navbar-brand img {
            height: 60px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            margin: 0 8px;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color) !important;
            background-color: rgba(194, 24, 91, 0.05);
        }
        
        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 16px;
            left: 16px;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 3px;
        }
        
        .search-box {
            position: relative;
            margin-left: 15px;
        }
        
        .search-input {
            padding-left: 45px;
            border-radius: 25px;
            border: 1px solid #e2e8f0;
            background-color: #f8fafc;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.1);
            border-color: var(--primary-color);
            background-color: white;
        }
        
        .search-btn {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--gray-color);
            transition: color 0.3s ease;
        }
        
        .search-btn:hover {
            color: var(--primary-color);
        }
        
        .cart-btn {
            position: relative;
            margin-right: 15px;
            color: var(--dark-color);
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        
        .cart-btn:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--light-color);
            transition: all 0.3s ease;
        }
        
        .user-avatar:hover {
            border-color: var(--primary-color);
        }
          /* Footer */
        .footer {
            background: linear-gradient(135deg, #2c3e50 0%, #4a2c2a 100%);
            color: white;
            padding: 70px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 0;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .footer-logo i {
            font-size: 2rem;
            margin-left: 12px;
            color: var(--secondary-color);
        }
        
        .footer-logo span {
            font-size: 1.6rem;
            font-weight: 800;
            font-family: var(--font-heading);
        }
        
        .footer-about {
            margin-bottom: 25px;
            line-height: 1.7;
            color: #e2e8f0;
            position: relative;
            z-index: 1;
        }
        
        .footer-social {
            display: flex;
            position: relative;
            z-index: 1;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-left: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-family: var(--font-heading);
            z-index: 1;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 1;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(-5px);
        }
        
        .footer-links a i {
            margin-left: 8px;
            font-size: 0.9rem;
        }
        
        .footer-newsletter {
            margin-bottom: 25px;
            line-height: 1.6;
            color: #e2e8f0;
            position: relative;
            z-index: 1;
        }
        
        .newsletter-form {
            display: flex;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .newsletter-input {
            border: none;
            border-radius: 8px 0 0 8px;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transition: all 0.3s ease;
        }
        
        .newsletter-input::placeholder {
            color: #cbd5e0;
        }
        
        .newsletter-input:focus {
            background-color: rgba(255, 255, 255, 0.2);
            box-shadow: none;
            color: white;
        }
        
        .newsletter-btn {
            background-color: var(--secondary-color);
            border: none;
            border-radius: 0 8px 8px 0;
            color: white;
            padding: 0 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background-color: #7b1fa2;
        }
        
        .payment-methods {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        .payment-methods img {
            height: 35px;
            margin-left: 12px;
            opacity: 0.7;
            transition: all 0.3s ease;
            filter: brightness(0) invert(1);
        }
        
        .payment-methods img:hover {
            opacity: 1;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .copyright {
            margin: 0;
            color: #a0aec0;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .timeline-cards {
                gap: 15px;
            }
            
            .timeline-card {
                width: 250px;
            }
            
            .stats-row {
                gap: 10px;
            }
            
            .stat-card {
                width: 200px;
            }
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }
            
            .navbar {
                padding: 10px 0;
            }
            
            .navbar-brand img {
                height: 35px;
            }
            
            .search-box {
                display: none;
            }
            
            .hero-section {
                padding: 70px 0;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .about-section, .values-section {
                padding: 50px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .timeline-section {
                padding: 40px 0;
            }
            
            .timeline-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .timeline-card {
                width: 100%;
                max-width: 350px;
            }
            
            .stats-section {
                padding: 40px 0;
            }
            
            .stats-row {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-card {
                width: 100%;
                max-width: 300px;
            }
            
            .launch-section {
                padding: 40px 0;
            }
            
            .launch-title {
                font-size: 1.8rem;
            }
            
            .launch-subtitle {
                font-size: 1rem;
            }
            
            .countdown-container {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .countdown-item {
                margin: 0 5px 10px;
            }
            
            .countdown-number {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            
            .notify-form {
                flex-direction: column;
            }
            
            .notify-input {
                border-radius: 8px;
                margin-bottom: 10px;
            }
            
            .notify-btn {
                border-radius: 8px;
            }
            
            .launch-features {
                flex-direction: column;
                gap: 10px;
            }
            
            .footer {
                padding: 50px 0 20px;
            }
            
            .footer-logo {
                justify-content: center;
                margin-bottom: 30px;
            }
            
            .footer-title {
                margin-bottom: 20px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                margin-bottom: 10px;
                border-radius: 8px;
            }
            
            .newsletter-btn {
                border-radius: 8px;
            }
            
            .payment-methods {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                padding: 50px 0;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .about-section, .values-section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .about-content {
                font-size: 1rem;
            }
            
            .value-card {
                padding: 25px 15px;
            }
            
            .member-img {
                width: 150px;
                height: 150px;
            }
            
            .member-name {
                font-size: 1.1rem;
            }
            
            .timeline-card {
                padding: 15px;
            }
            
            .timeline-title {
                font-size: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .launch-title {
                font-size: 1.6rem;
            }
            
            .countdown-number {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .footer-bottom {
                margin-top: 30px;
            }
        }



        /* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
}

.whatsapp-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background-color: #128C7E;
    color: white;
}

.whatsapp-widget i {
    font-size: 1.5rem;
    margin-left: 8px;
}

.whatsapp-text {
    font-size: 0.9rem;
}

/* For RTL layout adjustment */
[dir="rtl"] .whatsapp-widget {
    left: auto;
    right: 25px;
}

[dir="rtl"] .whatsapp-widget i {
    margin-left: 0;
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .whatsapp-widget {
        bottom: 15px;
        left: 15px;
        padding: 10px 15px;
    }
    
    [dir="rtl"] .whatsapp-widget {
        left: auto;
        right: 15px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-widget i {
        margin-left: 0;
        margin-right: 0;
        font-size: 1.8rem;
    }
}
