/* Header */
#topCompanyDescription {
  width: 100%;
  height: 30px;
  background-color: #000000;
}

.containerWidth {
  width: 1060px;
  margin: 0 auto;
}

.menu {
  /* height: 40px; */
  background-color: #cf0f47;
}

.headerImage {
  background-image: url("../img/crossroads.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
}
.originalText {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.whiteText {
  color: white;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.redText {
  color: #cf0f47;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

/* Footer */
.social li {
  display: inline;
  width: 150px;
}
.social img {
  width: 150px;
  margin: 0 auto;
  border-radius: 5px;
}

#footerLine {
  width: 100%;
  height: 30px;
  background-color: #ff0b55;
}

/* Quote */
.quote {
  width: 250px;
  float: right;
  position: relative;
  z-index: 99;
  background-color: #cf0f47;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.quote-btn-color {
  background-color: #dc4d01;
}

/* Index.php */
.features-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
}

.features-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.features-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
}

.features-list li {
  margin-bottom: 30px;
  border-left: 4px solid #007bff;
  padding-left: 15px;
}

.features-list h3 {
  font-size: 20px;
  color: #9b2888;
  margin-bottom: 8px;
}

.features-list p {
  margin: 0;
  color: #555;
}

.intro-text {
  font-size: 20px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.value-proposition {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

/* Whatsap button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* Contact Us */
#contactUsForm {
  display: flex;
  flex-direction: column;
}
#contactUsForm label {
  margin: 10px 0 5px;
}
#contactUsForm input,
textarea {
  padding: 3px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}
#contactUsForm textarea {
  resize: vertical;
  min-height: 100px;
}
#contactUsForm .form-group button {
  margin-top: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}
#contactUsForm .form-group button:hover {
  background-color: #0056b3;
}
.contact-info {
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 30px;
}
.contact-info h2 {
  margin-bottom: 10px;
}
.contact-info p {
  margin: 5px 0;
}
@media (max-width: 600px) {
  .container {
    padding: 20px;
  }
}

/* Index page Quote Styles */
label {
  display: block;
  margin-top: 15px;
}
#indexQuoteForm input,
button,
select {
  width: 100%;
  padding: 3px;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
#indexQuoteForm .checkboxes label {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
#indexQuoteForm .checkboxes input {
  width: auto;
  margin-right: 10px;
}
#quote {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  color: green;
}

/* quote form eamil  */
#emailField {
  transition: max-height 0.4s ease, opacity 0.4s ease;
  overflow: hidden;
}

.email-hidden {
  max-height: 0;
  opacity: 0;
}

.email-visible {
  max-height: 100px;
  opacity: 1;
}

@media screen and (max-width: 600px) {
  #topCompanyDescription h5 {
    font-size: 15px;
  }
}

/* Fleet Styles */

.fleetContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.fleetContainer h1 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.fleetGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.vehicleCard {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  border: 2px solid transparent;
}

.vehicleCard.selected {
  background-color: #e6f2ff;
  border-color: #dc4d01;
}

.vehicleCard:hover {
  transform: translateY(-4px);
}

.vehicleCard img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}

.vehicleCard h3 {
  margin: 10px 0 5px;
  color: #0077ff;
}

.vehicleDetails {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.priceInfo {
  font-size: 14px;
  font-weight: bold;
  color: #222;
}
