  /* Global Reset and Variables */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-color: #2563eb;
        --primary-light: #3b82f6;
        --primary-dark: #1d4ed8;
        --text-dark: #1e293b;
        --text-light: #64748b;
        --bg-light: #f8fafc;
        --white: #ffffff;
        --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
        --radius: 16px;
        --transition: all 0.3s ease;
    }

    /* Body/Container Styles (Scoped for the section if used inside a parent page) */
    .ecommerce-solutions-section {
        font-family: 'Tajawal', sans-serif;
        background-color: var(--bg-light);
        color: var(--text-dark);
        line-height: 1.6;
        padding-bottom: 2rem;
        max-width: 480px;
        margin: 0 auto;
    }

    .container {
        width: 100%;
        padding: 0 1rem;
    }

    .section {
        margin-bottom: 2.5rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .section-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-dark);
        padding: 0.75rem 1.5rem;
        display: inline-block;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        position: relative;
    }

    .section-subtitle {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-dark);
        padding: 0.75rem 1.5rem;
        margin-bottom: 1.5rem;
        display: inline-block;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .cards-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .card {
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        position: relative;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .card-image {
        width: 100%;
        height: 200px;
        background-color: #e2e8f0;
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card-overlay {
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 1.0), transparent);
        padding: 1.25rem;
        color: var(--white);
    }

    .card-title {
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .card-content {
        padding: 1.25rem;
    }

    .card-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    /* Carousel Styles */
    .carousel {
        position: relative;
        overflow: hidden;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease;
    }

    .carousel-slide {
        min-width: 100%;
        position: relative;
    }

    .carousel-image {
        width: 100%;
        height: 250px;
        background-color: #e2e8f0;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: var(--primary-color);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .carousel-nav {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #cbd5e1;
        cursor: pointer;
        transition: var(--transition);
    }

    .carousel-dot.active {
        background: var(--primary-color);
        transform: scale(1.2);
    }

    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.8);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 10;
    }

    .carousel-arrow:hover {
        background: var(--white);
    }

    .carousel-arrow.prev {
        right: 1rem;
    }

    .carousel-arrow.next {
        left: 1rem;
    }

    @media (min-width: 768px) {
        .ecommerce-solutions-section {
            max-width: 768px;
        }
        
        .cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* RTL Specific Adjustments */
    .fa-arrow-left:before {
        content: "\f061";
    }

    .fa-arrow-right:before {
        content: "\f060";
    }
    
        .mobile-footer {
        width: 100%;
        max-width: 400px;
        background: #000;
        border-radius: 24px;
        padding: 30px 25px;
        box-shadow: 0 0 50px rgba(246, 187, 67, 0.1);
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        color: #fff;
        font-family: 'Inter', sans-serif;
    }

    .mobile-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(246, 187, 67, 0.3), transparent);
    }

    .brand-area {
        display: flex;
        align-items: center;
        margin-bottom: 28px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .logo {
        width: 50px;
        height: 50px;
        background: #f6bb43;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        box-shadow: 0 0 15px rgba(246, 187, 67, 0.4);
    }

    .logo img {
        width: 35px;
        height: 35px;
    }

    .company-name {
        font-weight: 700;
        font-size: 20px;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    }

    .contact-info {
        margin-bottom: 28px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .contact-icon {
        width: 32px;
        height: 32px;
        background: rgba(246, 187, 67, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 12px;
        color: #f6bb43;
        box-shadow: 0 0 8px rgba(246, 187, 67, 0.3);
    }

    .contact-text {
        flex: 1;
        color: #fff;
        font-weight: 400;
    }

    .social-section {
        margin-bottom: 28px;
    }

    .social-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #fff;
        text-align: center;
        letter-spacing: 0.5px;
    }

    .social-icons {
        display: flex;
        justify-content: space-between;
        padding: 0 10px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
         background: rgba(246, 187, 67, 0.25); /* بدل 0.1 */
  color: #f6bb43;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #f6bb43;
        font-size: 18px;

    }
.social-icon img {
  filter: brightness(0) saturate(100%) invert(82%) sepia(32%) saturate(620%) hue-rotate(3deg) brightness(99%) contrast(90%);
}
    .social-icon:hover {
        background: rgba(246, 187, 67, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(246, 187, 67, 0.3);
    }

    .footer-menu {
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-item {
        padding: 0 12px;
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        transition: color 0.3s ease;
    }

    .menu-item:hover {
        color: #fff;
    }

    .menu-divider {
        width: 1px;
        height: 14px;
        background: rgba(255, 255, 255, 0.3);
        margin-top: 2px;
    }

    .copyright {
        text-align: center;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 0.3px;
    }

    .fa-phone,
    .fa-envelope,
    .fa-globe,
    .fa-store,
    .fa-map-marker-alt,
    .fa-whatsapp,
    .fa-tiktok,
    .fa-facebook-f,
    .fa-instagram {
        filter: drop-shadow(0 0 5px rgba(246, 187, 67, 0.5));
    }