/* === Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* === Top Contact Bar === */
.top-contact-bar {
  background-color: #003366;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  font-size: 14px;
}

.top-contact-bar i {
  margin: 0 8px;
}

.top-contact-bar .right-icons a {
  color: white;
  margin-left: 10px;
  font-size: 16px;
}

/* === Header === */
.main-header {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.main-header .logo img {
  height: 50px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #003366;
  font-weight: 500;
  transition: border-bottom 0.3s;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
  color: #e60023;
  border-bottom: 2px solid #e60023;
}

.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* === Hero Section === */
.hero {
  position: relative;
  background-image: url("images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-text {
  text-align: center;
  z-index: 1;
  max-width: 700px;
  color: #fff;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.quote-btn {
  background-color: red;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.quote-btn:hover {
  background-color: #cc0000;
}

/* === Footer === */
footer {
  background-color: #001f33;
  color: #f4f4f4;
  padding: 60px 20px 30px;
  font-family: 'Roboto', sans-serif;
}

footer a {
  color: white;
  text-decoration: none;
}

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

footer h3 {
  color: #ff8c00;
  margin-bottom: 10px;
}

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

footer ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background-color: #1a1a1a;
  font-size: 14px;
}

.footer-bottom a {
  color: #ff8c00;
}

/* === Back to Top Button === */
a[href="#top"] {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff8c00;
  color: white;
  padding: 10px 12px;
  border-radius: 50%;
  text-decoration: none;
  z-index: 1000;
}

a[href="#top"]:hover {
  background-color: #e67300;
}

/* === WhatsApp Floating Button === */
a[href*="wa.me"] {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Responsive === */
@media (max-width: 991px) {
  .main-nav {
    display: none;
    width: 100%;
    background: white;
    border-top: 1px solid #ddd;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px;
    z-index: 999;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .mobile-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .quote-btn {
    padding: 10px 20px;
  }

  a[href="#top"] {
    display: none;
  }
}

/* === Slide Animation for Mobile Nav === */
@keyframes slideDown {
  from {
    transform: translateY(-15%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.main-nav.open {
  animation: slideDown 0.3s ease-in-out;
}

/* Overlay for Mobile Menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: height 0.3s ease;
  z-index: 998;
}

.overlay.active {
  height: 100%;
}

/* Highlight active nav link */
.main-nav a.active {
  color: #00baff;
  font-weight: bold;
  border-bottom: 2px solid #00baff;
}
.hero {
  position: relative;
  background:  url('/static/images/kenya-bg.jpg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.55); /* semi-transparent dark layer */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-text {
  text-align: center;
  z-index: 1;
  max-width: 700px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.quote-btn {
  background-color: red;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.quote-btn:hover {
  background-color: #cc0000;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .quote-btn {
    padding: 10px 20px;
  }
}
.main-header .logo img {
  height: 70px;  /* or even 80px */
  max-height: 100px;
  width: auto;
}
.logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo a:hover {
  transform: scale(1.05);
}
/* Contact Section */
.contact-section {
  background-color: #f4f9fc;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #003366;
}

.contact-section p {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form,
.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 400px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #003366;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fefefe;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

.form-submit {
  text-align: right;
}

.quote-btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quote-btn:hover {
  background-color: #0056b3;
}

/* Contact Info Styling */
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #003366;
}

.contact-info p {
  font-size: 1rem;
  color: #444;
  margin: 10px 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: #007bff;
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .form-submit {
    text-align: center;
  }
}
/* ============================
   About Us Section Styling
============================= */

.about-section {
  position: relative;
  background: url('images/about-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 80px 20px;
  overflow: hidden;
}

.about-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  animation: fadeInUp 1s ease-out;
}

/* Text Column */
.about-section h2 {
  font-size: 36px;
  color: #ffae00;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.about-section p strong {
  color: #ffae00;
}

/* Enhance Vision & Mission lines */
.about-section p:nth-last-of-type(2),
.about-section p:last-of-type {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  border-left: 4px solid #ffae00;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Image Styling */
.about-section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.about-section img:hover {
  transform: scale(1.03);
}

/* Background Overlay */
.about-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.5));
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section .container {
    flex-direction: column;
    text-align: center;
  }

  .about-section h2 {
    font-size: 28px;
  }

  .about-section p {
    font-size: 15px;
  }

  .about-section img {
    margin-top: 20px;
  }
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#vehicle-passenger-section select,
#vehicle-passenger-section input {
  width: 100%;
  padding: 10px;
  border: 1px solid #b3d4fc;
  border-radius: 6px;
  font-size: 15px;
  background: #fff;
}

#vehicle-passenger-section select:focus,
#vehicle-passenger-section input:focus {
  border-color: #007bff;
  outline: none;
}
/* General Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f8fa;
  margin: 0;
  padding: 0;
  color: #333;
}

.booking-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Heading */
.booking-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #004466;
}

/* Form Fields */
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-form label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  font-size: 14px;
  background-color: #f9f9f9;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #007bff;
  outline: none;
}

/* Full width for single-column fields */
.booking-form .full-width {
  grid-column: span 2;
}

/* Submit Button */
button[type="submit"] {
  grid-column: span 2;
  padding: 12px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

/* Success Alert */
.success-alert {
  background-color: #e6ffed;
  color: #1b6b3a;
  border-left: 5px solid #38c172;
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
}

/* Error Alert */
.error-alert {
  background-color: #ffe6e6;
  color: #a94442;
  border-left: 5px solid #e3342f;
  padding: 15px;
  margin-top: 20px;
  border-radius: 8px;
}

/* Spinner */
.spinner {
  width: 32px;
  height: 32px;
  border: 4px solid #007bff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 20px auto;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Receipt Preview */
#receipt-preview {
  display: none;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #fefefe;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-form {
    grid-template-columns: 1fr;
  }

  button[type="submit"] {
    grid-column: span 1;
  }
}
/* booking.css — Styles only for the booking section */
.booking-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.booking-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #003366;
  margin-bottom: 2rem;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.booking-form .full-width {
  grid-column: 1 / -1;
}

.booking-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #007bff;
  outline: none;
}

.booking-form button[type="submit"] {
  grid-column: 1 / -1;
  padding: 1rem;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-form button[type="submit"]:hover {
  background-color: #0056b3;
}

/* Alerts */
.success-alert,
.error-alert {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}

.success-alert {
  background-color: #e0f9e0;
  color: #2e7d32;
  border: 1px solid #2e7d32;
}

.error-alert {
  background-color: #fdecea;
  color: #c0392b;
  border: 1px solid #c0392b;
}

/* Spinner */
.spinner {
  display: none;
  width: 40px;
  height: 40px;
  margin: 20px auto;
  border: 4px solid #ccc;
  border-top-color: #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Receipt preview */
#receipt-preview {
  margin-top: 2rem;
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-family: monospace;
  white-space: pre-wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-form {
    grid-template-columns: 1fr;
  }
}
