/* 1. الأساسيات (Body & Layout) */
body {
    margin: 0;
    padding: 0;
    background: #0b021a !important;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* 2. اللوجو الثابت */
.logo-container {
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 11000;
}

.wave-text {
    position: relative;
    font-family: 'Arial Black', sans-serif;
    font-size: 35px;
    font-weight: 900;
    color: #a855f7;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #a855f7;
}

.wave-text::before {
    content: "Wash & GO";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #000;
    clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    animation: liquid-wave 4s ease-in-out infinite;
}

/* 3. شاشة الترحيب */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.welcome-text {
    position: relative;
    color: #a855f7;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    animation: floating-move 5s ease-in-out infinite;
    -webkit-text-stroke: 1.5px #a855f7;
}

/* 4. كروت الخدمات والفورم */
.hidden {
    display: none !important;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    align-items: center;
}

.services-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
}

.s-card {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    min-width: 180px;
    text-align: center;
}

.s-card:hover {
    transform: scale(1.1) translateY(-10px);
    background: rgba(168, 85, 247, 0.2);
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

.booking-card {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #a855f7;
    padding: 30px;
    border-radius: 25px;
    width: 380px;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

input,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    color: white;
}

.confirm-btn {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.confirm-btn:active {
    transform: scale(0.95);
}

/* المودال */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 20000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #1a1a1a;
    border: 2px solid #a855f7;
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    width: 320px;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 25px;
    cursor: pointer;
}

/* رسالة الشكر */
.thank-you-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0b021a;
    z-index: 30000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* الأنيميشنز */
@keyframes liquid-wave {

    0%,
    100% {
        clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }

    50% {
        clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
}

@keyframes floating-move {

    0%,
    100% {
        transform: translateX(-20px) rotate(-2deg);
    }

    50% {
        transform: translateX(20px) rotate(2deg);
    }
}