:root {
    --primary-color: #00f2fe;
    --secondary-color: #4facfe;
    --accent-green: #00ff87;
    --dark-bg: #050a0f;
    --glass-bg: rgba(10, 25, 47, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: #ffffff;
    overflow: hidden; /* لمنع التمرير بسبب الأنيميشن */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px;
}

/* تأثير الزجاج القوي والأنيق */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px); /* تقليل البلور لتحسين الأداء */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem 4rem;
    max-width: 900px; /* توسيع العرض لاحتواء السلايدر */
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
    transform-style: preserve-3d;
    transition: transform 0.1s;
    animation: floatPanel 6s ease-in-out infinite;
    will-change: transform; /* تسريع الحركة */
}

@keyframes floatPanel {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    50% { transform: translateY(-15px) rotateX(2deg) rotateY(1deg); }
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    transform: translateZ(30px);
}

.logo-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 135, 0.5));
}

.logo-text {
    font-size: 1.1rem;
    color: #8892b0;
    letter-spacing: 3px;
    font-weight: 700;
}

.main-title {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: #ccd6f6;
    transform: translateZ(50px);
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.highlight {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 242, 254, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    margin-bottom: 3rem;
    transform: translateZ(40px);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 242, 254, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

.subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.contact-card {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    transform: translateZ(30px);
}

.contact-label {
    font-size: 1rem;
    color: #8892b0;
    margin-bottom: 1rem;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
    background: rgba(255,255,255,0.03);
    padding: 10px 30px;
    border-radius: 15px;
    border: 1px solid transparent;
}

.phone-icon {
    font-size: 1.8rem;
    animation: wiggle 2s linear infinite;
}

@keyframes wiggle {
    0%, 7% { transform: rotateZ(0); }
    15% { transform: rotateZ(-15deg); }
    20% { transform: rotateZ(10deg); }
    25% { transform: rotateZ(-10deg); }
    30% { transform: rotateZ(6deg); }
    35% { transform: rotateZ(-4deg); }
    40%, 100% { transform: rotateZ(0); }
}

.phone-number:hover {
    color: var(--accent-green);
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(0, 255, 135, 0.3);
    text-shadow: 0 0 25px rgba(0, 255, 135, 0.6);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .glass-panel {
        padding: 2.5rem 1.5rem;
    }
    .main-title {
        font-size: 2rem;
    }
    .phone-number {
        font-size: 1.6rem;
        padding: 10px 20px;
    }
}

/* تنسيقات سلايدر الانفنتي (Swiper) */
.swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 40px;
    margin-bottom: 20px;
    transform: translateZ(45px); /* حتى يبرز كجزء من التأثير ثلاثي الأبعاد */
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 250px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    will-change: transform; /* تحسين أداء الحركة للسلايدر */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.swiper-slide:hover img {
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
}
.swiper-pagination-bullet-active {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

