
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  margin-top: 80px;
  background-color: black;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden; 
}

html {
    scroll-behavior: smooth;
}


/* ================= NAV BAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: black;

}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    z-index: 1000;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    margin-right: 30px;
    text-align: center;
    gap: 20px;        
    margin-bottom: 10px;
    flex-wrap: nowrap; 
    white-space: nowrap;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    margin-top: 15px;
    position: relative;

}

.book-btn {
    background-color: rgb(217, 90, 0);
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-family: 'Roboto', sans-serif;
}
.navbar .login-btn {
    width: auto;           
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    background: rgb(217, 90, 0);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    white-space: nowrap;
    margin-top: 15px;      
    letter-spacing: 0.05em;
    transition: 0.3s ease;
}

.navbar .login-btn:hover {
    background: rgb(255, 120, 0);
}

/* animated line */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: rgb(217, 90, 0);
    transition: width 0.3s ease;
}

/* hover */
.nav-links a:hover::after {
    width: 100%;
}

.book-btn:hover {
    background-color: rgb(255, 120, 0);
}

.book-btn a::after {
    display: none;
}

.logo img {
    width: 100px;
    height: 100px;
    margin-left: 50px;
}


/* NAV AUTH GROUP */
.nav-auth {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.nav-login-btn {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgb(217, 90, 0);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 8px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav-login-btn:hover {
  background: rgb(217, 90, 0);
  color: #fff;
}

.nav-login-btn::after {
  display: none;
}

.auth-welcome {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.nav-bookings-btn {
  font-size: 13px;
  font-weight: 700;
  color: rgb(217, 90, 0);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1.5px solid rgb(217, 90, 0);
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav-bookings-btn:hover {
  background: rgb(217, 90, 0);
  color: #fff;
}

.nav-bookings-btn::after,
.nav-logout-btn::after {
  display: none;
}

.nav-logout-btn {
  font-size: 13px;
  font-weight: 700;
  color: #e74c3c;
  background: transparent;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1.5px solid #e74c3c;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav-logout-btn:hover {
  background: #e74c3c;
  color: #fff;
}

.nav-login-btn {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: transparent;
  border: 1.5px solid #f7931e;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 8px;
  transition: 0.25s ease;
  white-space: nowrap;
  margin-top: 15px;
}

.nav-login-btn:hover {
  background: #f7931e;
  color: #fff;
}

.nav-login-btn::after,
.nav-username-btn::after {
  display: none;
}

.nav-username-btn {
  font-size: 13px;
  font-weight: 700;
  color: #f7931e;
  text-decoration: none;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1.5px solid #f7931e;
  transition: 0.25s ease;
  white-space: nowrap;
  margin-top: 15px;
}

.nav-username-btn:hover {
  background: #f7931e;
  color: #fff;
}

/* ================= HOME ================= */

.home {
  background-image: url('assets/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  gap: 10px;
}

.hero h2 {
  color: white;
  font-size: clamp(22px, 5vw, 55px);
  line-height: 1.2;
}

.fleets-btn {
  margin-top: 20px;
}

.fleets-btn a {
  font-size: clamp(13px, 2vw, 15px);
  color: white;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.fleets-btn a:hover {
  background-color: white;
  color: black;
}

/* ================= ABOUT ================= */

#about {
  scroll-margin-top: 100px;
}

article.about {
  background: #000;
  color: #fff;
  padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 50px);
  max-width: 1100px;
  margin: 0 auto;
}

.who,
.mission {
  display: flex;
  flex-direction: column;
}

.who h2,
.mission h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  margin-bottom: clamp(10px, 1.5vw, 15px);
}

.who p,
.mission p {
  font-size: clamp(13px, 1.5vw, 17px);
  line-height: 1.7;
  opacity: 0.9;
  text-align: justify;
}

.who strong {
  color: #f7931e;
}

/* ================= CLIENT SECTION ================= */

.clients {
  background: #f5f5f5;
  color: #000;
  text-align: center;
  padding: clamp(30px, 5vw, 50px) 20px;
}

.clients h2 {
  font-size: clamp(20px, 3.5vw, 40px);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 10px;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(30px, 6vw, 100px);
}

.client-logos img {
  max-width: clamp(100px, 18vw, 190px);
  height: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

.client-logos img:hover {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

.nav-login-btn,
  .nav-username-btn {
    text-align: center;
    width: 70%;
    margin: 15px 0;
    display: block;

    }

  body {
    margin-top: 70px;
  }

  .logo img {
    width: 70px;
    height: 70px;
    margin-left: 10px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    z-index: 1100;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .nav-links .book-btn {
    width: 70%;
    margin: 15px 0;
    font-size: 20px;
  }

  .nav-links a {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 500;
  }

  .nav-links .book-btn a {
    display: block;
    width: 100%;
    text-align: center;
    background-color: rgb(217, 90, 0);
    color: black;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }

  .home {
    background-attachment: scroll; /* fixed causes bugs on iOS */
    height: 100svh;               /* safer than 100vh on mobile */
  }

  article.about {
    grid-template-columns: 1fr;   /* stack the two columns */
  }

  .who,
  .mission {
    padding: 10px 0;
  }

  .client-logos {
    gap: 30px;
  }

  
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: clamp(20px, 7vw, 28px);
  }

  .fleets-btn a {
    font-size: 13px;
    padding: 9px 18px;
  }

  .who,
  .mission {
    background-color: black;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .who h2,
  .mission h2 {
    font-size: 20px;
  }

  .who p,
  .mission p {
    font-size: 14px;
  }

  .clients h2 {
    font-size: 18px;
  }

  .client-logos img {
    max-width: 90px;
  }
}
/* ================= SERVICES ================= */


.services-hero h1 {
  font-size: 40px;
  text-align: center;
  color: #fff;
}

.services-hero p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.85;
  text-align: center;
  color: #fff;

}

/* CARDS */
.services-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 50px 20px;
}

.services-cards .card {
  background: #0d0d0d;
  padding: 25px;
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  outline: 1px solid #f7931e;
}

.services-cards .card:hover {
  transform: translateY(-5px);
}

.services-cards .card .service-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.services-cards .card h3 {
  margin-bottom: 10px;
  color: #fff;
}

.services-cards .card p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
  }

  .services-cards .card {
    max-width: 100%;
  }

  .services-hero h1 {
    font-size: 32px;
  }

  .services-hero p {
    font-size: 15px;
  }
}
/* ================= SERVICES PAGE ================= */
.services-hero h1 {
  font-size: clamp(24px, 4vw, 40px);
  text-align: center;
  color: #fff;
}

.services-hero p {
  margin-top: 10px;
  font-size: clamp(14px, 2vw, 18px);
  opacity: 0.85;
  text-align: center;
  color: #fff;
}

.services-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 50px 20px;
}

.services-cards .card {
  background: #0d0d0d;
  padding: 25px;
  width: 100%;
  max-width: 250px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
  outline: 1px solid #f7931e;
}

.services-cards .card:hover {
  transform: translateY(-5px);
}

.services-cards .card .service-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.services-cards .card h3 {
  margin-bottom: 10px;
  color: #fff;
}

.services-cards .card p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

/* ================= CONTACT ================= */
.contact-hero {
    height: 50vh;
    background-image: url("assets/background.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero .overlay {
  background: rgba(0, 0, 0, 0.55);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px;
    color: #fff;
}

.contact-hero h1 {
    font-size: 50px;
    text-align: center;
    
}

.contact-hero p {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.85;
    text-align: center;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 50px 20px;
}

.card {
    background: #0d0d0d;
    padding: 25px;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: 0.3s;
    outline: 1px solid #f7931e;
}


.card h3 {
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    margin-bottom: 5px;
}

.card span {
    font-size: 13px;
    opacity: 0.7;
    display: block;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f7931e;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #ffa733;
}
/* ===========================================
   FLEETS PAGE STYLES
   =========================================== */
   
/* ================= FLEETS PAGE ================= */

.fleets-hero {
  height: 50vh;
  background-image: url('assets/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleets-hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.fleets-hero-overlay h1 {
  color: #fff;
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.fleets-hero-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(13px, 2vw, 18px);
}

.fleets-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* FLEET CARD */
.fleet-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  padding: 36px 32px;
  margin-bottom: 40px;
  transition: box-shadow 0.3s ease;
}

.fleet-card:hover {
  box-shadow: 0 10px 32px rgba(247, 147, 30, 0.15);
}

.fleet-card-top {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.fleet-card-top.reverse {
  flex-direction: row-reverse;
}

.fleet-img-wrap {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
  border-radius: 14px;
  padding: 20px;
}

.fleet-img {
  width: 100%;
  max-width: 280px;
  height: 220px;
  object-fit: contain;
  transition: transform 0.4s ease;
  transform: rotate(-1deg);
}

.fleet-img-wrap:hover .fleet-img {
  transform: scale(1.05) rotate(-3deg);
}

.fleet-info {
  flex: 2;
  min-width: 240px;
}

.fleet-info h2 {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.fleet-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.fleet-badge {
  display: inline-block;
  background: #f7931e;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.fleet-badge.medium { background: #3498db; }
.fleet-badge.light  { background: #27ae60; }

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 3px solid #f7931e;
}

.spec-icon  { font-size: 18px; }

.spec-label {
  font-size: 11px;
  color: #aaa;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fleet-tag {
  background: #fff3e0;
  color: #f7931e;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid #f7931e;
}

.fleet-views {
  display: flex;
  gap: 16px;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  flex-wrap: wrap;
}

.fleet-view-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
}

.fleet-view-item img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
}

.fleet-view-item span {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fleets-cta {
  text-align: center;
  background: linear-gradient(135deg, #f7931e, #ffad33);
  border-radius: 18px;
  padding: 48px 32px;
  margin-top: 20px;
}

.fleets-cta h3 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.fleets-cta p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 24px;
}

.fleets-cta-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.fleets-cta-btn:hover {
  background: #333;
  transform: translateY(-2px);
}



/* -------------------------------------------
   HERO
   ------------------------------------------- */
.fleets-hero {
  height: 50vh;
  background-image: url('assets/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleets-hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.fleets-hero-overlay h1 {
  color: #fff;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.fleets-hero-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 2vw, 18px);
}


/* -------------------------------------------
   SECTION WRAPPER
   ------------------------------------------- */
.fleets-section {
  background: #f4f4f4;
  padding: 60px 20px;
  max-width: 1510px;
  margin: 0 auto;
}


/* -------------------------------------------
   FLEET CARD
   ------------------------------------------- */
.fleet-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  padding: 36px 32px;
  margin-bottom: 40px;
  transition: box-shadow 0.3s ease;
  margin: 60px
}

.fleet-card:hover {
  box-shadow: 0 10px 32px rgba(247, 147, 30, 0.15);
}

/* Top row: image + info */
.fleet-card-top {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.fleet-card-top.reverse {
  flex-direction: row-reverse;
}


/* -------------------------------------------
   FLEET IMAGE
   ------------------------------------------- */
.fleet-img-wrap {
  flex: 1;
  min-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
  border-radius: 14px;
  padding: 20px;
}

.fleet-img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: contain;
  transition: transform 0.4s ease;
      transform: rotate(-1deg);
}

.fleet-img-wrap:hover .fleet-img {
  transform: scale(1.05) rotate(-3deg);
}


/* -------------------------------------------
   FLEET INFO
   ------------------------------------------- */
.fleet-info {
  flex: 2;
  min-width: 260px;
}

.fleet-info h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.fleet-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}


/* -------------------------------------------
   BADGE
   ------------------------------------------- */
.fleet-badge {
  display: inline-block;
  background: #f7931e;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.fleet-badge.medium { background: #3498db; }
.fleet-badge.light  { background: #27ae60; }


/* -------------------------------------------
   SPECS GRID
   ------------------------------------------- */
.fleet-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 3px solid #f7931e;
}

.spec-icon  { font-size: 18px; }

.spec-label {
  font-size: 11px;
  color: #aaa;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-value {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}


/* -------------------------------------------
   TAGS
   ------------------------------------------- */
.fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fleet-tag {
  background: #fff3e0;
  color: #f7931e;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid #f7931e;
}


/* -------------------------------------------
   ADDITIONAL VIEWS (side / back)
   ------------------------------------------- */
.fleet-views {
  display: flex;
  gap: 16px;
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.fleet-view-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
}

.fleet-view-item img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  border-radius: 8px;
}

.fleet-view-item span {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* -------------------------------------------
   CTA BANNER
   ------------------------------------------- */
.fleets-cta {
  text-align: center;
  background: linear-gradient(135deg, #f7931e, #ffad33);
  border-radius: 18px;
  padding: 48px 32px;
  margin: 60px;
}

.fleets-cta h3 {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.fleets-cta p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 24px;
}

.fleets-cta-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.fleets-cta-btn:hover {
  background: #333;
  transform: translateY(-2px);
}


/* -------------------------------------------
   RESPONSIVE
   ------------------------------------------- */
@media (max-width: 768px) {
  .fleet-card {
    padding: 24px 18px;
  }

  .fleet-card-top,
  .fleet-card-top.reverse {
    flex-direction: column;
  }

  .fleet-specs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .fleet-specs {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-views {
    flex-direction: column;
  }
}

/* ================= BOOKING SECTION ================= */

.booking-section {
    background: #f4f4f4;
    padding: 60px 20px;
}

.booking-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* BOOKING TOP BAR: title + auth side by side */
.booking-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 35px;
}

.booking-top-bar h2 {
    font-size: 38px;
    color: #111;
    margin: 0;
    text-transform: capitalize;
}

/* AUTH BUTTONS GROUP */
.booking-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.auth-welcome {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    white-space: nowrap;
}

.auth-login-btn {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #f7931e;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    transition: 0.25s ease;
    white-space: nowrap;
}

.auth-login-btn:hover {
    background: #e07c10;
    box-shadow: 0 4px 12px rgba(247,147,30,0.3);
}

.auth-bookings-btn {
    font-size: 13px;
    font-weight: 700;
    color: #f7931e;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid #f7931e;
    transition: 0.25s ease;
    white-space: nowrap;
}

.auth-bookings-btn:hover {
    background: #f7931e;
    color: #fff;
}

.auth-logout-btn {
    font-size: 13px;
    font-weight: 700;
    color: #e74c3c;
    background: transparent;
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid #e74c3c;
    cursor: pointer;
    transition: 0.25s ease;
    white-space: nowrap;
}

.auth-logout-btn:hover {
    background: #e74c3c;
    color: #fff;
}

/* FORM LAYOUT */
.booking-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

/* COLUMNS */
.form-column h3,
.special-requirements h3 {
    font-size: 18px;
    font-weight: 800;
    color: #222;
    margin-bottom: 12px;
}

/* INPUTS */
.input-group {
    margin-bottom: 16px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #d0d0d0;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    background: #fff;
    transition: 0.3s ease;
    box-sizing: border-box;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #f7931e;
    box-shadow: 0 0 0 4px rgba(247, 147, 30, 0.15);
}

/* DATE ROW */
.date-row {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.date-row .input-group {
    flex: 1;
}

/* CHECKBOX GROUP */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 4px;
}

/* DISTANCE INPUT */
.distance-group {
    margin-top: 14px;
}

.distance-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.distance-hint {
    font-size: 11px;
    font-weight: 400;
    color: #aaa;
    margin-left: 6px;
}

.distance-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.distance-row input {
    flex: 1;
}

.distance-unit {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    flex-shrink: 0;
}

/* SPECIAL REQUIREMENTS */
.special-requirements textarea {
    min-height: 120px;
    resize: vertical;
}

/* TRUCK IMAGE */
.truck-sticker {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}

.truck-sticker img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: inline-block;
}

/* ESTIMATE BUTTON */
.estimate-btn {
    grid-column: 1 / -1;
    background: #fff;
    color: #f7931e;
    border: 2px solid #f7931e;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 900;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 0.04em;
}

.estimate-btn:hover {
    background: #fff8f0;
    box-shadow: 0 4px 14px rgba(247, 147, 30, 0.25);
    transform: translateY(-1px);
}

/* ESTIMATE RESULT */
.estimate-result {
    grid-column: 1 / -1;
    background: #fff8f0;
    border: 1.5px solid #f7931e;
    border-radius: 14px;
    padding: 24px 28px;
    animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.estimate-header {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0d5b0;
}

.estimate-grid {
    display: flex;
    flex-direction: column;
}

.estimate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 14px;
    color: #333;
    border-bottom: 1px dashed #f0d5b0;
}

.estimate-row:last-child { border-bottom: none; }

.estimate-row span:first-child {
    color: #666;
    flex-shrink: 0;
}

.estimate-row span:last-child {
    font-weight: 600;
    color: #111;
    text-align: right;
    max-width: 65%;
}

.estimate-divider {
    height: 2px;
    background: linear-gradient(to right, #f7931e, #ffad33);
    border-radius: 99px;
    margin: 10px 0;
}

.estimate-total {
    font-size: 17px !important;
    font-weight: 900 !important;
    padding-top: 12px !important;
}

.estimate-total span:last-child {
    color: #f7931e !important;
    font-size: 20px;
}

.estimate-disclaimer {
    font-size: 12px;
    color: #aaa;
    margin-top: 16px;
    line-height: 1.6;
    text-align: center;
}

/* CONFIRM BUTTON */
.booking-btn {
    grid-column: 1 / -1;
    background: linear-gradient(to right, #f7931e, #ffad33);
    color: #111;
    border: none;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 900;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 6px 18px rgba(247, 147, 30, 0.35);
}

.booking-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(to right, #ff9f2e, #ffb84d);
}

/* hide old bars if still present */
.my-bookings-bar,
.user-bar {
    display: none !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .booking-form { grid-template-columns: 1fr 1fr; }
    .booking-top-bar h2 { font-size: 28px; }
}

@media (max-width: 600px) {
    .booking-form { grid-template-columns: 1fr; }
    .booking-top-bar { flex-direction: column; align-items: flex-start; }
    .date-row { flex-direction: column; gap: 0; }
    .estimate-row { flex-direction: column; align-items: flex-start; gap: 4px; }
    .estimate-row span:last-child { max-width: 100%; text-align: left; }
}



/* ================= MY BOOKINGS BAR ================= */

.my-bookings-bar {
    background: #fff;
    border-bottom: 1.5px solid #eee;
    padding: 10px 20px;
}

.my-bookings-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-bookings-inner span {
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

.my-bookings-btn {
    background: #f7931e;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.my-bookings-btn:hover {
    background: #e07c10;
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.3);
}


.my-bookings-bar {
    position: fixed;
    top: 150px; /* adjust to sit just below your navbar height */
    right: 20px;
    z-index: 999;
    background: transparent;
    border-bottom: none;
    padding: 0;
    width: auto;
}

.my-bookings-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    border: 1.5px solid #eee;
}

.mybookings-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logout-btn {
  font-size: 13px;
  font-weight: 700;
  color: #e74c3c;
  background: transparent;
  padding: 8px 18px;
  border-radius: 8px;
  border: 1.5px solid #e74c3c;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.nav-logout-btn:hover {
  background: #e74c3c;
  color: #fff;
}

/* ================= USER BAR ================= */

.user-bar {
    background: #fff;
    border-bottom: 1.5px solid #eee;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.user-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* LEFT SIDE */
.user-bar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-bar-welcome {
    font-size: 13px;
    font-weight: 700;
    color: #444;
}

.user-bar-link {
    font-size: 13px;
    font-weight: 700;
    color: #f7931e;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 7px;
    border: 1.5px solid #f7931e;
    transition: 0.25s ease;
}

.user-bar-link:hover {
    background: #f7931e;
    color: #fff;
}

/* RIGHT SIDE */
.user-bar-right {
    display: flex;
    align-items: center;
}

.user-bar-login-btn {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #f7931e;
    text-decoration: none;
    padding: 7px 18px;
    border-radius: 7px;
    border: none;
    transition: 0.25s ease;
}

.user-bar-login-btn:hover {
    background: #e07c10;
    box-shadow: 0 4px 12px rgba(247,147,30,0.3);
}

.user-bar-logout-btn {
    font-size: 13px;
    font-weight: 700;
    color: #e74c3c;
    background: transparent;
    padding: 7px 18px;
    border-radius: 7px;
    border: 1.5px solid #e74c3c;
    cursor: pointer;
    transition: 0.25s ease;
}

.user-bar-logout-btn:hover {
    background: #e74c3c;
    color: #fff;
}

/* hide old floating bar if still present */
.my-bookings-bar {
    display: none !important;
}

/* ================= MY BOOKINGS PAGE ================= */

.mybookings-section {
    background: #f4f4f4;
    min-height: 80vh;
    padding: 50px 20px;
}

.mybookings-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.mybookings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 14px;
}

.mybookings-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 4px;
}

.mybookings-header p {
    font-size: 14px;
    color: #888;
}

.new-booking-btn {
    background: #f7931e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
}

.new-booking-btn:hover {
    background: #e07c10;
}

/* FILTER TABS */
.filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 20px;
    border-radius: 99px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    transition: 0.25s ease;
}

.filter-tab.active {
    background: #f7931e;
    border-color: #f7931e;
    color: #fff;
}

.filter-tab:hover:not(.active) {
    border-color: #f7931e;
    color: #f7931e;
}

/* BOOKING CARD */
.booking-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-left: 5px solid #ddd;
    transition: 0.3s ease;
    animation: fadeSlide 0.3s ease;
}

.booking-card.status-pending  { border-left-color: #f7931e; }
.booking-card.status-approved { border-left-color: #27ae60; }
.booking-card.status-cancelled{ border-left-color: #e74c3c; }

.booking-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.booking-card-id {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 4px;
}

.booking-card-route {
    font-size: 17px;
    font-weight: 800;
    color: #111;
}

.booking-card-route span {
    color: #f7931e;
    margin: 0 6px;
}

.status-badge {
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.status-badge.pending   { background: #fff3e0; color: #f7931e; }
.status-badge.approved  { background: #e8f8f0; color: #27ae60; }
.status-badge.cancelled { background: #fdecea; color: #e74c3c; }

.booking-card-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px 20px;
    margin-bottom: 16px;
}

.booking-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.booking-detail-label {
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.booking-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.booking-card-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cancel-booking-btn {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid #e74c3c;
    background: transparent;
    color: #e74c3c;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.cancel-booking-btn:hover {
    background: #e74c3c;
    color: #fff;
}

.view-details-btn {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1.5px solid #f7931e;
    background: transparent;
    color: #f7931e;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.view-details-btn:hover {
    background: #f7931e;
    color: #fff;
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 24px;
}

/* CANCEL MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 20px;
}

.modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    animation: fadeSlide 0.3s ease;
}

.modal-icon {
    font-size: 42px;
    margin-bottom: 14px;
}

.modal-box h3 {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.modal-box p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-cancel-btn {
    flex: 1;
    padding: 11px;
    border-radius: 8px;
    border: 1.5px solid #ddd;
    background: transparent;
    color: #555;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.25s ease;
}

.modal-cancel-btn:hover {
    background: #f5f5f5;
}

.modal-confirm-btn {
    flex: 1;
    padding: 11px;
    border-radius: 8px;
    border: none;
    background: #e74c3c;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.25s ease;
}

.modal-confirm-btn:hover {
    background: #c0392b;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .mybookings-header { flex-direction: column; }
    .booking-card-top  { flex-direction: column; }
    .booking-card-details { grid-template-columns: 1fr 1fr; }
    .booking-card-actions { justify-content: stretch; }
    .cancel-booking-btn,
    .view-details-btn { flex: 1; text-align: center; }
}




/* ================= LOGIN ================= */

.overlay {
    background-color: rgba(0,0,0,0.6);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-box {
    background: rgba(0, 0, 0, 0.9);
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    border: 2px solid rgb(217, 90, 0);
    text-align: center;
    color: white;
}

.login-box h2 {
    margin-bottom: 16px;
    font-size: 20px;
    letter-spacing: 0.05em;
}

.login-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: white;
    box-sizing: border-box;
}

.login-box input:focus {
    outline: none;
    border-color: rgb(217, 90, 0);
}

.remember {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 15px 0;
    color: white;
    font-size: 14px;
}

.remember input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin: 0;
}

.remember label {
    cursor: pointer;
}

.login-btn {
    width: 100%;
    padding: 10px;
    background-color: rgb(217, 90, 0);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: 0.3s ease;
}

.login-btn:hover {
    background-color: rgb(255, 120, 0);
}

.forgot {
    margin-top: 12px;
    font-size: 13px;
    color: rgb(217, 90, 0);
    cursor: pointer;
}

.forgot a {
    color: rgb(217, 90, 0);
    text-decoration: none;
}

.forgot a:hover {
    text-decoration: underline;
}

#error,
#guestError,
#registerError {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 10px;
}

.success-message {
    color: #6bffb8;
    font-size: 13px;
    margin-top: 10px;
}
/* ================= LOGIN PAGE ================= */

.login-page {
    background: #f5f5f5;
}

.overlay {
    background-color: rgba(255, 255, 255, 0.5);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.login-box {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    width: 320px;
    border: 1.5px solid #e0e0e0;
    text-align: center;
    color: #111;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.login-box h2 {
    margin-bottom: 16px;
    font-size: 20px;
    letter-spacing: 0.06em;
    color: #111;
}

.login-box input {
    width: 100%;
    padding: 11px 14px;
    margin: 8px 0;
    background: #f9f9f9;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    color: #111;
    font-size: 14px;
    box-sizing: border-box;
    transition: 0.3s ease;
}

.login-box input::placeholder {
    color: #aaa;
}

.login-box input:focus {
    outline: none;
    border-color: rgb(217, 90, 0);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(217, 90, 0, 0.1);
}

/* REMEMBER ME */
.remember {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 12px 0;
    color: #444;
    font-size: 14px;
}

.remember input {
    width: 15px;
    height: 15px;
    margin: 0;
    cursor: pointer;
    accent-color: rgb(217, 90, 0);
    border: none;
    background: none;
    box-shadow: none;
}

.remember input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.remember label {
    cursor: pointer;
    color: #444;
}

/* BUTTONS */
.login-btn {
    width: 100%;
    padding: 11px;
    background: rgb(217, 90, 0);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: 0.3s ease;
    margin-top: 4px;
}

.login-btn:hover {
    background: rgb(245, 110, 10);
    box-shadow: 0 4px 14px rgba(217, 90, 0, 0.3);
}

/* FORGOT */
.forgot {
    margin-top: 12px;
    font-size: 13px;
}

.forgot a {
    color: rgb(217, 90, 0);
    text-decoration: none;
}

.forgot a:hover {
    text-decoration: underline;
}

/* ERRORS & SUCCESS */
#error,
#guestError,
#registerError {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 10px;
}

.success-message {
    color: #27ae60;
    font-size: 13px;
    margin-top: 10px;
}

/* ================= LOGIN TABS ================= */

.login-tabs {
    display: flex;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid #e0e0e0;
    background: #f5f5f5;
}

.login-tab {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: none;
    color: #888;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    letter-spacing: 0.05em;
}

.login-tab:first-child {
    border-right: 1.5px solid #e0e0e0;
}

.login-tab.active {
    background: rgb(217, 90, 0);
    color: #fff;
}

.login-tab:hover:not(.active) {
    background: rgba(217, 90, 0, 0.08);
    color: rgb(217, 90, 0);
}

/* ================= GUEST PANEL ================= */

.guest-note {
    font-size: 13px;
    color: #777;
    margin-bottom: 18px;
    line-height: 1.6;
    text-align: left;
}

.guest-btn {
    background: transparent;
    border: 2px solid rgb(217, 90, 0);
    color: rgb(217, 90, 0);
    font-weight: 700;
    transition: 0.3s ease;
}

.guest-btn:hover {
    background: rgb(217, 90, 0);
    color: #fff;
}

/* ================= REGISTER PROMPT ================= */

.register-divider {
    display: flex;
    align-items: center;
    margin: 20px 0 14px;
    gap: 10px;
    color: #bbb;
    font-size: 13px;
}

.register-divider::before,
.register-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

.register-prompt p {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.register-btn {
    width: 100%;
    padding: 11px;
    background: transparent;
    border: 2px solid rgb(217, 90, 0);
    border-radius: 8px;
    color: rgb(217, 90, 0);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: 0.3s ease;
}

.register-btn:hover {
    background: rgb(217, 90, 0);
    color: #fff;
}

/* ================= BACK TO LOGIN ================= */

.back-to-login {
    margin-top: 16px;
    font-size: 13px;
    color: #888;
}

.back-to-login a {
    color: rgb(217, 90, 0);
    text-decoration: none;
    font-weight: 700;
}

.back-to-login a:hover {
    text-decoration: underline;
}

/* ================= GUEST ONLY PAGE ================= */

.guest-only-box {
    width: 300px;
}

.guest-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.guest-continue-btn {
    margin-top: 6px;
    background: transparent;
    border: 2px solid rgb(217, 90, 0);
    color: rgb(217, 90, 0);
    font-weight: 700;
    transition: 0.3s ease;
}

.guest-continue-btn:hover {
    background: rgb(217, 90, 0);
    color: #fff;
}

/* ================= CREATE ACCOUNT PAGE ================= */

.register-box {
    width: 320px;
}

.register-icon {
    font-size: 44px;
    margin-bottom: 10px;
}

.register-submit-btn {
    margin-top: 6px;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 38px;
}

.toggle-pw {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 15px;
    opacity: 0.4;
    user-select: none;
    transition: opacity 0.2s;
}

.toggle-pw:hover {
    opacity: 0.8;
}

.password-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 12px;
}

.strength-track {
    flex: 1;
    height: 5px;
    background: #eee;
    border-radius: 99px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    border-radius: 99px;
    transition: width 0.3s ease, background 0.3s ease;
}

.strength-label {
    font-size: 11px;
    font-weight: 700;
    min-width: 60px;
    text-align: right;
}

.terms-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 12px 0 16px;
    text-align: left;
}

.terms-row input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: rgb(217, 90, 0);
}

.terms-row label {
    font-size: 12px;
    color: #777;
    line-height: 1.5;
    cursor: pointer;
}

.terms-row label a {
    color: rgb(217, 90, 0);
    text-decoration: none;
}

.terms-row label a:hover {
    text-decoration: underline;
}






/* ================== FOOTER ===================*/
.footer {
  background: #0d0d0d;
  color: #ccc;
  padding: 30px 40px;
  font-family: 'Roboto', sans-serif;
}

/* Top section */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
 

/* Left side */
.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-left img {
  width: 70px;
  border-radius: 50%;
}

.footer-left h2 {
  color: white;
  font-size: 20px;
  margin: 0;
}

.footer-left p {
  font-size: 12px;
  color: #aaa;
  margin-top: 5px;
}

/* Right side */
.footer-right {
  display: flex;
  gap: 60px;
}

.footer-column h4 {
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 5px;
}

.footer-column a:hover {
  color: orange;
}

/* Divider */
.footer hr {
  border: none;
  border-top: 1px solid #333;
  margin: 25px 0;
}

/* Bottom */
.footer-bottom {
  text-align: right;
  font-size: 12px;
  color: #aaa;
}

/* Hamburger */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  cursor: pointer;
  margin-right: 20px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
}

/* ================== RESPONSIVENESS ================== */

/* Tablets / Medium Screens - ≤1024px */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 20px;
  }

  /* About section stacks */
  .who, .mission {
    flex: 1 1 100%;
    text-align: center;
  }

  /* Clients logos wrap */
  .client-logos {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  /* Services grid adjusts */
  .service-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-items: center;
  }

  /* Contact cards wrap */
  .contact-cards {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Fleets section adjusts */
  .fleets-container {
    flex-direction: column;
    align-items: center;
    margin: auto;
    padding: 0 20px;
  }

  .top-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .w-content {
    width: 100%;
    text-align: center;
  }

  .other-fleets-card {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .other-fleets-card img {
    width: 100%;
    height: auto;
  }

  /* Booking form adjusts */
  .booking-form {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
/* Mobile - ≤768px */
@media (max-width: 768px) {

  body {
    margin-top: 70px;
  }

  .logo img {
    width: 70px;
    height: 70px;
    margin-left: 10px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 20px;
    cursor: pointer;
    margin-right: 20px;
    z-index: 1200;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    padding: 0;
    text-align: center;
    z-index: 1100;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a, .nav-links .book-btn {
    width: 70%;
    margin: 15px 0;
    font-size: 20px;
  }

  .nav-links a {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 500;
  }

  .nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
  }

  .nav-links .book-btn a {
    display: block;
    width: 100%;
    text-align: center;
    background-color: rgb(217, 90, 0);
    color: black;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }

  .nav-links .book-btn a:hover {
    background-color: rgb(255, 120, 0);
  }

  .home {
    height: 100vh;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }

  .hero {
    height: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  article.about {
    gap: clamp(20px, 3vw, 50px);
    padding: clamp(30px, 5vw, 60px);
  }

  .who, .mission {
    padding: clamp(10px, 2vw, 20px);
  }

  .contact-hero {
    background-attachment: scroll;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .contact-hero h1 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .date-row {
    flex-direction: column;
  }

} /* ← THIS CLOSING BRACE WAS MISSING */


/* Small Phones - ≤480px */
@media (max-width: 480px) {
  .hero h2,
  .clients h2,
  .services h2,
  .fleets-section h2 {
    font-size: 26px;
  }

  .booking-wrapper {
    padding: 20px;
  }

  .who h2, .mission h2 {
    font-size: 24px;
  }

  .who p, .mission p {
    font-size: 14px;
  }

  .who, .mission {
    background-color: black;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
  }
} 

/* ==================CONFIRMATION===================== */
/* ── BOOKING CONFIRMATION BOX (my-bookings page) ── */
.booking-confirmation-box {
    margin-top: 16px;
    border: 2px solid #f5a623;
    border-radius: 10px;
    overflow: hidden;
    background: #fffaf4;
}
.bcb-header {
    background: #e05a00;
    color: #fff;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}
.bcb-badge { font-weight: 700; font-size: 14px; }
.bcb-date  { opacity: 0.85; font-size: 12px; }

.bcb-grid  { padding: 12px 16px; display: flex; flex-direction: column; gap: 6px; }
.bcb-row   { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; border-bottom: 1px solid #f5e9d6; }
.bcb-row:last-child { border-bottom: none; }
.bcb-label { color: #888; }
.bcb-value { font-weight: 600; color: #222; text-align: right; }
.bcb-price { color: #1a7a3c; }

.bcb-highlight { background: #fff3e0; border-radius: 6px; padding: 8px 10px !important; }
.bcb-dp        { color: #e05a00; font-size: 16px; }

.bcb-urgent .bcb-label { color: #c04a00; font-weight: 700; }
.bcb-urgent .bcb-value { color: #c04a00; }

.bcb-terms {
    padding: 12px 16px;
    border-top: 1px solid #f5e9d6;
    background: #fdf6ee;
}
.bcb-terms-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}
.bcb-terms-text {
    font-family: inherit;
    font-size: 12px;
    color: #444;
    white-space: pre-wrap;
    margin: 0;
    line-height: 1.6;
}
.bcb-notes {
    padding: 10px 16px;
    font-size: 13px;
    color: #555;
    border-top: 1px solid #f5e9d6;
    background: #fff9f0;
}

/* ── Progress Updates ── */
/* ── Status Dropdown ── */
/* ── Progress Updates ── */
.bcb-progress {
    background: #fffdf5;
    border-top: 1px dashed #e0c97a;
    padding: 0 16px;
}

.bcb-progress-title {
    font-size: 11px;
    font-weight: 700;
    color: #b7860d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 0 10px;
    margin-bottom: 0;
}

.bcb-progress-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #f0e8e0;  /* matches .bcb-row */
    box-sizing: border-box;
}

.bcb-progress-row:last-child { border-bottom: none; }

.bcb-progress-msg {
    font-size: 13px;
    color: #666;          /* matches .bcb-label */
    flex: 1;
    padding-right: 20px;
    word-break: break-word;
}

.bcb-progress-time {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;       /* matches .bcb-value */
    white-space: nowrap;
    flex-shrink: 0;
}
/* ═══════════════════════════════════════════════════════════════
   DISAPPROVAL NOTICE BOX  (shown on my-bookings page)
   Add this block at the bottom of your style.css
═══════════════════════════════════════════════════════════════ */

/* Status badge — disapproved variant */
.status-badge.disapproved {
    background: #fdecea;
    color: #c0392b;
}

/* Left border accent on the card */
.booking-card.status-disapproved {
    border-left-color: #c0392b;
}

/* ── DISAPPROVAL NOTICE BOX ─────────────────────────────────── */
.booking-disapproval-box {
    margin-top: 20px;
    border-radius: 12px;
    border: 1.5px solid #e8b4b1;
    background: #fdf4f4;
    overflow: hidden;
    animation: fadeSlide 0.35s ease;
}

.bdb-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #c0392b;
    padding: 12px 18px;
}

.bdb-icon {
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.bdb-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.03em;
}

.bdb-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bdb-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bdb-label {
    font-size: 10px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bdb-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.bdb-reason {
    color: #c0392b;
    font-weight: 700;
}

.bdb-footer {
    padding: 10px 18px 14px;
    font-size: 12px;
    color: #999;
    border-top: 1px dashed #e8b4b1;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 480px) {
    .bdb-header { padding: 10px 14px; }
    .bdb-body   { padding: 12px 14px; }
    .bdb-footer { padding: 8px 14px 12px; }
}

