body{background:#0b0b0b;color:#fff;margin:0;font-family:Arial,sans-serif}
.hero{height:70vh;display:flex;flex-direction:column;justify-content:center;align-items:center;background:#111}
h1{color:#f7c600}
.content{padding:60px;text-align:center}


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

html{
scroll-behavior:smooth;
}

body{
background:#0b0b0b;
color:#fff;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

section{
padding:80px 0;
}

h2{
font-size:40px;
margin-bottom:20px;
text-align:center;
}

p{
color:#cfcfcf;
line-height:1.8;
}

.btn{
display:inline-block;
padding:14px 30px;
background:#f7c600;
color:#000;
font-weight:700;
border-radius:40px;
text-decoration:none;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

header{
position:fixed;
width:100%;
top:0;
left:0;
background:rgba(0,0,0,.85);
backdrop-filter:blur(10px);
z-index:1000;
}

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 5%;
}

.logo-section{
display:flex;
align-items:center;
gap:15px;
}

.logo{
font-size:28px;
font-weight:800;
color:#f7c600;
}

.logo-wrap{
display:flex;
align-items:center;
}

.logo-img{
height:60px;
width:auto;
display:block;
border-radius:50%;
}

.site-title{
text-decoration:none;
font-size:28px;
font-weight:800;
color:#f7c600;
letter-spacing:1px;
}

.site-title:hover{
color:#fff;
}

@media(max-width:768px){

.logo-img{
height:45px;
}

.site-title{
font-size:18px;
}

}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:500;
}

.hero{
height:100vh;
display:flex;
align-items:center;
background:
linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1600');
background-size:cover;
background-position:center;
text-align:center;
}

.hero-content{
width:100%;
}

.hero h1{
font-size:70px;
font-weight:800;
margin-bottom:20px;
}

.hero span{
color:#f7c600;
}

.hero p{
max-width:700px;
margin:auto;
margin-bottom:30px;
font-size:18px;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-img img{
width:100%;
border-radius:20px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
margin-top:40px;
}

.card{
background:#151515;
padding:30px;
border-radius:20px;
transition:.4s;
border:1px solid #222;
}

.card:hover{
transform:translateY(-10px);
border-color:#f7c600;
}

.price{
font-size:42px;
font-weight:800;
color:#f7c600;
margin:20px 0;
}

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

.branch-card h3{
margin-bottom:10px;
}

.review-btn{
display:inline-block;
margin-top:15px;
padding:12px 25px;
background:#f7c600;
border-radius:30px;
color:#000;
font-weight:700;
text-decoration:none;
}

.contact-box{
background:#151515;
padding:40px;
border-radius:20px;
text-align:center;
max-width:700px;
margin:auto;
}

footer{
text-align:center;
padding:30px;
border-top:1px solid #222;
}

.whatsapp{
position:fixed;
right:20px;
bottom:20px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
color:white;
text-decoration:none;
box-shadow:0 0 20px rgba(37,211,102,.4);
z-index:999;
}

.fade{
opacity:0;
transform:translateY(40px);
transition:1s;
}

.fade.show{
opacity:1;
transform:translateY(0);
}


.review-page{
min-height:100vh;
background:#0b0b0b;
padding:120px 20px 80px;
display:flex;
justify-content:center;
align-items:center;
}

.review-container{
max-width:1200px;
width:100%;
text-align:center;
}

.review-logo{
max-width:280px;
margin-bottom:30px;
}

.review-page h1{
font-size:56px;
font-weight:800;
color:#f7c600;
margin-bottom:15px;
}

.subtitle{
font-size:18px;
color:#ccc;
max-width:700px;
margin:0 auto 50px;
}

.branch-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.branch-card{
background:#151515;
padding:40px 30px;
border-radius:20px;
text-decoration:none;
color:white;
border:2px solid #222;
transition:.4s;
}

.branch-card:hover{
transform:translateY(-10px);
border-color:#f7c600;
box-shadow:0 0 30px rgba(247,198,0,.25);
}

.branch-card h3{
font-size:28px;
margin-bottom:15px;
color:#f7c600;
}

.branch-card p{
color:#ccc;
margin-bottom:20px;
}

.branch-card span{
display:inline-block;
background:#f7c600;
color:#000;
padding:12px 24px;
border-radius:30px;
font-weight:700;
}

@media(max-width:768px){

.review-page h1{
font-size:38px;
}

.branch-card{
padding:30px 20px;
}

}

@media(max-width:768px){

.hero h1{
font-size:42px;
}

.about-grid{
grid-template-columns:1fr;
}

nav ul{
display:none;
}

h2{
font-size:32px;
}

}


