body{
background:#000;
color:gold;
font-family:Arial;
text-align:center;
margin:0;
padding-bottom:80px;
}

.logoText{
margin-top:60px;
font-size:30px;
text-shadow:0 0 10px gold,0 0 20px gold,0 0 30px gold;
}

.mainBtn{
display:block;
width:80%;
margin:15px auto;
padding:15px;
font-size:20px;
background:#111;
color:gold;
border:2px solid gold;
border-radius:12px;
cursor:pointer;
box-shadow:0 0 10px gold;
transition:0.3s;
}

.mainBtn:hover{
transform:scale(1.05);
box-shadow:0 0 20px gold;
}

.mainBtn:active{
transform:scale(0.95);
}

.contactBtn{
color:#00ffd5;
border:2px solid #00ffd5;
box-shadow:0 0 10px #00ffd5;
}

#services{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
padding:20px;
}

.serviceBox{
background:linear-gradient(145deg,#111,#000);
border:2px solid gold;
border-radius:15px;
padding:25px;
font-size:16px;
font-weight:bold;
color:gold;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
cursor:pointer;
box-shadow:0 0 10px gold;
transition:0.3s;
}

.serviceBox:hover{
transform:scale(1.05);
box-shadow:0 0 20px gold,0 0 40px gold;
}

.serviceBox:active{
transform:scale(0.95);
}

.box{
background:#111;
border:2px solid gold;
border-radius:12px;
padding:15px;
margin:10px;
cursor:pointer;
}

.hidden{
display:none;
}

.welcomeText{
padding:20px;
line-height:30px;
}

input,
textarea{
display:block;
width:80%;
margin:10px auto;
padding:12px;
border-radius:8px;
border:none;
}

textarea{
height:100px;
}

.uploadBox{
display:block;
width:80%;
margin:15px auto;
padding:25px;
border:2px dashed gold;
border-radius:10px;
background:#111;
cursor:pointer;
}

.sendBtn{
width:90%;
height:55px;
border:none;
border-radius:15px;
background:#f5c400;
color:#000;
font-size:24px;
font-weight:bold;
display:block;
margin:20px auto;
box-shadow:0 0 20px #f5c400;
cursor:pointer;
}

.bookBtn{
background:gold;
color:black;
padding:15px;
border:none;
font-size:20px;
border-radius:10px;
margin-top:20px;
cursor:pointer;
}

#backBtn{
position:fixed;
top:15px;
left:15px;
background:gold;
color:black;
border:none;
border-radius:50%;
width:35px;
height:35px;
font-size:18px;
cursor:pointer;
}

.topMenu{
position:fixed;
top:10px;
right:15px;
z-index:9999;
}

.menuIcon{
font-size:30px;
cursor:pointer;
color:gold;
z-index:9999;
position:relative;
}

.menuList{
display:none;
position:absolute;
top:40px;
right:0;
background:#111;
border-radius:10px;
width:180px;
z-index:9999;
box-shadow:0 0 15px rgba(0,0,0,0.8);
}

.menuList div{
padding:12px;
border-bottom:1px solid #333;
cursor:pointer;
}

.menuList div:hover{
background:#222;
}

.bottomNav{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#000;
border-top:2px solid gold;
display:flex;
justify-content:space-around;
padding:10px 0;
box-shadow:0 -3px 20px rgba(255,215,0,0.4);
}

.bottomNav div{
color:gold;
font-size:13px;
cursor:pointer;
transition:0.3s;
}

.bottomNav i{
font-size:22px;
margin-bottom:4px;
transition:0.3s;
}

.bottomNav div:hover{
transform:translateY(-5px);
color:white;
}

.bottomNav div:hover i{
transform:scale(1.3);
text-shadow:0 0 15px gold;
}

.bottomNav div:active{
transform:scale(0.9);
}

.ordersTabs{
display:flex;
justify-content:center;
gap:10px;
margin:15px;
}

.ordersTabs button{
background:#111;
color:gold;
border:2px solid gold;
padding:10px 15px;
border-radius:10px;
cursor:pointer;
}

.orderBox{
background:#111;
border:2px solid gold;
border-radius:12px;
padding:15px;
margin:10px;
box-shadow:0 0 10px gold;
}

.topImage{
width:60%;
max-width:250px;
display:block;
margin:15px auto;
border-radius:10px;
box-shadow:0 0 20px gold;
animation:float 4s ease-in-out infinite;
}

@keyframes float{
0%{transform:translateY(0)}
50%{transform:translateY(-8px)}
100%{transform:translateY(0)}
}

/* السلايدر */

.slider{
position:relative;
width:90%;
margin:auto;
height:220px;
overflow:hidden;
border-radius:12px;
z-index:1;
}

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:none;
z-index:1;
}

.slide.active{
display:block;
animation:fade 1s;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
position:relative;
z-index:1;
}

.slideText{
position:absolute;
bottom:20px;
right:20px;
color:#ffd700;
font-size:18px;
font-weight:bold;
background:rgba(0,0,0,0.45);
padding:8px 14px;
border-radius:12px;
text-shadow:
1px 1px 0 #000,
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000;
box-shadow:0 0 10px rgba(0,0,0,0.5);
z-index:10;
}

@keyframes fade{
from{opacity:0;}
to{opacity:1;}
}

#clearOrdersBtn{
background:#ff0000;
color:white;
border:none;
padding:10px 15px;
border-radius:10px;
margin:10px;
cursor:pointer;
font-size:16px;
box-shadow:0 0 10px red;
}

#clearOrdersBtn:active{
transform:scale(0.95);
}

#contactBox{
padding:20px;
display:none;
}

#contactBox h2{
text-align:center;
margin-bottom:15px;
color:#fff;
}

#contactMessage{
width:100%;
height:150px;
padding:15px;
border:none;
border-radius:15px;
font-size:18px;
resize:none;
background:#1e1e1e;
color:#fff;
box-sizing:border-box;
margin-bottom:15px;
}

.featuresBox{
width:90%;
margin:40px auto 20px;
padding:20px 15px;
background:#111;
border-radius:18px;
box-shadow:0 0 15px rgba(255,215,0,0.15);
}

.featureItem{
display:flex;
align-items:center;
justify-content:flex-start;
gap:12px;
margin:18px 0;
color:#fff;
font-size:15px;
line-height:28px;
text-align:right;
}

.featureItem i{
color:gold;
font-size:18px;
min-width:22px;
text-shadow:0 0 10px gold;
}

.privacyLinkBottom{
margin-top:25px;
font-size:14px;
color:#bbb;
text-decoration:underline;
cursor:pointer;
}

#splash{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#000;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
z-index:999999;
transition:opacity 0.4s ease;
}
.splashImage{
width:85%;
max-width:340px;
border-radius:20px;
box-shadow:
0 0 20px #ffae00,
0 0 40px #0066ff;
}

@keyframes fadeSplash{
from{
opacity:0;
}
to{
opacity:1;
}
}


.splashLogo{
width:70%;
max-width:320px;
height:auto;
object-fit:contain;
animation: splashZoom 1.5s ease-in-out;
}

.splashText{
color:gold;
font-size:20px;
margin-top:10px;
text-shadow:0 0 10px gold;
}

@keyframes splashZoom{
0%{
opacity:0;
transform:scale(0.7);
}
100%{
opacity:1;
transform:scale(1);
}
}
