*{margin:0;padding:0;box-sizing:border-box}
body{
    font-family:'Inter',sans-serif;
    background:#0b1120;
    color:#e5e7eb;
    line-height:1.6;
}
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* NAVBAR */
nav{
    position:fixed;
    width:100%;
    top:0;
    backdrop-filter:blur(10px);
    background:rgba(15,23,42,0.7);
    padding:15px 0;
    z-index:1000;
}
.nav-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    display:flex;
    align-items:center;
    gap:10px;
}
.logo img{
    width:38px;
    border-radius:12px;
}
.logo span{
    font-weight:700;
    font-size:18px;
    color:white;
}
nav ul{
    list-style:none;
    display:flex;
    gap:25px;
}
nav a{
    text-decoration:none;
    color:#cbd5e1;
    font-size:14px;
}
nav a:hover{color:white}

/* HERO */
.hero{
    padding:160px 0 100px;
    background:radial-gradient(circle at top left,#1d4ed8,#0b1120 60%);
}
.hero h1{
    font-size:48px;
    font-weight:800;
    margin-bottom:20px;
}
.hero p{
    font-size:18px;
    color:#94a3b8;
}

/* BUTTON */
.btn{
    padding:14px 28px;
    background:#1d4ed8;
    border-radius:12px;
    color:white;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
}
.btn:hover{background:#2563eb}

/* SECTION */
.section{
    padding:120px 0;
}
.section-title{
    text-align:center;
    margin-bottom:60px;
}
.section-title h2{
    font-size:36px;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* CARD */
.card{
    background:#111827;
    border-radius:20px;
    overflow:hidden;
    transition:0.3s;
}
.card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,0.4);
}
.card img{
    width:100%;
    height:200px;
    object-fit:cover;
}
.card-content{
    padding:25px;
}
.price{
    margin-top:15px;
    font-weight:700;
    color:#3b82f6;
}

/* CONTACT FORM */
.form-box{
    max-width:600px;
    margin:auto;
    background:#111827;
    padding:40px;
    border-radius:20px;
}
input, textarea{
    width:100%;
    padding:14px;
    margin-bottom:20px;
    border-radius:10px;
    border:none;
    background:#1f2937;
    color:white;
}
textarea{resize:none;height:120px}

footer{
    text-align:center;
    padding:40px;
    color:#64748b;
}