* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 90%;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-direction: row-reverse;
}

.hero-image {
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 107, 107, 0.3);
}

.content {
    width: 50%;
    text-align: center;
}

.hero-image img {
    width: 100%;
    /* height: auto; */
    display: block;
}

.coming-soon {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #ff6b6b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
    text-transform: uppercase;
    letter-spacing: 4px;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.phone-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.phone {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    border: 2px solid rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.phone:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.address {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 1.2rem;
    border: 2px solid rgba(255, 107, 107, 0.3);
    max-width: 600px;
}

.address-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.decorative-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
    margin: 30px auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        max-width: 500px;
    }

    .content {
        width: 100%;
    }

    .coming-soon {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .brand-name {
        font-size: 1.8rem;
    }

    .phone-numbers {
        flex-direction: column;
    }

    .phone {
        width: 100%;
        max-width: 300px;
    }

    .address {
        font-size: 1rem;
        padding: 15px 25px;
    }
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 107, 0.6);
    border-radius: 50%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}
