body{
  font-family:Tajawal, sans-serif;
  background:#0B1C2D;
  color:#F5F7FA;
}

.wrap{
  max-width:1100px;
  margin:auto;
  padding:20px;
}

/* HERO */
.hero{
  text-align:center;
  margin:60px 0;
}

.hero h1{
  font-size:32px;
  margin-bottom:10px;
}

.hero p{
  color:#A8B3C2;
  margin-bottom:20px;
}

.trust span{
  margin:0 8px;
  font-size:14px;
  color:#D4AF37;
}

/* BUTTON */
.btn{
  padding:12px 18px;
  border-radius:12px;
  border:1px solid #D4AF37;
  cursor:pointer;
  transition:.3s;
}

.btn:hover{
  transform:translateY(-2px);
}

.primary{
  background:#D4AF37;
  color:#000;
  font-weight:bold;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.card{
  background:#122A3F;
  padding:18px;
  border-radius:16px;
  transition:.3s;
  border:1px solid rgba(255,255,255,0.05);
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.card img{
  width:100%;
  border-radius:10px;
}

.card h3{
  margin:10px 0 5px;
}

.card p{
  font-size:14px;
  color:#A8B3C2;
}

.meta{
  margin:10px 0;
}

.meta span{
  font-size:12px;
  margin-left:10px;
  color:#D4AF37;
}

.top-nav{
  margin-bottom:20px;
}

.back-btn{
  text-decoration:none;
  color:#D4AF37;
  font-size:14px;
  transition:.3s;
}

.back-btn:hover{
  opacity:.8;
}
