/* Quick Search Section */
#quick_search {
  padding: 40px 20px;
  background-color: #eeeeee;
  text-align: center;
}
.search-container h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.search-container form {
  display: inline-block;
  text-align: left;
}
.search-container input,
.search-container button {
  margin: 10px 5px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.search-container button {
  background-color: #b30000;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.search-container button:hover {
  background-color: #8b0000;
}



/* Cars Preview */
#cars {
    padding: 30px 20px;
    background-color: #f8f9fa;
    text-align: center;
}
#cars-container h3 {
    color: #222;
    margin-bottom: 1.5em;
    font-size: 1.8em;
}
#cars-pre {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}
.car-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #b30000; /* Red accent */
    border-top: 2px solid #b30000;
}
.car-card:hover {
    transform: scale(1.05);
}
.car-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid #b30000
}
.car-card h4 {
    color: #333;
    margin-bottom: 0.5em;
}
.car-card p {
    color: #666;
    font-size: 0.9em;
}
.book-now-button {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #b30000; /* Red background */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}
.book-now-button:hover {
    background-color: #cc0000; /* Darker red on hover */
}


/* Show More Button */
.show-more-btn {
    margin-top: 30px;
}
.show-more-btn .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b30000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}
.show-more-btn .btn:hover {
    background-color: #cc0000;
}




/* About Us Section */
#about-us {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

#about-us:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: #b30000;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.about-container h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.about-container h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #b30000;
}

.about-container p {
    margin-bottom: 1.8rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.learn-more-btn {
    display: inline-block;
    background-color: #b30000;
    color: white;
    padding: 14px 35px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #b30000;
}

.learn-more-btn:hover {
    background-color: transparent;
    color: #b30000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(209, 0, 0, 0)
}

/* Reviews Section */
#customer-reviews {
  padding: 40px 20px;
  background-color: #eeeeee;
  text-align: center;
}
.review {
  background-color: #fff;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  border-left: 4px solid #b30000;
}
.review-btn {
  display: inline-block;
  background-color: #b30000;
  color: white;
  padding: 14px 35px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #b30000;
}
.review-btn:hover {
  background-color: transparent;
  color: #b30000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(209, 0, 0, 0)
}



/* Contact Section */
#contact-us {
  background-color: #f4f4f4;
  padding: 40px 20px;
  text-align: center;
}
.contact-container {
  max-width: 700px;
  margin: auto;
}
.contact-info p {
  margin: 10px 0;
}
.contact-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #b30000;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid #b30000;
}
.contact-btn:hover {
    background-color: transparent;
    color: #b30000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(209, 0, 0, 0)
}