*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#f4f4f4;
  color:#222;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background:#0f0f0f;
  padding:20px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{
  height:55px;
  width:auto;
  display:block;
}

nav a{
  color:#fff;
  text-decoration:none;
  margin-left:30px;
  font-size:14px;
  text-transform:uppercase;
  font-weight:bold;
}

nav a:hover{
  color:#f5c400;
}

.menu-btn{
  display:none;
  background:#f5c400;
  border:none;
  padding:8px 12px;
  font-size:22px;
  cursor:pointer;
}

/* HERO */

.hero{
  position:relative;
  min-height:100vh;
  background:url("images/hero.jpg");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  padding:120px 8%;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:650px;
  color:#fff;
}

.hero h1{
  font-size:76px;
  line-height:1;
  margin-bottom:20px;
}

.hero p{
  font-size:24px;
  line-height:1.6;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:15px;
}

.btn{
  display:inline-block;
  padding:16px 34px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.yellow{
  background:#f5c400;
  color:#111;
}

.dark{
  background:#1d1d1d;
  color:#fff;
  border:1px solid #444;
}

.btn:hover{
  transform:translateY(-3px);
}

/* BOOKING CTA */

.booking-cta{
  background:#f5c400;
  padding:70px 8%;
  text-align:center;
}

.booking-wrapper{
  max-width:850px;
  margin:auto;
}

.booking-wrapper h2{
  font-size:42px;
  margin-bottom:15px;
  color:#111;
}

.booking-wrapper p{
  font-size:18px;
  line-height:1.7;
  margin-bottom:28px;
  color:#222;
}

.book-btn{
  display:inline-block;
  background:#111;
  color:#fff;
  padding:16px 38px;
  text-decoration:none;
  font-weight:bold;
  text-transform:uppercase;
}

/* SERVICES */

.services{
  padding:90px 8%;
  background:#fff;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  background:#f8f8f8;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.card-content{
  padding:25px;
}

.card-content h3{
  font-size:28px;
  margin-bottom:12px;
}

.card-content p{
  line-height:1.7;
  color:#555;
}

/* FLEET */

.fleet{
  background:#111;
  padding:90px 8%;
}

.section-title h2{
  color:#fff;
  font-size:42px;
  margin-bottom:35px;
}

.fleet-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.fleet-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
}

/* ABOUT */

.about{
  padding:90px 8%;
  background:#fff;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.about-box{
  background:#f8f8f8;
  padding:35px;
}

.about-box h3{
  margin-bottom:15px;
  font-size:28px;
}

.about-box p{
  line-height:1.8;
  color:#555;
}

/* FINAL CTA */

.final-cta{
  background:#f5c400;
  text-align:center;
  padding:80px 8%;
}

.final-cta h2{
  font-size:46px;
  margin-bottom:25px;
}

.final-btn{
  display:inline-block;
  background:#111;
  color:#fff;
  text-decoration:none;
  padding:18px 42px;
  font-weight:bold;
  text-transform:uppercase;
}

/* FOOTER */

footer{
  background:#0f0f0f;
  color:#fff;
  text-align:center;
  padding:70px 8%;
}

footer h2{
  font-size:40px;
  margin-bottom:15px;
  color:#f5c400;
}

footer p{
  margin-bottom:10px;
}

footer a{
  color:#f5c400;
  text-decoration:none;
}

.copyright{
  margin-top:30px;
  color:#888;
}

/* TOP BUTTON */

.top-btn{
  position:fixed;
  bottom:20px;
  right:20px;
  width:45px;
  height:45px;
  border:none;
  background:#f5c400;
  color:#111;
  font-size:22px;
  cursor:pointer;
  font-weight:bold;
}

/* MOBILE */

@media(max-width:768px){

  .menu-btn{
    display:block;
  }

  nav{
    display:none;
    position:absolute;
    top:80px;
    right:8%;
    background:#111;
    width:220px;
    padding:20px;
  }

  nav.active{
    display:block;
  }

  nav a{
    display:block;
    margin:15px 0;
  }

  .hero h1{
    font-size:46px;
  }

  .hero p{
    font-size:18px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .services,
  .fleet-grid,
  .about{
    grid-template-columns:1fr;
  }

  .booking-wrapper h2,
  .section-title h2,
  .final-cta h2{
    font-size:32px;
  }
}