/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#0c0f14;
color:white;
line-height:1.6;
}

/* HEADER */
header{
position:relative;
display:flex;
align-items:center;
justify-content:space-between;
padding:20px 8%;
background:#0b0b0b;
border-bottom:2px solid #d4af37;
}

.logo{
display:flex;
align-items:center;
gap:15px;
}

.logo img{
height:65px;
}

.logo-text h1{
font-size:28px;
color:#d4af37;
font-weight:600;
}

.logo-text span{
font-size:13px;
letter-spacing:2px;
color:#aaa;
text-transform:uppercase;
}

/* NAV */
nav{
position:absolute;
left:50%;
transform:translateX(-50%);
display:flex;
gap:30px;
}

nav a{
text-decoration:none;
color:white;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#d4af37;
}

/* CALL BUTTON */
.call-btn{
background:#d4af37;
color:black;
padding:10px 18px;
border-radius:5px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.call-btn:hover{
background:#c19b2e;
}

/* HERO */
.hero{
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:
linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.85)),
url("https://images.unsplash.com/photo-1503387762-592deb58ef4e");
background-size:cover;
background-position:center;
}

.hero-content{
max-width:700px;
}

.hero h2{
font-size:48px;
margin-bottom:15px;
}

.hero p{
color:#bbb;
font-size:18px;
margin-bottom:30px;
}

.hero-btn{
display:inline-block;
padding:14px 30px;
background:#d4af37;
color:black;
font-weight:600;
border-radius:5px;
text-decoration:none;
transition:0.3s;
}

.hero-btn:hover{
background:#c19b2e;
transform:translateY(-2px);
}

/* SERVICES */
.services{
padding:80px 8%;
text-align:center;
}

.services h2{
font-size:34px;
margin-bottom:40px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:#141922;
padding:30px;
border-radius:10px;
border:1px solid #222;
transition:0.3s;
}

.card i{
font-size:28px;
margin-bottom:15px;
color:#d4af37;
}

.card:hover{
transform:translateY(-8px);
background:#1b2330;
}

.card h3{
margin-bottom:10px;
color:#d4af37;
}

/* WHY US */
.why-us{
padding:80px 8%;
text-align:center;
background:#0c0f14;
}

.why-us h2{
font-size:34px;
margin-bottom:10px;
}

.why-us .subtitle{
color:#aaa;
margin-bottom:50px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.why-card{
background:#141922;
padding:30px;
border-radius:10px;
border:1px solid #222;
transition:0.3s;
}

.why-card i{
font-size:28px;
color:#d4af37;
margin-bottom:15px;
}

.why-card:hover{
transform:translateY(-6px);
background:#1b2330;
}

.why-card h3{
margin-bottom:10px;
color:#d4af37;
}

/* ABOUT */
.about{
padding:80px 8%;
background:#10151d;
text-align:center;
}

.about h2{
margin-bottom:20px;
font-size:32px;
}

.about p{
max-width:700px;
margin:10px auto;
color:#aaa;
}

/* APPROACH */
.approach{
padding:80px 8%;
background:#0f172a;
text-align:center;
}

.approach h2{
font-size:32px;
margin-bottom:10px;
}

.approach .subtitle{
max-width:700px;
margin:0 auto 50px;
color:#cbd5f5;
}

.approach-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.approach-box{
background:#1e293b;
padding:25px;
border-radius:10px;
transition:0.3s;
}

.approach-box:hover{
transform:translateY(-5px);
background:#334155;
}

.approach-box h3{
margin-bottom:10px;
color:#d4af37;
}

/* TESTIMONIALS */
.testimonials{
padding:80px 8%;
background:#10151d;
text-align:center;
}

.testimonials h2{
font-size:32px;
margin-bottom:10px;
}

.testimonials .subtitle{
color:#aaa;
margin-bottom:50px;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.testimonial-card{
background:#141922;
padding:25px;
border-radius:10px;
border:1px solid #222;
font-style:italic;
transition:0.3s;
}

.testimonial-card:hover{
transform:translateY(-5px);
background:#1b2330;
}

.testimonial-card span{
display:block;
margin-top:15px;
color:#d4af37;
font-style:normal;
font-weight:600;
}

/* CTA STRIP */
.cta-strip{
background:#d4af37;
color:black;
text-align:center;
padding:60px 20px;
}

.cta-strip h2{
font-size:28px;
margin-bottom:10px;
}

.cta-button{
display:inline-block;
background:black;
color:white;
padding:12px 25px;
border-radius:5px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.cta-button:hover{
background:#222;
}

/* CONTACT */
.contact{
padding:80px 8%;
text-align:center;
}

form{
max-width:600px;
margin:auto;
display:grid;
gap:15px;
}

input, textarea{
padding:14px;
border:1px solid #2b3445;
border-radius:5px;
background:#1c2330;
color:white;
font-size:15px;
}

input:focus, textarea:focus{
outline:none;
border-color:#d4af37;
}

textarea{
height:120px;
}

button.submit{
background:#d4af37;
border:none;
padding:14px;
cursor:pointer;
border-radius:5px;
font-weight:600;
transition:0.3s;
}

button.submit:hover{
background:#c19b2e;
}

/* FOOTER */
footer{
background:#0a0d12;
text-align:center;
padding:25px;
color:#777;
margin-top:40px;
font-size:14px;
}

/* MOBILE */
.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

@media (max-width:768px){

header{
flex-direction:row;
justify-content:space-between;
padding:15px 20px;
}

.logo img{
height:50px;
}

.logo-text h1{
font-size:20px;
}

.logo-text span{
font-size:10px;
letter-spacing:1px;
}

.menu-toggle{
display:block;
position:absolute;
left:15px;
top:18px;
z-index:1001;
}

nav{
position:fixed;
top:0;
left:-100%;
width:100%;
height:100vh;
background:#0b0b0b;
flex-direction:column;
align-items:center;
justify-content:center;
gap:30px;
transition:0.3s;
z-index:1000;
}

nav.active{
left:0;
}

nav a{
font-size:20px;
}

.call-btn{
display:none;
}

.hero{
height:auto;
padding:100px 20px 80px;
}

.hero h2{
font-size:28px;
}

.hero p{
font-size:15px;
}

.services,
.about,
.approach,
.contact,
.why-us,
.testimonials{
padding:50px 20px;
}

.service-grid,
.why-grid,
.approach-grid,
.testimonial-grid{
grid-template-columns:1fr;
gap:20px;
}

.card,
.why-card,
.approach-box,
.testimonial-card{
padding:20px;
}

h2{
font-size:26px;
}

p{
font-size:14px;
}

input, textarea{
font-size:14px;
padding:12px;
}

.cta-strip{
padding:40px 20px;
}

.cta-strip h2{
font-size:22px;
}

}