*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:'Poppins',sans-serif;
  background:#0b0b0b;
  color:#fff;
}

.container{max-width:1200px;margin:auto;padding:0 20px}

/* LOGO */
.logo{
  font-size:26px;
  font-weight:700;
}
.logo span{color:#f7c600}

/* HEADER */
.header{
  background:linear-gradient(90deg,#f7c600,#ffdb4d);
}
.header-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}
.header-actions a{
  margin-left:10px;
  padding:8px 18px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}
.call-btn{background:#000;color:#fff}
.wa-btn{background:#25D366;color:#fff}

/* HERO */
.hero{
  background:url('https://images.unsplash.com/photo-1549921296-3cce91e6f0a6') center/cover no-repeat;
}
.hero-overlay{
  background:rgba(0,0,0,0.65);
  padding:90px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:50px;
}
.hero-text h1{font-size:46px;margin-bottom:15px}
.hero-text span{color:#f7c600}
.primary-btn{
  background:#25D366;
  color:#fff;
  padding:14px 30px;
  border-radius:40px;
  text-decoration:none;
  font-weight:700;
}

/* FORM */
.booking-form{
  background:#fff;
  color:#000;
  padding:30px;
  border-radius:18px;
}
.booking-form input{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:8px;
  border:1px solid #ccc;
}
.booking-form button{
  width:100%;
  padding:14px;
  background:#25D366;
  color:#fff;
  border:none;
  border-radius:30px;
  font-weight:700;
}

/* SECTIONS */
section{padding:80px 0;text-align:center}
section h2{font-size:34px;margin-bottom:30px}
section h2 span{color:#f7c600}

/* GRIDS */
.service-grid,.why-grid,.taxi-grid,.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

/* CARDS */
.service-card,.why-box,.taxi-card{
  background:#1a1a1a;
  padding:25px;
  border-radius:18px;
}

/* TAXI */
.taxi-card button{
  margin-top:15px;
  background:#f7c600;
  border:none;
  padding:10px 26px;
  border-radius:30px;
  font-weight:700;
}

/* FOOTER */
.footer{background:#000;padding:50px 0}
.footer ul{list-style:none}
.footer ul li{margin-bottom:6px}

/* STICKY BAR */
.sticky-bar{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#000;
  display:flex;
  justify-content:space-around;
  padding:10px 0;
}
.sticky-bar a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

/* MOBILE */
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-text h1{font-size:34px}
}
