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

html{
scroll-behavior:smooth;
}

body{
background:#080808;
color:white;
line-height:1.6;
}

.hero{
min-height:100vh;
padding:20px;
background:linear-gradient(rgba(0,0,0,.88),rgba(0,0,0,.94));
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.nav-logo{
width:110px;
}

.nav-links a{
margin-left:20px;
text-decoration:none;
color:white;
font-weight:bold;
}

.hero-content{
text-align:center;
margin-top:60px;
}

.main-logo{
width:420px;
max-width:90%;
margin-bottom:25px;
}

.hero-content h1{
font-size:4rem;
margin-bottom:15px;
}

.hero-content p{
font-size:1.4rem;
color:#8eb5ff;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:15px 28px;
background:#0d6efd;
color:white;
text-decoration:none;
border-radius:8px;
font-weight:bold;
}

.secondary{
background:#151515;
border:2px solid #0d6efd;
}

.section{
padding:85px 10%;
}

.section h2{
text-align:center;
font-size:2.7rem;
margin-bottom:45px;
color:#0d6efd;
}

.grid,.gallery-grid,.reviews-grid,.areas-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.card,.gallery-item,.review-card,.area-card,.about-box{
background:#151515;
padding:25px;
border-radius:12px;
border:2px solid #0d6efd;
}

.card h3{
margin-bottom:10px;
color:#84b0ff;
}

.area-card{
text-align:center;
font-size:1.2rem;
font-weight:bold;
}

.gallery-item{
height:220px;
display:flex;
align-items:center;
justify-content:center;
font-size:1.3rem;
font-weight:bold;
}

.review-card{
text-align:center;
}

.review-card p{
margin:15px 0;
}

.dark{
background:#111827;
}

.contact-box{
max-width:750px;
margin:auto;
background:#151515;
padding:35px;
border-radius:12px;
border:2px solid #0d6efd;
}

form{
display:flex;
flex-direction:column;
gap:15px;
margin-bottom:25px;
}

input,textarea{
padding:14px;
background:#0c0c0c;
border:none;
border-radius:6px;
color:white;
}

textarea{
height:150px;
resize:none;
}

.upload-label{
background:#0c0c0c;
padding:15px;
border-radius:6px;
cursor:pointer;
}

button{
padding:15px;
background:#0d6efd;
border:none;
border-radius:6px;
color:white;
font-weight:bold;
cursor:pointer;
}

.contact-info{
text-align:center;
margin-top:20px;
}

.payments{
margin-top:20px;
}

.payments span{
display:inline-block;
background:#0d6efd;
padding:10px 18px;
margin:5px;
border-radius:6px;
font-weight:bold;
}

footer{
padding:30px;
text-align:center;
background:#050505;
color:#8a8a8a;
}

@media(max-width:768px){

nav{
flex-direction:column;
gap:15px;
}

.nav-links{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.hero-content h1{
font-size:2.5rem;
}

.main-logo{
width:300px;
}
}
