/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

/* شعار الشركة */
.logo-section {
    margin-bottom: 40px;
}

.logo-icon {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* الرسالة الرئيسية */
.main-message {
    margin-bottom: 50px;
}

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-out;
}

.description {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out 0.3s both;
}

/* معاينة الخدمات */
.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    animation: slideInUp 1s ease-out 0.6s both;
}

.service-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.service-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 10px;
    display: block;
}

.service-item span {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem;
}

/* معلومات التواصل */
.contact-info {
    animation: slideInUp 1s ease-out 0.9s both;
}

.contact-text {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(102, 126, 234, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

.contact-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.contact-item span {
    color: #2c3e50;
    font-weight: 500;
}

/* العناصر الطافية */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

/* الرسوم المتحركة */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
    .content {
        padding: 40px 20px;
        margin: 10px;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 2.2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .services-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-item {
        padding: 15px 10px;
    }
    
    .service-item i {
        font-size: 1.5rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .floating-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 15px;
    }
    
    .company-name {
        font-size: 1.8rem;
    }
    
    .coming-soon-title {
        font-size: 1.8rem;
    }
    
    .services-preview {
        grid-template-columns: 1fr;
    }
    
    .logo-icon {
        font-size: 3rem;
    }
}

/* تأثيرات إضافية */
.content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content:hover::before {
    opacity: 0.1;
}

/* تحسينات للخطوط العربية */
body {
    font-feature-settings: "liga" 1, "calt" 1;
    text-rendering: optimizeLegibility;
}

/* تأثيرات الظلال المتقدمة */
.service-item {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}
