/* Global Styles */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #111;
  background-color: #fafafa;
}
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  z-index: 1000;
}

.nav-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c5001a;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.nav-links li {
  margin-left: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #c5001a;
}

h1,
h2,
h3 {
  margin: 0 0 0.5em 0;
  font-weight: 700;
}

section {
  padding: 2rem 1rem;
}

/* Hero Section */
/*
 * Hero Section
 *
 * Reduce the default height slightly so that the page header isn't dominated
 * by the background photo, especially on smaller screens. A 60% viewport
 * height provides a good balance between visual impact and allowing more
 * content to appear above the fold. We retain flexbox centring so text
 * remains centred within the banner. Overflow is hidden to crop
 * oversized images gracefully.
 */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

/* Hero background image via img tag */
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.55);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero p {
  font-size: 1.2rem;
}

/* Extra description in hero section */
.hero-desc {
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About and Services Sections */
.about,
.services {
  background-color: #fff;
  color: #333;
  max-width: 960px;
  margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose {
  background-color: #f9f9f9;
  color: #111;
  max-width: 960px;
  margin: 0 auto;
}

.why-choose h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.why-choose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.why-choose li {
  margin-bottom: 0.6rem;
}

/* Rates Section */
.rates {
  background-color: #fff;
  color: #111;
  max-width: 960px;
  margin: 0 auto;
}

/* Gallery Section */
.gallery {
  background-color: #fff;
  color: #333;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.gallery h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.gallery p {
  max-width: 800px;
  margin: 0.5rem auto 1.5rem auto;
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.gallery-item {
  flex: 1 1 calc(50% - 1rem);
  max-width: 48%;
}
.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .gallery-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.rates h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.rates-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.rates-image {
  flex: 1 1 40%;
  padding: 1rem;
  text-align: center;
}
.rates-image img {
  max-width: 100%;
  height: auto;
}
.rates-table {
  flex: 1 1 60%;
  padding: 1rem;
}
.rates-table table {
  width: 100%;
  border-collapse: collapse;
}
.rates-table th,
.rates-table td {
  padding: 0.75rem 0.5rem;
  border: 1px solid #ddd;
}
.rates-table th {
  background-color: #c5001a;
  color: #fff;
  text-align: left;
}
.rates-table tr:nth-child(even) td {
  background-color: #f7f7f7;
}
.rates-table .note {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-style: italic;
  color: #555;
}

/* Per‑Kilometer Rates Section */
.price-boxes {
  background-color: #f9f9f9;
  color: #111;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.price-boxes h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}
.price-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.price-box {
  flex: 1 1 calc(33.333% - 1rem);
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.price-box h3 {
  color: #c5001a;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.price-box p {
  margin: 0.5rem 0;
  line-height: 1.4;
}
.price-rate {
  font-size: 1.6rem;
  font-weight: bold;
  color: #c5001a;
  margin-top: 0.5rem;
}

/* Section for taxi routes from Ahmedabad */
.city-bookings {
  background-color: #fff;
  color: #111;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/*
 * Generic container for boxed sections
 *
 * Some sections on the booking page require a subtle border and shadow to
 * separate them from the rest of the content. The `.section-box` class
 * centralises this styling. Apply it to any `<section>` that should appear
 * as an individual card-like block (e.g. popular routes, city bookings and
 * other city services). It works with the existing maximum width to keep
 * content centred on large screens while maintaining full width on small
 * screens.
 */
.section-box {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  max-width: 960px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  overflow: hidden;
}
.city-bookings h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}
.city-bookings ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.city-bookings li {
  margin-bottom: 0.8rem;
}
.city-bookings a {
  color: #c5001a;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.city-bookings a:hover {
  color: #a40016;
  text-decoration: underline;
}

/* Cards for popular routes with images */
.route-cards {
  background-color: #f9f9f9;
  color: #111;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.route-cards h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}
.route-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  /*
   * Align cards to the start of the row instead of distributing
   * leftover space. Using `flex-start` ensures that if there are
   * fewer than three cards in the last row, they retain the same
   * width as the others rather than stretching to fill the entire line.
   */
  justify-content: flex-start;
}
.route-card {
  /*
   * Prevent cards from growing to fill the entire row. By setting
   * flex-grow to 0, each card maintains a fixed basis width. This
   * ensures that the last row with fewer items does not stretch
   * disproportionately compared to the others.
   */
  flex: 0 0 calc(33.333% - 1rem);
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/*
 * Route card image sizing
 *
 * Reduce the image height to create a more compact card design. Images will
 * still fill the card width and maintain their aspect ratio thanks to
 * `object-fit: cover`. The `max-height` ensures that images cannot grow
 * beyond the specified value on large screens.
 */
.route-card img {
  width: 100%;
  height: 150px;
  max-height: 150px;
  object-fit: cover;
}
.route-card h3 {
  color: #c5001a;
  margin: 0.5rem;
  font-size: 1.1rem;
}
.route-card a {
  display: inline-block;
  margin: 0.5rem auto 1rem;
  padding: 0.5rem 1rem;
  background-color: #25D366;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.route-card a:hover {
  background-color: #1DA351;
}
@media (max-width: 768px) {
  .route-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .price-box {
    flex: 1 1 100%;
  }
}

/*
 * City taxi services section
 * This section showcases taxi services originating from other major cities.
 * Each city card uses a tinted background image to highlight the destination
 * while keeping text legible. Cards are responsive and stack on small screens.
 */
.city-services {
  background-color: #f9f9f9;
  color: #111;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.city-services h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.city-service-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/*
 * City service cards redesign
 * Each card now contains a separate image element for consistent sizing, followed by
 * content with headings and destination links. Cards are white with a subtle shadow.
 */
.city-service {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /*
   * Keep each city card at a consistent width on larger screens by
   * preventing flex-grow. Without this, the last card in an odd
   * number of items will stretch to occupy the remaining space.
   */
  flex: 0 0 calc(50% - 1rem);
}

/*
 * City service image sizing
 *
 * The height of images in the city service cards is reduced to match the
 * proportions of the redesigned route cards. Using a fixed height keeps
 * the layout consistent across different cards while still cropping
 * appropriately via `object-fit: cover`.
 */
.city-service img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.city-service-content {
  padding: 1rem;
  color: #111;
  flex: 1;
}

.city-service-content h3 {
  color: #c5001a;
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
}

.city-service-content p {
  margin: 0 0 1rem 0;
  line-height: 1.4;
  font-size: 0.9rem;
}

.city-service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.city-service-content li {
  margin-bottom: 0.4rem;
}

.city-service-content a {
  display: inline-block;
  color: #c5001a;
  border: 1px solid #c5001a;
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.city-service-content a:hover {
  background-color: #c5001a;
  color: #fff;
}

@media (max-width: 768px) {
  .city-service {
    flex: 1 1 100%;
  }
}

/* FAQ Section */
.faq {
  background-color: #f9f9f9;
  color: #111;
  max-width: 960px;
  margin: 0 auto;
}
.faq h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

/* Values / Promises Section */
.values {
  background-color: #fff;
  color: #111;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.values h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}
.values-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.value-item {
  flex: 1 1 calc(33.333% - 1rem);
  background-color: #f9f9f9;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.value-item h3 {
  color: #c5001a;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.value-item p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .value-item {
    flex: 1 1 100%;
  }
}
.faq details {
  margin-bottom: 0.8rem;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.75rem 1rem;
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  outline: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: '➕';
  float: right;
}
.faq details[open] summary:after {
  content: '➖';
}
.faq details p {
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Testimonials Section */
.testimonials {
  background-color: #fff;
  color: #111;
  max-width: 960px;
  margin: 0 auto;
}
.testimonials h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}
.testimonial {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #f7f7f7;
  border-radius: 4px;
}
.testimonial .quote {
  font-style: italic;
  margin-bottom: 0.5rem;
}
.testimonial .author {
  font-weight: 600;
  color: #c5001a;
}

/* Footer */
footer {
  /* Use a dark taxi image as the footer background with a translucent overlay for readability */
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/taxi_white_night.jpg') center/cover no-repeat;
  color: #eee;
  font-size: 0.9rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
  justify-content: space-between;
}
.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 30%;
  margin-bottom: 1rem;
}
.footer-about h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-links h4,
.footer-contact h4 {
  color: #c5001a;
  margin-bottom: 0.5rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.4rem;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact a {
  color: #ccc;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #fff;
}
.footer-bottom {
  background-color: #111;
  text-align: center;
  padding: 0.8rem 0;
  font-size: 0.8rem;
}

/* Footer animation */
.footer-animation {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  margin-top: -1rem;
  margin-bottom: 1rem;
}
.footer-animation img {
  position: absolute;
  bottom: 0;
  left: -120px;
  width: 100px;
  height: auto;
  animation: moveTaxi 15s linear infinite;
}
@keyframes moveTaxi {
  0% {
    left: -120px;
  }
  100% {
    left: calc(100% + 120px);
  }
}

/* Footer call and WhatsApp buttons */
.footer-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  background-color: #0a0a0a;
}
.footer-cta .call-btn,
.footer-cta .whatsapp-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.footer-cta .call-btn {
  background-color: #c5001a;
}
.footer-cta .whatsapp-btn {
  background-color: #25D366;
}
.footer-cta .call-btn:hover {
  background-color: #a40016;
}
.footer-cta .whatsapp-btn:hover {
  background-color: #1DA351;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-links li {
    margin-left: 0.5rem;
  }
  .rates-grid {
    flex-direction: column;
  }
  .rates-image,
  .rates-table {
    flex: 1 1 100%;
  }
  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }
}

/* Mobile quick booking form */
/* Hide mobile booking form by default on larger screens */
.mobile-booking-form {
  display: none;
}

/* Show and style mobile booking form on small screens */
@media (max-width: 768px) {
  .mobile-booking-form {
    display: block;
    /* Card styling similar to reference: red box with black border */
    background-color: #c5001a;
    border: 2px solid #000;
    color: #000;
    margin: 1rem;
    padding: 1.2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* Title for the mobile booking form */
  .mobile-booking-title {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    text-align: center;
  }
  /* Booking fields container */
  .mobile-booking-fields {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .mobile-booking-fields input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 30px;
    font-size: 0.95rem;
    background-color: #fff;
    color: #333;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  }
  .mobile-booking-fields input::placeholder {
    color: #888;
  }
  .mobile-booking-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
  }
  .mobile-booking-btn:hover {
    background-color: #222;
  }
}

.about h2,
.services h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.services ul {
  list-style-type: disc;
  padding-left: 1.2rem;
}

.services li {
  margin-bottom: 0.5rem;
}

/* Contact Info Section */
.contact-info {
  background-color: #f2f2f2;
  color: #111;
  max-width: 960px;
  margin: 0 auto;
}

.contact-info h2 {
  color: #c5001a;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.contact-info a {
  color: #c5001a;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
  background-color: #111;
  color: #f2f2f2;
}

.contact-form-section h2 {
  color: #fff;
  border-left: 4px solid #c5001a;
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}

.contact-form-section form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.form-group {
  width: 100%;
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #222;
  color: #f2f2f2;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c5001a;
}

.submit-button {
  width: 100%;
  padding: 0.8rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 4px;
  background-color: #c5001a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #a40016;
}

/* Footer */
footer {
  background-color: #000;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (min-width: 600px) {
  .form-group {
    width: 48%;
    margin-right: 4%;
  }
  .form-group:nth-child(2n) {
    margin-right: 0;
  }
  .form-group.full {
    width: 100%;
  }
}

/* Floating contact buttons on the right side of the viewport */
/*
 * Floating contact buttons
 *
 * Position the call/SMS/WhatsApp buttons lower down the page so that
 * they remain visible even when the hero banner occupies a large portion
 * of the screen on mobile devices. Using the bottom property rather than
 * top ensures the icons never scroll out of view. The column layout is
 * preserved and z‑index keeps the buttons above other content. Adjust
 * bottom percentage as needed for your design.
 */
.contact-floating {
  position: fixed;
  right: 15px;
  bottom: 30%;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/*
 * Floating contact buttons styling
 *
 * Each button is a circle with centred content. We increase the font size
 * slightly so that emoji icons are clearly visible. A subtle shadow gives
 * depth and a hover transform provides visual feedback. The use of
 * `currentColor` in SVGs or emojis ensures the icons inherit the button
 * colour. When adding more buttons, adjust the width and height here.
 */
.contact-floating a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.contact-floating a:hover {
  transform: scale(1.05);
}

.contact-floating .call-btn {
  background-color: #c5001a;
}
.contact-floating .sms-btn {
  background-color: #007bff;
}
.contact-floating .whatsapp-btn {
  background-color: #25D366;
}

/* Contact form card styling */
.contact-form-wrapper {
  background-color: #c5001a;
  padding: 1.5rem 1rem;
  border-radius: 10px;
  color: #fff;
  margin: 2rem auto;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contact-form-wrapper h2 {
  color: #fff;
  text-align: center;
  margin-top: 0;
}
.contact-form-wrapper p {
  color: #ffeaea;
}
.contact-form-wrapper .form-group label {
  color: #fff;
}
.contact-form-wrapper .form-group {
  width: 100% !important;
  margin-bottom: 1rem;
}
.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
  box-sizing: border-box;
}
.contact-form-wrapper .form-group input::placeholder,
.contact-form-wrapper .form-group textarea::placeholder {
  color: #888;
}
.contact-form-wrapper .submit-button {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 30px;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: none;
}
.contact-form-wrapper .submit-button:hover {
  background-color: #222;
}

/* Inline quick booking form styles */
/*
 * The inline booking form provides a compact set of fields laid out in a single row on
 * larger screens. It sits within a dark container with rounded corners and uses
 * the brand accent colour for the call‑to‑action button. On small screens the
 * fields stack vertically to maintain readability.
 */
.inline-booking-form {
  padding: 2rem 1rem;
}

.inline-form-container {
  background-color: #0b1e36;
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.inline-form-container h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
}

.inline-form-container form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

.inline-form-container form input,
.inline-form-container form select {
  flex: 1 1 calc(20% - 0.6rem);
  min-width: 120px;
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}

.inline-form-container form input::placeholder {
  color: #666;
}

.inline-form-container form button {
  width: 100%;
  padding: 0.8rem;
  background-color: #c5001a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 0.5rem;
}

.inline-form-container form button:hover {
  background-color: #a40016;
}

.inline-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 1rem;
}

.inline-steps .step {
  flex: 1 1 33%;
  text-align: center;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.inline-steps .step span {
  font-weight: 700;
  margin-right: 0.3rem;
  color: #c5001a;
}

@media (max-width: 768px) {
  .inline-form-container form input,
  .inline-form-container form select {
    flex: 1 1 100%;
  }
  .inline-steps .step {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
  }
}