/* إعدادات عامة */
:root {
    --primary-color: #0a0a1a;
    --secondary-color: #00f3ff;
    --accent-color: #ff00ff;
    --text-color: #ffffff;
    --text-secondary: #b0b0d0;
    --card-bg: rgba(10, 15, 30, 0.8);
    --border-color: rgba(0, 243, 255, 0.3);
    --cyber-green: #00ff9d;
    --cyber-blue: #0066ff;
    --cyber-purple: #9d00ff;
    --gradient-primary: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
    --gradient-secondary: linear-gradient(135deg, var(--cyber-green), var(--secondary-color));
    --font-primary: 'Tajawal', sans-serif;
}

/* تعديل الهيدر الموجود */
.hero-section {
    padding-top: 150px !important;
}

/* تحسين النصوص */
body {
    font-family: 'Tajawal', sans-serif;
}

/* تحسين التمرير */
html {
    scroll-behavior: smooth;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(157, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 157, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* التمرير المخصص */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 26, 0.8);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* الأنماط العامة */
a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    font-weight: 800;
}

.cyber-underline {
    color: var(--secondary-color);
    position: relative;
}

.cyber-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* زر السيبراني */
.cyber-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: all 0.4s ease;
    z-index: -1;
}

.cyber-btn:hover::before {
    left: 0;
}

.cyber-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.cyber-btn.secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cyber-btn.secondary::before {
    background: rgba(0, 243, 255, 0.1);
}

.cyber-btn.glowing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 243, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
    }
}

/* الهيدر */
.header {
    background-color: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff9d, #00f3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-right: 10px;
}

.logo-year {
    font-size: 0.9rem;
    color: #b0b0d0;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #00f3ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #00f3ff;
}

.nav-link.active {
    color: #00f3ff;
}

.nav-link.active::after {
    width: 100%;
}

/* قائمة الخدمات الفرعية */
.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 243, 255, 0.1);
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    cursor: pointer;
}

.dropdown-btn i {
    transition: transform 0.3s ease;
}

.dropdown-btn.active i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background-color: rgba(10, 15, 30, 0.95);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    padding: 15px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 20px;
    display: block;
    transition: all 0.2s ease;
    color: white;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: rgba(0, 243, 255, 0.1);
    padding-right: 25px;
}

.dropdown-item i {
    margin-left: 10px;
    color: #00f3ff;
}

/* قائمة الجوال */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(0, 243, 255, 0.3);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        border: none;
        padding: 0 0 0 20px;
        margin-top: 0;
        display: none;
    }
    
    .dropdown-menu.active {
        display: block;
    }

.dropdown-item {
    padding: 12px 20px;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(0, 243, 255, 0.1);
    padding-right: 25px;
}

.dropdown-item i {
    margin-left: 10px;
    color: var(--secondary-color);
}

/* قائمة الجوال */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* قسم الهيرو */
.hero-section {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-left: 30px;
}

.cyber-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.cyber-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.cyber-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* مكعب السيبراني */
.cyber-cube {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    background: rgba(0, 102, 255, 0.2);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.cube-face.front {
    transform: translateZ(100px);
    background: rgba(0, 102, 255, 0.3);
}

.cube-face.back {
    transform: rotateY(180deg) translateZ(100px);
    background: rgba(157, 0, 255, 0.3);
}

.cube-face.right {
    transform: rotateY(90deg) translateZ(100px);
    background: rgba(0, 255, 157, 0.3);
}

.cube-face.left {
    transform: rotateY(-90deg) translateZ(100px);
    background: rgba(255, 0, 255, 0.3);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(100px);
    background: rgba(255, 204, 0, 0.3);
}

.cube-face.bottom {
    transform: rotateX(-90deg) translateZ(100px);
    background: rgba(255, 50, 50, 0.3);
}

@keyframes rotateCube {
    0% {
        transform: rotateX(0) rotateY(0);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

/* قسم الخدمات */
.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.2);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

/* قسم آراء العملاء */
.reviews-section {
    padding: 100px 0;
    background-color: rgba(0, 10, 20, 0.5);
}

/* قسم الاتصال السريع */
.contact-cta {
    padding: 100px 0;
    text-align: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    z-index: 0;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* الفوتر */
.footer {
    background-color: rgba(5, 10, 20, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 10px;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--secondary-color);
    padding-right: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 243, 255, 0.1);
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.contact-btn:hover {
    background: rgba(0, 243, 255, 0.2);
    border-color: var(--secondary-color);
}

.contact-btn i {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* أنماط الصفحات الداخلية */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(10, 15, 30, 0.9), rgba(10, 10, 26, 0.7));
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,80 Q50,100 0,80 Z" fill="rgba(0,243,255,0.05)"/></svg>');
    background-size: cover;
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.page-content {
    padding: 80px 0;
    min-height: 50vh;
}

.page-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--secondary-color);
    position: relative;
    padding-right: 20px;
}

.page-content h2::before {
    content: '//';
    position: absolute;
    right: 0;
    color: var(--accent-color);
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.page-content ul, .page-content ol {
    margin-right: 20px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    position: relative;
    padding-right: 20px;
}

.page-content li::before {
    content: '>';
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* تصميم متجاوب */
@media (max-width: 992px) {
    .cyber-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-left: 0;
        margin-bottom: 50px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: transparent;
        border: none;
        padding: 0 0 0 20px;
        margin-top: 0;
        display: none;
    }
    
    .dropdown-menu.active {
        display: block;
    }
    
    .cyber-title {
        font-size: 2.2rem;
    }
    
    .cyber-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .cyber-title {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cyber-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* زر الخدمات المنسدلة */
.services-dropdown-btn {
    position: relative;
    display: inline-block;
    margin: 30px 0;
    text-align: center;
    width: 100%;
}

.cyber-service-btn {
    background: linear-gradient(135deg, #0066ff, #9d00ff);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cyber-service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
    background: linear-gradient(135deg, #9d00ff, #0066ff);
}

.services-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.services-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}

.service-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-bottom: 5px;
}

.service-dropdown-item:hover {
    background: rgba(0, 243, 255, 0.1);
    padding-right: 20px;
}

.service-dropdown-item i {
    margin-left: 10px;
    color: #00f3ff;
    width: 20px;
    text-align: center;
}

/* الفوتر */
.x-esm-footer {
    background: rgba(5, 10, 20, 0.95);
    border-top: 1px solid rgba(0, 243, 255, 0.3);
    padding: 60px 20px 30px;
    margin-top: 100px;
    direction: rtl;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00ff9d, #00f3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-description {
    color: #b0b0d0;
    line-height: 1.8;
    max-width: 300px;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: white;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #00ff9d, #00f3ff);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #b0b0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: #00f3ff;
    padding-right: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0d0;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid transparent;
    color: #00f3ff;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.contact-btn:hover {
    background: rgba(0, 243, 255, 0.2);
    border-color: #00f3ff;
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0d0;
    font-size: 0.9rem;
}

/* تصميم متجاوب */
@media (max-width: 768px) {
    .services-dropdown-menu {
        right: 20px;
        transform: none;
        min-width: calc(100vw - 40px);
    }
    
    .services-dropdown-menu.active {
        transform: none;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cyber-service-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .services-dropdown-menu {
        min-width: calc(100vw - 20px);
        right: 10px;
    }
    
}