/* المتوسط الأنيق للأجهزة الإلكترونية - التصميم التكنولوجي الحديث */

:root {
    --primary-color: #0a0e27;
    --secondary-color: #1a1f3a;
    --accent-color: #00d9ff;
    --accent-secondary: #7000ff;
    --neon-blue: #00f0ff;
    --neon-purple: #a855f7;
    --dark-bg: #050816;
    --card-bg: #0f1420;
    --text-light: #e0e7ff;
    --text-gray: #94a3b8;
    --gradient-tech: linear-gradient(135deg, #00d9ff 0%, #7000ff 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #050816 100%);
    --gradient-card: linear-gradient(145deg, #1a1f3a 0%, #0f1420 100%);
    --glow-cyan: 0 0 20px rgba(0, 217, 255, 0.5);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-bg);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(5, 8, 22, 0.85), rgba(10, 14, 39, 0.9)),
        repeating-linear-gradient(0deg, 
            transparent 0px, 
            transparent 39px, 
            rgba(0, 217, 255, 0.35) 39px, 
            rgba(0, 217, 255, 0.35) 40px),
        repeating-linear-gradient(90deg, 
            transparent 0px, 
            transparent 39px, 
            rgba(0, 217, 255, 0.35) 39px, 
            rgba(0, 217, 255, 0.35) 40px),
        radial-gradient(circle at center, 
            rgba(0, 217, 255, 0.75) 0px, 
            rgba(0, 217, 255, 0.75) 1.8px,
            transparent 1.8px, 
            transparent 100%);
    background-size: 100% 100%, 40px 40px, 40px 40px, 40px 40px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    pointer-events: none;
    z-index: -1;
    animation: gridMoveGlobal 30s linear infinite, gridGlow 3s ease-in-out infinite;
}

body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(150px);
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -60%) scale(1.1); }
}

@keyframes gridMoveGlobal {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 0, 40px 40px, 40px 40px, 40px 40px; }
}

@keyframes gridGlow {
    0%, 100% { 
        filter: brightness(1);
    }
    50% { 
        filter: brightness(1.3);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glowing Text Effect */
.glow-text {
    text-shadow: 0 0 10px var(--accent-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-tech);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    box-shadow: 0 5px 25px rgba(0, 217, 255, 0.3);
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--glow-cyan), 0 10px 40px rgba(0, 217, 255, 0.4);
}

/* Cards */
.card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-tech);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.card:hover::before {
    opacity: 0.1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-cyan), 0 15px 50px rgba(0, 0, 0, 0.7);
    border-color: var(--accent-color);
}

/* Header Styles */
header {
    background: #ffffff;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    transition: all 0.3s;
}

.logo:hover {
    color: var(--accent-color);
}

.logo img {
    filter: none;
    transition: all 0.3s;
}

.logo:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: #333;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-tech);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.main-nav a:hover::before {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-btn {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.lang-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: var(--gradient-tech);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 10px 15px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: var(--glow-cyan);
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2000;
    overflow-y: auto;
    border-left: 1px solid rgba(0, 217, 255, 0.3);
}

[dir="ltr"] .mobile-menu {
    right: auto;
    left: -100%;
    transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: none;
    border-right: 1px solid rgba(0, 217, 255, 0.3);
}

.mobile-menu.active {
    right: 0;
}

[dir="ltr"] .mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

[dir="ltr"] .mobile-menu-header {
    justify-content: flex-start;
}

.mobile-menu-close {
    font-size: 1.8rem;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    color: #fff;
    text-shadow: var(--glow-cyan);
    transform: rotate(90deg);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav a {
    display: block;
    padding: 18px 25px;
    color: var(--text-light);
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.mobile-nav a:hover {
    background: rgba(0, 217, 255, 0.1);
    color: var(--accent-color);
    padding-right: 35px;
    text-shadow: var(--glow-cyan);
}

[dir="ltr"] .mobile-nav a:hover {
    padding-right: 25px;
    padding-left: 35px;
}

.mobile-lang-item {
    padding: 20px 25px;
}

.mobile-lang-btn {
    background: var(--gradient-tech);
    border: none;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: var(--glow-cyan);
    transition: all 0.3s;
}

.mobile-lang-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(5, 8, 22, 0.85), rgba(10, 14, 39, 0.9)),
        repeating-linear-gradient(0deg, 
            transparent 0px, 
            transparent 39px, 
            rgba(0, 217, 255, 0.35) 39px, 
            rgba(0, 217, 255, 0.35) 40px),
        repeating-linear-gradient(90deg, 
            transparent 0px, 
            transparent 39px, 
            rgba(0, 217, 255, 0.35) 39px, 
            rgba(0, 217, 255, 0.35) 40px),
        radial-gradient(circle at center, 
            rgba(0, 217, 255, 0.75) 0px, 
            rgba(0, 217, 255, 0.75) 1.8px,
            transparent 1.8px, 
            transparent 100%);
    background-size: 100% 100%, 40px 40px, 40px 40px, 40px 40px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    animation: gridMove 30s linear infinite, gridGlow 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes gridMove {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 0, 40px 40px, 40px 40px, 40px 40px; }
}

@keyframes gridGlow {
    0%, 100% { 
        filter: brightness(1);
    }
    50% { 
        filter: brightness(1.3);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -60%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    animation: slideDown 1s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: slideDown 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-gray);
    line-height: 1.9;
    animation: slideDown 1s ease-out 0.4s both;
}

.hero .btn-primary {
    font-size: 1.1rem;
    padding: 16px 45px;
    animation: slideDown 1s ease-out 0.6s both;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: rgba(26, 31, 58, 0.3);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header i {
    color: var(--accent-color);
    font-size: 2.8rem;
    filter: drop-shadow(var(--glow-cyan));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Company Intro */
.company-intro {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.company-intro p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 25px;
    color: var(--text-gray);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 35px;
}

.product-card {
    background: var(--gradient-card);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--glow-cyan), 0 20px 60px rgba(0, 0, 0, 0.8);
    border-color: var(--accent-color);
}

.product-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-tech);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--glow-cyan);
    transition: all 0.4s;
}

.product-card:hover .product-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.8);
}

.product-icon i {
    font-size: 2.8rem;
    color: #fff;
}

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--text-light);
}

.product-card p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: var(--gradient-tech);
    border-radius: 50%;
    transition: width 0.5s, height 0.5s;
}

.btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline:hover {
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

.btn-outline span {
    position: relative;
    z-index: 1;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    background: var(--gradient-card);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--glow-cyan), 0 15px 50px rgba(0, 0, 0, 0.8);
    border-color: var(--accent-color);
}

.feature-item i {
    font-size: 3.5rem;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.feature-item h3 {
    font-size: 1.15rem;
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background: var(--gradient-dark);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
}

.page-header h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    text-shadow: var(--glow-cyan);
}

.page-header p {
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto;
    color: var(--text-gray);
    position: relative;
    line-height: 1.8;
}

/* About Page */
.about-intro {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 25px;
    color: var(--text-gray);
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 35px;
    max-width: 1050px;
    margin: 0 auto;
}

.vm-card {
    background: var(--gradient-card);
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 217, 255, 0.1), transparent);
    transition: top 0.5s;
}

.vm-card:hover::before {
    top: 0;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-cyan), 0 15px 50px rgba(0, 0, 0, 0.8);
    border-color: var(--accent-color);
}

.vm-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-tech);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--glow-cyan);
    transition: all 0.4s;
}

.vm-card:hover .vm-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.8);
}

.vm-icon i {
    font-size: 2.8rem;
    color: #fff;
}

.vm-card h2 {
    font-size: 1.9rem;
    margin-bottom: 18px;
    color: var(--text-light);
}

.vm-card p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-gray);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: 30px;
}

.value-card {
    background: var(--gradient-card);
    padding: 40px 28px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
    text-align: center;
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-tech);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--glow-cyan), 0 15px 50px rgba(0, 0, 0, 0.8);
    border-color: var(--accent-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-tech);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: var(--glow-cyan);
    transition: all 0.4s;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
    box-shadow: 0 0 35px rgba(0, 217, 255, 0.8);
}

.value-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.02rem;
}

/* Services List */
.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
}

.service-item {
    background: var(--gradient-card);
    padding: 28px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
    transition: all 0.4s;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.service-item:hover {
    transform: translateX(12px);
    box-shadow: var(--glow-cyan), 0 10px 40px rgba(0, 0, 0, 0.8);
    border-color: var(--accent-color);
}

[dir="ltr"] .service-item:hover {
    transform: translateX(-12px);
}

.service-item i {
    font-size: 2.8rem;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.service-item p {
    font-size: 1.08rem;
    color: var(--text-gray);
    margin: 0;
}

/* Products Page */
.product-details {
    max-width: 1150px;
    margin: 0 auto;
}

.product-category {
    background: var(--gradient-card);
    padding: 45px;
    border-radius: 25px;
    margin-bottom: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.4s;
}

.product-category:hover {
    border-color: var(--accent-color);
    box-shadow: var(--glow-cyan), 0 12px 45px rgba(0, 0, 0, 0.8);
}

.product-category h3 {
    font-size: 1.9rem;
    margin-bottom: 30px;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.3);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
    gap: 28px;
}

/* Featured Products Grid */
.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 35px;
    margin-top: 50px;
}

.product-showcase {
    background: rgba(26, 31, 58, 0.6);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 217, 255, 0.15);
    position: relative;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--accent-color), 
        var(--secondary-color),
        var(--accent-color));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.product-showcase:hover::before {
    opacity: 0.8;
}

.product-showcase:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 217, 255, 0.3),
        0 0 50px rgba(112, 0, 255, 0.2);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 31, 58, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 217, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.product-showcase:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.3));
}

.product-showcase:hover .product-image img {
    transform: scale(1.1) rotateY(5deg);
    filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.6));
}

.product-info {
    padding: 25px;
    background: rgba(10, 14, 39, 0.8);
    position: relative;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 217, 255, 0.5) 50%, 
        transparent);
}

.product-info h3 {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.product-showcase:hover .product-info h3 {
    letter-spacing: 0.5px;
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.product-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}


.brand-item {
    background: rgba(26, 31, 58, 0.5);
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.brand-item:hover {
    background: rgba(0, 217, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 217, 255, 0.2);
}

.brand-item i {
    font-size: 3.2rem;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.brand-item h4 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--text-light);
}

.brand-item ul {
    list-style: none;
    text-align: right;
}

[dir="ltr"] .brand-item ul {
    text-align: left;
}

.brand-item li {
    padding: 10px 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s;
}

.brand-item li:hover {
    color: var(--accent-color);
    padding-right: 10px;
}

[dir="ltr"] .brand-item li:hover {
    padding-right: 0;
    padding-left: 10px;
}

.brand-item li:last-child {
    border-bottom: none;
}

.accessories-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
    gap: 18px;
}

.accessories-list li {
    background: rgba(26, 31, 58, 0.5);
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-gray);
    transition: all 0.3s;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.accessories-list li:hover {
    background: rgba(0, 217, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateX(8px);
    color: var(--text-light);
}

[dir="ltr"] .accessories-list li:hover {
    transform: translateX(-8px);
}

.accessories-list i {
    color: var(--accent-color);
    font-size: 1.6rem;
    filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.5));
}

/* CTA Box */
.cta-box {
    background: var(--gradient-tech);
    padding: 70px 45px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-cyan), 0 15px 50px rgba(0, 0, 0, 0.5);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-box h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
    color: #fff;
    position: relative;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    position: relative;
}

.cta-box .btn-primary {
    background: #fff;
    color: var(--primary-color);
    font-size: 1.15rem;
    padding: 16px 45px;
    position: relative;
}

.cta-box .btn-primary:hover {
    background: var(--card-bg);
    color: var(--accent-color);
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 40px;
    max-width: 1150px;
    margin: 0 auto;
}

.contact-form-container,
.contact-info-container {
    background: var(--gradient-card);
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.4s;
}

.contact-form-container:hover,
.contact-info-container:hover {
    border-color: var(--accent-color);
    box-shadow: var(--glow-cyan), 0 12px 45px rgba(0, 0, 0, 0.8);
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 1.9rem;
    margin-bottom: 30px;
    background: var(--gradient-tech);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(26, 31, 58, 0.5);
    color: var(--text-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
    background: rgba(26, 31, 58, 0.8);
}

.contact-form button {
    width: 100%;
    padding: 16px;
    font-size: 1.15rem;
}

.contact-info-item {
    display: flex;
    gap: 22px;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s;
}

.contact-info-item:hover {
    padding-right: 10px;
}

[dir="ltr"] .contact-info-item:hover {
    padding-right: 0;
    padding-left: 10px;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-tech);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--glow-cyan);
    transition: all 0.4s;
}

.contact-info-item:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.8);
}

.info-icon i {
    font-size: 1.6rem;
    color: #fff;
}

.info-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.info-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 6px 0;
}

/* Footer */
footer {
    background: var(--gradient-dark);
    color: #fff;
    padding: 60px 0 25px;
    margin-top: 100px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 45px;
    margin-bottom: 45px;
    position: relative;
}

.footer-col h3 {
    font-size: 1.6rem;
    margin-bottom: 22px;
    color: #fff;
    text-shadow: var(--glow-cyan);
}

.footer-col p {
    line-height: 1.9;
    color: var(--text-gray);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: var(--text-gray);
    transition: all 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    text-shadow: var(--glow-cyan);
    transform: translateX(8px);
}

[dir="ltr"] .footer-col ul li a:hover {
    transform: translateX(-8px);
}

.footer-col ul li i {
    margin-left: 12px;
    color: var(--accent-color);
    filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.5));
}

[dir="ltr"] .footer-col ul li i {
    margin-left: 0;
    margin-right: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    position: relative;
}

.footer-bottom p {
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .language-switcher {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .product-card,
    .contact-form-container,
    .contact-info-container,
    .product-category {
        padding: 30px 25px;
    }
    
    .cta-box {
        padding: 50px 30px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .vm-card {
        padding: 35px 28px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.15rem;
    }
    
    .logo img {
        height: 40px !important;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        flex-direction: column;
    }
    
    .products-grid,
    .features-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .product-icon {
        width: 70px;
        height: 70px;
    }
    
    .product-icon i {
        font-size: 2.2rem;
    }
}
