:root{
    --primary:#f59e0b;
    --dark:#0f172a;
    --light:#f8fafc;
    --gray:#6b7280;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI", Arial, sans-serif;
}

body{
    background:var(--light);
    color:#111;
}

/* ================= HEADER ================= */
header{
    background:linear-gradient(90deg,#020617,#0f172a);
    padding:14px 50px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:sticky;
    top:0;
    z-index:999;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    height:45px;
}

nav a{
    color:#e5e7eb;
    text-decoration:none;
    margin-left:30px;
    font-size:15px;
    font-weight:500;
}

nav a:hover{
    color:var(--primary);
}

/* ================= HERO ================= */
.hero{
    height:85vh;

    /* IMPORTANT FIX */
    background:url("../images/banner.webp") center/cover no-repeat;

    position:relative;
    display:flex;
    align-items:center;
    padding:0 70px;
    overflow:hidden;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.35)
    );
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:680px;
    color:#fff;
}

.hero h1{
    font-size:52px;
    margin-bottom:15px;
    text-shadow:0 4px 15px rgba(0,0,0,.6);
}

.hero p{
    font-size:18px;
    line-height:1.6;
    margin-bottom:30px;
    color:#e5e7eb;
}

/* ================= STATS ================= */
.stats{
    display:flex;
    gap:40px;
    margin-bottom:35px;
}

.stat h2{
    color:var(--primary);
    font-size:34px;
}

.stat span{
    font-size:14px;
    color:#d1d5db;
}

/* ================= BUTTON ================= */
.hero button{
    background:var(--primary);
    color:#111;
    border:none;
    padding:16px 38px;
    font-size:16px;
    font-weight:700;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.hero button:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,0,0,.4);
}

/* ================= SECTION ================= */
.section{
    padding:80px 70px;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:36px;
}

.section-title p{
    margin-top:10px;
    color:var(--gray);
}

/* ================= CATEGORIES ================= */
.categories{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
}

.category-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 18px 35px rgba(0,0,0,.12);
    transition:.3s;
}

.category-card:hover{
    transform:translateY(-10px);
}

.category-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.category-card .content{
    padding:28px;
}

.category-card h3{
    margin-bottom:10px;
}

.category-card p{
    font-size:14px;
    color:var(--gray);
}

.category-card a{
    display:inline-block;
    margin-top:18px;
    text-decoration:none;
    font-weight:600;
    color:var(--primary);
}

/* ================= WHY US ================= */
.why-us{
    background:#fff;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:40px;
    text-align:center;
}

.why-box{
    background:var(--light);
    padding:45px 25px;
    border-radius:16px;
}

.why-box h3{
    margin-bottom:12px;
}

.why-box p{
    font-size:14px;
    color:var(--gray);
}

/* ================= CTA ================= */
.cta{
    background:linear-gradient(90deg,#020617,#0f172a);
    color:#fff;
    text-align:center;
    padding:90px 40px;
}

.cta h2{
    font-size:38px;
    margin-bottom:15px;
}

.cta p{
    color:#d1d5db;
    margin-bottom:25px;
}

.cta button{
    background:var(--primary);
    border:none;
    padding:16px 42px;
    font-size:16px;
    font-weight:700;
    border-radius:8px;
    cursor:pointer;
}

/* ================= CONTACT ================= */
.contact-section{
    background:linear-gradient(90deg,#0f172a,#020617);
    padding:90px 70px;
    color:#fff;
}

.contact-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact-info h2{
    font-size:38px;
    margin-bottom:15px;
}

.contact-info p{
    font-size:16px;
    line-height:1.7;
    color:#d1d5db;
    margin-bottom:25px;
}

.contact-details p,
.contact-details address{
    margin-bottom:10px;
    font-size:15px;
    color:#e5e7eb;
}

.contact-email a,
.contact-phone a{
    color:#ffffff;
    text-decoration:none;
}

.contact-email a:hover,
.contact-phone a:hover{
    color:var(--primary);
}

/* ================= FOOTER ================= */
footer{
    background:#020617;
    color:#9ca3af;
    padding:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:45px;
}

footer h4{
    color:#fff;
    margin-bottom:15px;
}

footer a{
    display:block;
    text-decoration:none;
    color:#9ca3af;
    font-size:14px;
    margin-bottom:8px;
}

footer a:hover{
    color:var(--primary);
}

.footer-bottom{
    border-top:1px solid #1f2937;
    margin-top:45px;
    padding-top:25px;
    text-align:center;
    font-size:14px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .contact-container{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){
    .hero{
        padding:0 30px;
        height:90vh;
    }

    .hero h1{
        font-size:38px;
    }

    .stats{
        flex-direction:column;
        gap:15px;
    }

    header{
        padding:14px 25px;
    }
}
