        
:root {
    --primary-color: #000000;
    --accent-color: #FFD700;
    --text-color: #ffffff;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--text-color);
}



.move_up{
    z-index: 500;
    cursor: pointer;
    position: fixed;
    margin: 5px;
    bottom: 110px;
    right: 25px;
    background-color: rgb(255, 196, 0);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}
.move_up svg{
fill: white;
width: 60px;
height: 60px;
    
}

.move_up:hover{
    transform: scale(1.1) translateY(0);

}









/* زر التواصل العائم */
.floating-contact-btn {
    position: fixed;
    bottom: 30px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    z-index: 500;
    transition: all var(--transition-speed) ease;
    opacity: 0;
    transform: translateY(100px);
    border: none;
    outline: none;
}

.floating-contact-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-contact-btn:hover {
    transform: scale(1.1) translateY(0);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.floating-contact-btn i {
    font-size: 1.8rem;
    color: #000;
}

/* نافذة التواصل */
.contact-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn var(--transition-speed) ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contactxx {
    background-color: #121212;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { 
        transform: translateY(20px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* زر الإغلاق */
.close-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--accent-color);
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
    background: none;
    border: none;
}

.close-btn:hover {
    background-color: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
}

/* محتوى النافذة */
.contact-title {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-top: 10px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* روابط التواصل */
.contact-link {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    color: inherit;
    
}

.contact-link:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateX(-5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
}

.contact-type {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.1rem;
    color: var(--text-color);
    direction: ltr;
    text-align: right;

}

/* التكيف مع الشاشات الصغيرة */
@media (max-width: 768px) {

    .move_up{
        right: 19px;
        width: 50px;
        height: 50px;
    }
    .floating-contact-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }
    
    .floating-contact-btn i {
        font-size: 1.5rem;
    }
    
    .contact-container {
        padding: 20px;
    }
    
    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .contact-link {
        padding: 12px;
    }
}