
/* =====================================================
   SafeHustle Complete Stylesheet
   ===================================================== */

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
    line-height:1.7;
}
img{max-width:100%;display:block;}
a{text-decoration:none;}
ul{list-style:none;}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.navbar{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}
.logo img{height:60px;}
.nav-menu{
    display:flex;
    gap:25px;
    align-items:center;
}
.nav-menu a{
    color:#222;
    font-weight:600;
}
.nav-menu a:hover,
.nav-menu a.active{color:#0056b3;}

.download-btn,.btn-primary{
    display:inline-block;
    background:#0056b3;
    color:#fff;
    padding:14px 30px;
    border-radius:40px;
    transition:.3s;
}
.download-btn:hover,
.btn-primary:hover{
    background:#003f84;
}

/* HERO */
.hero,.page-hero{
    background:linear-gradient(135deg,#0056b3,#00a86b);
    color:#fff;
    text-align:center;
    padding:90px 20px;
}
.hero h1,.page-hero h1{
    font-size:48px;
    margin-bottom:20px;
}
.hero p,.page-hero p{
    font-size:18px;
    max-width:750px;
    margin:auto;
}

/* SECTIONS */
.about,.services,.why-us,.how-it-works,.faq,.stats,.cta,.contact-page{
    padding:80px 20px;
}
.services{background:#f7f9fc;}
.how-it-works{background:#eef6ff;}
.stats{background:#0056b3;color:#fff;}
.cta{background:#00a86b;color:#fff;text-align:center;}

.section-title{
    text-align:center;
    margin-bottom:50px;
}
.section-title h2{
    color:#0056b3;
    font-size:36px;
}

/* ABOUT PAGE */
.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}
.about-grid img{
    width:100%;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}
.about h2{
    color:#0056b3;
    margin-bottom:18px;
}
.about p{
    margin-bottom:18px;
    color:#555;
}

/* CARDS */
.services-grid,
.why-grid,
.steps-grid,
.stats-grid,
.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.service-card,
.why-card,
.step{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card{
    border-top:4px solid #00a86b;
}

.why-card{
    border-top:4px solid #0056b3;
}

.service-card:hover,
.why-card:hover,
.step:hover{
    transform:translateY(-8px);
}

.service-card h3,
.why-card h3,
.step h3{
    color:#0056b3;
    margin-bottom:15px;
}

.service-card p,
.why-card p,
.step p{
    color:#555;
}

.step{
    text-align:center;
}

.step span{
    width:60px;
    height:60px;
    margin:0 auto 20px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#0056b3;
    color:#fff;
    font-size:24px;
    font-weight:bold;
}

/* CONTACT */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}
.contact-form input,
.contact-form textarea,
.contact-form select{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
}

/* CTA */
.cta h2{
    font-size:40px;
    margin-bottom:20px;
}
.cta p{
    max-width:700px;
    margin:0 auto 30px;
}

/* FOOTER */
footer{
    background:#111;
    color:#fff;
    padding:60px 20px;
}
footer a{color:#fff;}
.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:30px;
    padding-top:20px;
}

/* MOBILE */
@media(max-width:768px){
.navbar .container{
    flex-direction:column;
    gap:15px;
}
.nav-menu{
    flex-direction:column;
    gap:15px;
}
.about-grid,
.contact-grid,
.services-grid,
.why-grid,
.steps-grid,
.stats-grid,
.footer-grid{
    grid-template-columns:1fr;
}
.hero h1,.page-hero h1{
    font-size:34px;
}
.download-btn,.btn-primary{
    width:100%;
    text-align:center;
}
}
