*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Helvetica Neue", Arial, sans-serif;
}

body{
background:#f8f8f6;
color:#1f1f1f;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
background:#111111;
padding:18px 0;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.logo{
color:#ffffff;
font-size:28px;
letter-spacing:2px;
}

nav a{
margin:0 12px;
text-decoration:none;
color:#ffffff;
font-size:15px;
transition:opacity 0.3s ease;
}

nav a:hover{
opacity:0.7;
}

/* BUTTON */

.btn{
display:inline-block;
background:#c47a2c;
color:white;
padding:12px 26px;
border-radius:10px;
cursor:pointer;
text-decoration:none;
border:none;
font-size:16px;
transition:all 0.3s ease;
}

.btn:hover{
background:#a86422;
}

/* HERO */

.hero{
  position:relative;
  background:url("images/hero-sign.jpg") 30% center/cover no-repeat;
  color:white;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
  padding:40px 20px;
}

.hero h2{
  font-size:52px;
  margin-bottom:18px;
  letter-spacing:1px;
  line-height:1.2;
  text-shadow:0 4px 18px rgba(0,0,0,0.45);
}

.hero-tagline{
  font-size:24px;
  font-weight:500;
  letter-spacing:0.5px;
  color:#f0f0f0;
  margin-bottom:30px;
  text-shadow:0 2px 10px rgba(0,0,0,0.45);
}

/* SERVICES */

.services{
padding:100px 0;
background:#f8f8f6;
}

.section-title{
text-align:center;
margin-bottom:50px;
font-size:36px;
font-weight:600;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:white;
padding:35px 30px;
border-radius:0;
border:1px solid #e5e5e5;
transition:all 0.3s ease;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.card h3{
margin-bottom:12px;
font-size:22px;
}

.card p{
color:#666666;
font-size:15px;
}

/* FEATURES */

.features{
background:#111111;
color:white;
padding:100px 0;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.feature{
padding:25px 10px;
}

.feature h3{
margin-bottom:12px;
font-size:22px;
}

.feature p{
color:#d0d0d0;
}

/* WHY CHOOSE US (UPGRADED) */

.why-choose{
padding:120px 0;
background:#f9f9f9;
}

.section-heading{
text-align:center;
max-width:800px;
margin:0 auto 80px;
}

.section-tag{
font-size:13px;
letter-spacing:3px;
color:#000;
font-weight:700;
margin-bottom:18px;
text-transform:uppercase;
}

.section-tag::after{
content:"";
display:block;
width:60px;
height:3px;
background:#c47a2c;
margin:12px auto 0;
border-radius:2px;
}

.section-heading h2{
font-size:48px;
line-height:1.2;
font-weight:600;
}

.why-grid{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:24px;
}

.why-card{
background:#ffffff;
padding:36px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:all 0.3s ease;
}

.why-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

.why-card h3{
font-size:22px;
margin-bottom:14px;
font-weight:600;
}

.why-card p{
font-size:15px;
line-height:1.7;
color:#444;
}

/* CONTACT */

.contact{
background:#161616;
color:white;
padding:100px 0;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:start;
}

.contact a{
color:#d9a15b;
text-decoration:none;
}

.contact a:hover{
text-decoration:underline;
}

.whatsapp-btn{
margin-top:18px;
background:#25D366;
color:#ffffff
font-weight:600;
}
.whatsapp-btn:hover{
background:#1ebe5d;
}

.contact input,
.contact textarea{
width:100%;
padding:14px;
margin-bottom:16px;
border:1px solid #333333;
border-radius:10px;
background:#ffffff;
color:#111111;
}

.contact textarea{
min-height:140px;
resize:vertical;
}

/* FOOTER */

footer{
background:#0d0d0d;
color:white;
text-align:center;
padding:25px 0;
font-size:14px;
}

/* RESPONSIVE */

@media (max-width: 900px){
.why-grid{
grid-template-columns:1fr;
}

.section-heading h2{
font-size:34px;
}
}

@media (max-width: 768px){

.nav{
flex-direction:column;
text-align:center;
}

nav a{
display:inline-block;
margin:8px 10px;
}

.hero{
min-height:420px:
padding:80px 0;
}

.hero h2{
font-size:36px;
}

.hero-tagline{
font-size:20px;
}

.contact-grid{
grid-template-columns:1fr;
}

.section-title{
font-size:30px;
}
}