* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

header {
  background: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  max-width: 1200px;
  margin: auto;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s ease;
}

.top-bar {
  background: #f5f5f5;
  padding: 8px 20px;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0,0.08);
}

.top-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.top-contact span {
  display: flex;
  align-items: center;
  color: #007bff;
  font-weight: 500;
}


.booking-container {
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-left: 0%;
}

.trip-toggle {
  display: flex;
  margin-bottom: 1rem;
}

.trip-toggle button {
  flex: 1;
  padding: 10px;
  border: none;
  background: #eee;
  cursor: pointer;
  font-weight: bold;
}

.trip-toggle button.active {
  background: #59341f;
  color: white;
}

form label {
  display: block;
  margin-top: 10px;
  font-weight: 500;
}

form input {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.date-group {
  display: flex;
  gap: 10px;
}

.date-group > div {
  flex: 1;
}

button[type="submit"] {
  background: #007bff;
  color: white;
  padding: 12px;
  margin-top: 15px;
  width: 100%;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
#submit {
  position: relative;
  pointer-events: auto;
  opacity: 1;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #f7f2f2;
  border-top: 2px solid transparent;
  border-radius: 50%;
  margin-left: 10px;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



@media (max-width: 480px) {
  .date-group {
    flex-direction: column;
  }
}
.booking-wrapper {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.booking-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  padding: 1rem;
}

.booking-info h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 1rem;
}

.booking-info p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.booking-info ul {
  list-style: none;
  padding-left: 0;
}

.booking-info ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #007bff;
}

/* Adjust booking form container */
.booking-container {
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  border-radius: 6px;
}

/* Responsive layout */
@media (max-width: 768px) {
  .booking-wrapper {
    flex-direction: column;
    padding: 1rem;
  }

  .booking-info {
    text-align: center;
  }
}
.location-wrapper {
  position: relative;
}

.location-wrapper input {
  width: 100%;
  padding: 10px 36px 10px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.location-wrapper .location-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #007bff;
  pointer-events: none;
}
.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #999;
}

.input-icon input {
  padding-left: 35px;
}


.site-footer {
  background-color: #3b3e51;
  color: #fff;
  padding: 2rem 1.5rem;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  color: #ffc107;
  border-left: 4px solid #00aaff;
  padding-left: 8px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column p,
.footer-column ul li {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  color: #ddd;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
}
.site-footer .contact ul li {
  color: white;
  list-style: none;
  text-decoration: none;
  cursor: pointer;
  margin-left: 6rem;
}

.site-footer .contact ul li a {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.site-footer .contact ul li a:hover {
  text-decoration: underline;
}

.site-footer .contact h3{
  margin-left: 6rem;
}


/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0a8618;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  z-index: 999;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: none;
}
.floating-btn i {
  margin-right: 6px;
}
/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  transition: left 0.3s ease;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
}

.sidebar.open {
  left: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  border-bottom: 1px solid #ddd;
}

.sidebar-header img {
  height: 40px;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  color: #222;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1500;
}

.overlay.show {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }
}
