/* ============================================================
   WAATCO – West Africa Agro-Tech Co GH Ltd Website Stylesheet
   Bootstrap 5 base + custom overrides
   ============================================================ */

:root {
  --bz-primary:      #16a34a;
  --bz-primary-dark: #15803d;
  --bz-primary-light:#dcfce7;
  --bz-dark:         #0a1a0e;
  --bz-navy:         #0e2e14;
  --bz-accent:       #22c55e;
  --bz-accent-dark:  #16a34a;
  --bz-gray:         #6b7280;
  --bz-light:        #f4f6f8;
  --bz-border:       #e5e7eb;
  --bz-white:        #ffffff;
  --bz-radius:       10px;
  --bz-shadow:       0 4px 24px rgba(0,0,0,.08);
  --bz-shadow-lg:    0 8px 40px rgba(0,0,0,.14);
  --bz-transition:   all .3s ease;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--bz-dark);
  background: #fff;
  line-height: 1.65;
}

a { color: var(--bz-primary); text-decoration: none; transition: var(--bz-transition); }
a:hover { color: var(--bz-primary-dark); }

img { max-width: 100%; height: auto; }

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ── Headings ── */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bz-dark);
  margin-bottom: .5rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--bz-gray);
  margin-bottom: 2.5rem;
}
.section-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bz-primary);
  background: var(--bz-primary-light);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* ══════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════ */
.bz-navbar {
  background: transparent;
  padding: 18px 0;
  transition: var(--bz-transition);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.bz-navbar.scrolled {
  background: var(--bz-dark);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.bz-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bz-navbar .brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
.bz-navbar .brand-text { line-height: 1.2; }
.bz-navbar .brand-name {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}
.bz-navbar .brand-tagline {
  display: block;
  color: var(--bz-accent);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.bz-navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--bz-transition);
}
.bz-navbar .nav-link:hover,
.bz-navbar .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.12);
}
.bz-navbar .dropdown-menu {
  background: var(--bz-dark);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 8px;
  margin-top: 8px;
}
.bz-navbar .dropdown-item {
  color: rgba(255,255,255,.8);
  border-radius: 6px;
  font-size: .88rem;
  padding: 8px 14px;
  transition: var(--bz-transition);
}
.bz-navbar .dropdown-item:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.bz-navbar .btn-book-nav {
  background: var(--bz-accent);
  color: var(--bz-dark) !important;
  font-weight: 700;
  padding: 8px 22px !important;
  border-radius: 25px;
}
.bz-navbar .btn-book-nav:hover {
  background: var(--bz-accent-dark);
  transform: translateY(-1px);
}
.bz-navbar .navbar-toggler {
  border: 1px solid rgba(255,255,255,.4);
  padding: 4px 8px;
}
.bz-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2c255%2c255%2c0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.bz-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bz-dark) 0%, var(--bz-navy) 60%, #051a08 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(22,163,74,.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(34,197,94,.08) 0%, transparent 60%);
}
.bz-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.bz-hero-content { position: relative; z-index: 2; }
.bz-hero-badge {
  display: inline-block;
  background: rgba(22,163,74,.2);
  border: 1px solid rgba(22,163,74,.4);
  color: #86efac;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.bz-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.bz-hero h1 span { color: var(--bz-accent); }
.bz-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 2.2rem;
}
.bz-hero-img {
  position: relative;
  z-index: 2;
}
.bz-hero-img img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
}

/* Hero slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slideshow .slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-slideshow-nav {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-slideshow-nav .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .3s;
}
.hero-slideshow-nav .dot.active { background: var(--bz-accent); }
.hero-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--bz-transition);
}
.hero-slide-btn:hover { background: var(--bz-primary); }
.hero-slide-btn.prev { left: 24px; }
.hero-slide-btn.next { right: 24px; }

/* Search widget */
.bz-search-widget {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px;
  margin-top: 2rem;
}
.bz-search-widget .form-label {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bz-search-widget .form-control,
.bz-search-widget .form-select {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 8px;
  height: 46px;
  font-size: .95rem;
}
.bz-search-widget .form-control::placeholder { color: rgba(255,255,255,.45); }
.bz-search-widget .form-control:focus,
.bz-search-widget .form-select:focus {
  background: rgba(255,255,255,.15);
  border-color: var(--bz-primary);
  box-shadow: 0 0 0 3px rgba(22,163,74,.25);
  color: #fff;
}
.bz-search-widget .form-select option { background: var(--bz-dark); color: #fff; }
.btn-search {
  background: var(--bz-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  height: 46px;
  width: 100%;
  font-size: .95rem;
  transition: var(--bz-transition);
}
.btn-search:hover {
  background: var(--bz-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,.4);
  color: #fff;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-scroll-dot {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 13px;
  position: relative;
}
.hero-scroll-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--bz-accent);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* ══════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════ */
.bz-stats-bar {
  background: var(--bz-dark);
  padding: 40px 0;
}
.bz-stat-item { text-align: center; }
.bz-stat-item .stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--bz-accent);
  line-height: 1;
  display: block;
}
.bz-stat-item .stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}
.bz-stat-item .stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(22,163,74,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.3rem;
  color: var(--bz-primary);
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  align-self: stretch;
}

/* ══════════════════════════════════════════
   FLEET / VEHICLES / PRODUCT CARDS
   ══════════════════════════════════════════ */
.bz-vehicle-card {
  background: #fff;
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-shadow);
  overflow: hidden;
  transition: var(--bz-transition);
  border: 1px solid var(--bz-border);
  height: 100%;
}
.bz-vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bz-shadow-lg);
}
.bz-vehicle-card .vehicle-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #ffffff;
}
.bz-vehicle-card .vehicle-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transition: transform .4s ease;
}
.bz-vehicle-card:hover .vehicle-img img { transform: scale(1.05); }
.bz-vehicle-card .vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bz-primary);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.bz-vehicle-card .vehicle-badge.available { background: var(--bz-primary); }
.bz-vehicle-card .vehicle-badge.booked    { background: #6b7280; }
.bz-vehicle-card .vehicle-body {
  padding: 20px;
}
.bz-vehicle-card .vehicle-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bz-dark);
  margin-bottom: 6px;
}
.bz-vehicle-card .vehicle-type {
  font-size: .8rem;
  color: var(--bz-gray);
  margin-bottom: 14px;
}
.bz-vehicle-card .vehicle-specs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--bz-border);
  border-bottom: 1px solid var(--bz-border);
}
.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: var(--bz-gray);
}
.vehicle-spec i { color: var(--bz-primary); font-size: .85rem; }
.bz-vehicle-card .vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.vehicle-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bz-dark);
}
.vehicle-price span {
  font-size: .75rem;
  font-weight: 400;
  color: var(--bz-gray);
}
.btn-book {
  display: inline-block;
  background: var(--bz-primary);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 7px 20px;
  font-size: .85rem;
  font-weight: 600;
  transition: var(--bz-transition);
  text-decoration: none;
}
.btn-book:hover {
  background: var(--bz-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22,163,74,.35);
}

/* ══════════════════════════════════════════
   HOW IT WORKS / STEPS
   ══════════════════════════════════════════ */
.bz-how { background: var(--bz-light); }
.bz-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.bz-step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 24px rgba(22,163,74,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--bz-primary);
  border: 3px solid var(--bz-primary-light);
  position: relative;
  transition: var(--bz-transition);
}
.bz-step:hover .bz-step-icon {
  background: var(--bz-primary);
  color: #fff;
  transform: scale(1.08);
}
.bz-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--bz-accent);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
  color: var(--bz-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bz-step h5 {
  font-weight: 700;
  color: var(--bz-dark);
  margin-bottom: 8px;
}
.bz-step p { font-size: .9rem; color: var(--bz-gray); margin: 0; }
.step-connector {
  position: absolute;
  top: 70px;
  right: -30px;
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--bz-primary) 0, var(--bz-primary) 6px, transparent 6px, transparent 14px);
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.bz-about-img-wrap {
  position: relative;
}
.bz-about-img-wrap img {
  border-radius: 16px;
  box-shadow: var(--bz-shadow-lg);
  width: 100%;
  object-fit: cover;
  height: 480px;
}
.bz-about-badge-float {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  display: flex;
  align-items: center;
  gap: 14px;
}
.bz-about-badge-float .badge-icon {
  width: 50px;
  height: 50px;
  background: var(--bz-primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bz-primary);
  flex-shrink: 0;
}
.bz-about-badge-float .badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bz-dark);
  line-height: 1;
}
.bz-about-badge-float .badge-text {
  font-size: .78rem;
  color: var(--bz-gray);
  margin-top: 2px;
}
.bz-check-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.bz-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--bz-dark);
  padding: 5px 0;
}
.bz-check-list li i { color: var(--bz-primary); margin-top: 3px; flex-shrink: 0; }

/* ══════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════ */
.bz-service-card {
  background: #fff;
  border-radius: var(--bz-radius);
  padding: 32px 28px;
  box-shadow: var(--bz-shadow);
  border: 1px solid var(--bz-border);
  transition: var(--bz-transition);
  height: 100%;
}
.bz-service-card:hover {
  border-color: var(--bz-primary);
  transform: translateY(-4px);
  box-shadow: var(--bz-shadow-lg);
}
.bz-service-card .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--bz-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bz-primary);
  margin-bottom: 18px;
  transition: var(--bz-transition);
}
.bz-service-card:hover .service-icon {
  background: var(--bz-primary);
  color: #fff;
}
.bz-service-card h5 {
  font-weight: 700;
  color: var(--bz-dark);
  margin-bottom: 10px;
}
.bz-service-card p { font-size: .9rem; color: var(--bz-gray); margin: 0; }

/* ══════════════════════════════════════════
   ROUTES / PRODUCT LISTING
   ══════════════════════════════════════════ */
.bz-route-card {
  background: #fff;
  border-radius: var(--bz-radius);
  padding: 20px 24px;
  box-shadow: var(--bz-shadow);
  border: 1px solid var(--bz-border);
  transition: var(--bz-transition);
  display: flex;
  align-items: center;
  gap: 16px;
}
.bz-route-card:hover {
  border-color: var(--bz-primary);
  transform: translateY(-3px);
  box-shadow: var(--bz-shadow-lg);
}
.route-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bz-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--bz-primary);
  flex-shrink: 0;
}
.route-info h6 { font-weight: 700; color: var(--bz-dark); margin: 0 0 3px; }
.route-info small { color: var(--bz-gray); font-size: .8rem; }
.route-price {
  margin-left: auto;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bz-primary);
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.bz-testimonials { background: var(--bz-light); }
.bz-testimonial-card {
  background: #fff;
  border-radius: var(--bz-radius);
  padding: 28px;
  box-shadow: var(--bz-shadow);
  border: 1px solid var(--bz-border);
  height: 100%;
}
.bz-testimonial-card .testi-stars { color: var(--bz-accent); margin-bottom: 14px; font-size: .95rem; }
.bz-testimonial-card .testi-text {
  font-size: .95rem;
  color: #0a1a0e;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.bz-testimonial-card .testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bz-primary-light);
}
.testi-avatar-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bz-primary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--bz-dark); font-size: .9rem; margin: 0; }
.testi-role { font-size: .78rem; color: var(--bz-gray); margin: 0; }
.testi-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--bz-primary);
  border: 1.5px solid var(--bz-primary);
  border-radius: 25px;
  padding: 8px 22px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.testi-nav-btn:hover {
  background: var(--bz-primary);
  color: #fff;
}

/* ══════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════ */
.bz-blog-card {
  background: #fff;
  border-radius: var(--bz-radius);
  overflow: hidden;
  box-shadow: var(--bz-shadow);
  border: 1px solid var(--bz-border);
  transition: var(--bz-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bz-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bz-shadow-lg);
}
.bz-blog-card .blog-img {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.bz-blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.bz-blog-card:hover .blog-img img { transform: scale(1.06); }
.bz-blog-card .blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bz-blog-card .blog-body .d-flex:last-child { margin-top: 14px; }
.blog-category {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bz-primary);
  margin-bottom: 8px;
  display: block;
}
.bz-blog-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bz-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.bz-blog-card h5 a { color: inherit; }
.bz-blog-card h5 a:hover { color: var(--bz-primary); }
.bz-blog-card p {
  font-size: .875rem;
  color: var(--bz-gray);
  margin-bottom: 14px;
}
.blog-meta { font-size: .78rem; color: var(--bz-gray); display: flex; gap: 14px; }
.blog-meta i { color: var(--bz-primary); }

/* ══════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════ */
.bz-cta {
  background: linear-gradient(135deg, var(--bz-dark) 0%, var(--bz-navy) 50%, #051a08 100%);
  position: relative;
  overflow: hidden;
}
.bz-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(22,163,74,.25) 0%, transparent 70%);
}
.bz-cta-content { position: relative; z-index: 1; }
.bz-cta h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: .75rem; }
.bz-cta p { color: rgba(255,255,255,.7); font-size: 1rem; margin: 0; }
.btn-cta-primary {
  background: var(--bz-accent);
  color: var(--bz-dark);
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 1rem;
  transition: var(--bz-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-primary:hover {
  background: var(--bz-accent-dark);
  color: var(--bz-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,.35);
}
.btn-cta-outline {
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 30px;
  padding: 12px 34px;
  font-size: 1rem;
  transition: var(--bz-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.bz-footer {
  background: var(--bz-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.bz-footer .footer-brand h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.bz-footer .footer-brand small {
  color: var(--bz-accent);
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.bz-footer p { font-size: .875rem; line-height: 1.7; margin-top: 14px; }
.bz-footer h6 {
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(22,163,74,.4);
  display: inline-block;
}
.bz-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.bz-footer .footer-links li { margin-bottom: 9px; }
.bz-footer .footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  transition: var(--bz-transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bz-footer .footer-links a i { color: var(--bz-primary); font-size: .75rem; }
.bz-footer .footer-links a:hover { color: var(--bz-primary); padding-left: 4px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
  margin-bottom: 12px;
}
.footer-contact li i {
  color: var(--bz-primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: var(--bz-transition);
}
.footer-social a:hover {
  background: var(--bz-primary);
  color: #fff;
  transform: translateY(-2px);
}
.bz-footer-bottom {
  background: rgba(0,0,0,.2);
  padding: 16px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.bz-footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); margin: 0; }
.bz-footer-bottom a { color: var(--bz-primary); }

/* ══════════════════════════════════════════
   PAGE HEADER (inner pages)
   ══════════════════════════════════════════ */
.bz-page-header {
  background: linear-gradient(135deg, var(--bz-dark) 0%, var(--bz-navy) 70%);
  padding: 130px 0 60px;
  position: relative;
  overflow: hidden;
}
.bz-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(22,163,74,.2) 0%, transparent 60%);
}
.bz-page-header .page-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}
.bz-breadcrumb { margin: 0; background: transparent; padding: 0; }
.bz-breadcrumb .breadcrumb-item { font-size: .875rem; color: rgba(255,255,255,.55); }
.bz-breadcrumb .breadcrumb-item.active { color: var(--bz-accent); }
.bz-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }
.bz-breadcrumb a { color: rgba(255,255,255,.7); }
.bz-breadcrumb a:hover { color: #fff; }

/* ══════════════════════════════════════════
   FILTER SIDEBAR
   ══════════════════════════════════════════ */
.bz-filter-box {
  background: #fff;
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-shadow);
  border: 1px solid var(--bz-border);
  padding: 24px;
  margin-bottom: 24px;
}
.bz-filter-box h6 {
  font-weight: 700;
  color: var(--bz-dark);
  margin-bottom: 14px;
  font-size: .95rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bz-border);
}
.bz-filter-box .form-check-label { font-size: .875rem; cursor: pointer; }
.bz-filter-box .form-check-input:checked { background-color: var(--bz-primary); border-color: var(--bz-primary); }

/* ══════════════════════════════════════════
   BOOKING / QUOTE FORM
   ══════════════════════════════════════════ */
.bz-booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--bz-shadow);
}
.booking-step {
  flex: 1;
  padding: 14px;
  text-align: center;
  background: var(--bz-light);
  border-right: 1px solid var(--bz-border);
  font-size: .82rem;
  font-weight: 600;
  color: var(--bz-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.booking-step:last-child { border-right: none; }
.booking-step .step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bz-border);
  color: var(--bz-gray);
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.booking-step.active {
  background: var(--bz-primary);
  color: #fff;
}
.booking-step.active .step-num {
  background: rgba(255,255,255,.3);
  color: #fff;
}
.booking-step.done {
  background: var(--bz-primary-light);
  color: var(--bz-primary);
}
.booking-step.done .step-num {
  background: var(--bz-primary);
  color: #fff;
}
.bz-booking-card {
  background: #fff;
  border-radius: var(--bz-radius);
  box-shadow: var(--bz-shadow);
  border: 1px solid var(--bz-border);
  overflow: hidden;
}
.bz-booking-card .card-section-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bz-primary);
  background: var(--bz-primary-light);
  padding: 10px 24px;
  margin: 0 -24px 20px;
  border-bottom: 1px solid rgba(22,163,74,.15);
}
.bz-booking-summary {
  background: var(--bz-light);
  border-radius: var(--bz-radius);
  border: 1px solid var(--bz-border);
  overflow: hidden;
}
.bz-booking-summary .summary-header {
  background: var(--bz-dark);
  color: #fff;
  padding: 16px 20px;
  font-weight: 700;
  font-size: .95rem;
}
.bz-booking-summary .summary-body { padding: 20px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: .875rem;
  border-bottom: 1px solid var(--bz-border);
}
.summary-row:last-child { border-bottom: none; }
.summary-row .label { color: var(--bz-gray); }
.summary-row .value { font-weight: 600; color: var(--bz-dark); }
.summary-total {
  background: var(--bz-primary);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════ */
.bz-contact-info-card {
  background: #fff;
  border-radius: var(--bz-radius);
  padding: 28px;
  box-shadow: var(--bz-shadow);
  border: 1px solid var(--bz-border);
  text-align: center;
  transition: var(--bz-transition);
  height: 100%;
}
.bz-contact-info-card:hover {
  border-color: var(--bz-primary);
  transform: translateY(-4px);
}
.bz-contact-info-card .contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bz-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bz-primary);
  margin: 0 auto 16px;
}
.bz-contact-info-card h6 { font-weight: 700; color: var(--bz-dark); margin-bottom: 8px; }
.bz-contact-info-card p { font-size: .875rem; color: var(--bz-gray); margin: 0; }
.bz-contact-form {
  background: #fff;
  border-radius: var(--bz-radius);
  padding: 36px;
  box-shadow: var(--bz-shadow);
  border: 1px solid var(--bz-border);
}
.bz-map-wrap {
  border-radius: var(--bz-radius);
  overflow: hidden;
  box-shadow: var(--bz-shadow);
  height: 360px;
  background: var(--bz-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bz-gray);
  border: 1px solid var(--bz-border);
}

/* ══════════════════════════════════════════
   ABOUT PAGE / TEAM CARDS
   ══════════════════════════════════════════ */
.bz-team-card {
  background: #fff;
  border-radius: var(--bz-radius);
  overflow: hidden;
  box-shadow: var(--bz-shadow);
  border: 1px solid var(--bz-border);
  transition: var(--bz-transition);
  text-align: center;
}
.bz-team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--bz-shadow-lg);
}
.bz-team-card .team-img {
  height: 200px;
  overflow: hidden;
  background: var(--bz-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--bz-primary);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bz-team-card .team-body { padding: 20px; }
.bz-team-card h6 { font-weight: 700; color: var(--bz-dark); margin-bottom: 4px; }
.bz-team-card small { color: var(--bz-primary); font-size: .78rem; font-weight: 600; }
.bz-team-card .team-social { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.bz-team-card .team-social a {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--bz-light);
  color: var(--bz-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: var(--bz-transition);
}
.bz-team-card .team-social a:hover { background: var(--bz-primary); color: #fff; }

/* ══════════════════════════════════════════
   BLOG DETAIL
   ══════════════════════════════════════════ */
.bz-blog-detail .blog-content { font-size: 1rem; line-height: 1.85; color: var(--bz-dark); }
.bz-blog-detail .blog-content h2, .bz-blog-detail .blog-content h3 { color: var(--bz-dark); margin-top: 2rem; }
.bz-blog-detail .blog-content img { border-radius: 10px; margin: 1rem 0; }
.bz-blog-detail blockquote {
  border-left: 4px solid var(--bz-primary);
  background: var(--bz-primary-light);
  padding: 16px 20px;
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--bz-dark);
}
.blog-sidebar .sidebar-widget {
  background: #fff;
  border-radius: var(--bz-radius);
  padding: 24px;
  box-shadow: var(--bz-shadow);
  border: 1px solid var(--bz-border);
  margin-bottom: 24px;
}
.blog-sidebar .sidebar-widget h6 {
  font-weight: 700;
  color: var(--bz-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bz-primary-light);
}

/* ══════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════ */
.btn-primary-bz {
  background: var(--bz-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 28px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--bz-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-bz:hover {
  background: var(--bz-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22,163,74,.35);
}
.btn-outline-bz {
  background: transparent;
  color: var(--bz-primary);
  border: 2px solid var(--bz-primary);
  border-radius: 8px;
  padding: 9px 26px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--bz-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-bz:hover {
  background: var(--bz-primary);
  color: #fff;
}
.text-primary-bz { color: var(--bz-primary) !important; }
.text-dark-bz    { color: var(--bz-dark)    !important; }
.text-gold       { color: var(--bz-accent)    !important; }
.bg-light-bz     { background: var(--bz-light); }

/* form controls */
.form-control:focus,
.form-select:focus {
  border-color: var(--bz-primary);
  box-shadow: 0 0 0 3px rgba(22,163,74,.18);
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bz-primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(22,163,74,.4);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--bz-transition);
  z-index: 999;
}
#backToTop:hover { background: var(--bz-primary-dark); transform: translateY(-3px); }
#backToTop.show { display: flex; }

/* Timeline */
.timeline { position: relative; padding: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--bz-primary-light);
  transform: translateX(-50%);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bz-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--bz-primary-light);
  z-index: 1;
}
.timeline-content {
  background: #fff;
  border-radius: var(--bz-radius);
  padding: 20px 24px;
  box-shadow: var(--bz-shadow);
  border: 1px solid var(--bz-border);
  width: 45%;
}
.timeline-item:nth-child(odd) .timeline-content { margin-left: 55%; }
.timeline-item:nth-child(even) .timeline-content { margin-right: 55%; }
.timeline-year {
  font-size: .78rem;
  font-weight: 700;
  color: var(--bz-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Gallery grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item {
  border-radius: var(--bz-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bz-light);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Responsive tweaks */
@media (max-width: 1199.98px) {
  .bz-hero h1 { font-size: 3rem; }
  .bz-about-img-wrap img { height: 400px; }
}

@media (max-width: 991.98px) {
  .bz-navbar .navbar-collapse {
    background: var(--bz-dark);
    padding: 14px;
    border-radius: 0 0 12px 12px;
    margin-top: 8px;
  }
  .bz-hero { min-height: auto; padding: 120px 0 60px; }
  .bz-hero-img { margin-top: 40px; display: block !important; }
  .bz-about-badge-float { left: 10px; bottom: 20px; }
  .bz-about-img-wrap img { height: 350px; }
  .step-connector { display: none; }
  .section-pad { padding: 60px 0; }
  .bz-stats-bar { padding: 30px 0; }
  .bz-stat-item .stat-number { font-size: 2rem; }
  .timeline::before { left: 20px; }
  .timeline-dot { left: 20px; }
  .timeline-content { width: 80%; margin-left: 50px !important; margin-right: 0 !important; }
}

@media (max-width: 767.98px) {
  .section-title { font-size: 1.75rem; }
  .bz-hero h1 { font-size: 2.5rem; }
  .bz-hero-badge { font-size: .7rem; padding: 4px 12px; }
  .bz-search-widget { padding: 20px; }
  .bz-cta h2 { font-size: 1.6rem; }
  .btn-cta-primary, .btn-cta-outline { width: 100%; justify-content: center; }
  .bz-footer { text-align: left; }
  .bz-footer h6 { margin-top: 20px; }
  .bz-footer .footer-links a { justify-content: flex-start; }
  .footer-contact li { justify-content: flex-start; flex-direction: row; align-items: flex-start; }
  .footer-social { justify-content: flex-start; }
}

@media (max-width: 575.98px) {
  .bz-hero h1 { font-size: 2.1rem; }
  .section-title { font-size: 1.5rem; }
  .bz-hero { padding: 100px 0 40px; }
  .bz-booking-steps { flex-direction: column; }
  .booking-step { border-right: none; border-bottom: 1px solid var(--bz-border); padding: 10px; }
  .bz-stat-item { margin-bottom: 15px; }
  .bz-vehicle-card .vehicle-img { height: 180px; }
  .bz-about-badge-float { position: relative; left: 0; bottom: 0; margin-top: 20px; width: fit-content; margin-left: auto; margin-right: auto; }
}
