/* ---------------------------
   Global
---------------------------- */
body {
  font-family: 'Poppins', sans-serif;
  color: #1e293b; /* slate-800 */
  background-color: #ffffff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #0f172a; /* slate-900 */
}

p {
  color: #475569; /* slate-600 */
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

.topbar-business-hours {
  letter-spacing: 0.5px;
  font-weight: 500;
}
/* ---------------------------
   Hero
---------------------------- */
.hero {
  background: url("assets/images/banner2.jpg") center/cover no-repeat;
  min-height: 580px;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.773); /* dark overlay */
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: white;
}
.hero p {
 color: white;
}

.hero .lead {
  font-size: 1.25rem;
}

.hero .badge {
  font-weight: 600;
  font-size: 0.95rem;
}

.hero .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
}

.hero .btn-success {
  background-color: #16a34a;
  border: 1px solid #16a34a;
}

.hero .btn-success:hover {
  background-color: #15803d;
}

.hero .btn-outline-light {
  border: 1.5px solid #fff;
  color: #fff;
}

.hero .btn-outline-light:hover {
  background: #fff;
  color: #0f172a;
}

/* ---------------------------
   Fleet Section
---------------------------- */
#fleet {
  background: #f8fafc;
}

#fleet h2 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

#fleet .card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

#fleet .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

#fleet .card-img-top {
  height: 200px;
  object-fit: cover;
}

#fleet .card-body {
  display: flex;
  flex-direction: column;
}

#fleet .card-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#fleet .card-text {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 1rem;
}

#fleet .list-unstyled li {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: #334155;
}

#fleet .list-unstyled i {
  color: #475569;
}

#fleet .btn {
  height: 42px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 0.9rem;
}

#fleet .btn-success {
  background-color: #16a34a;
  border: 1px solid #16a34a;
}

#fleet .btn-success:hover {
  background-color: #15803d;
}

#fleet .btn-outline-dark {
  border: 1.5px solid #0f172a;
  color: #0f172a;
}

#fleet .btn-outline-dark:hover {
  background: #f8fafc;
}

#fleet .btn-lg {
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
}

/* ---------------------------
   Why Choose Section
---------------------------- */
#why {
  background: #fff;
}

#why h2 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-box {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  transition: all 0.2s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-box i {
  color: #16a34a;
}

/* ---------------------------
   CTA Section
---------------------------- */
#reservation {
  background: #f8fafc;
}

#reservation .p-5 {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

#reservation .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
}

#reservation .btn-success {
  background-color: #16a34a;
  border: 1px solid #16a34a;
}

#reservation .btn-success:hover {
  background-color: #15803d;
}

#reservation .btn-outline-dark {
  border: 1.5px solid #0f172a;
  color: #0f172a;
}

#reservation .btn-outline-dark:hover {
  background: #f1f5f9;
}

/* ---------------------------
   Footer
---------------------------- */
footer {
  background: #0f172a;
  color: #fff;
}

footer h4, footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

footer p, footer li, footer a {
  font-size: 0.9rem;
  color: #cbd5e1;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
