


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

header {
  background: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
}

nav {
  text-align: center;
  padding: 10px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
}

section {
  padding: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-left: 20px;
}

.contact-text {
  font-size: 1rem;
  color: #333;
}

.contact-text a {
  font-weight: bold;
  text-decoration: none;
}

.contact-text a[href*="wa.me"] {
  color: #25D366;
}

.contact-text a[href^="mailto:"] {
  color: #007bff;
}


.whatsapp-contact a {
  color: #25D366;
  font-weight: bold;
  text-decoration: none;
}



.car-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.car {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 300px;
  padding: 15px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  min-height: 480px;
  text-align: center;
}

.car img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.car-info {
  margin: 0;
  padding: 0;
}

.car-info h3,
.car-info p {
    margin: 4px 0;

}

form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-top: 10px;
}

.booking-form {
  max-width: 500px;
  margin: auto;
}

.booking-form .form-group {
  margin-bottom: 15px;
}

.booking-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

 


button {
  background: #28a745;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

button:hover {
  background: #218838;
}

footer {
  text-align: center;
  padding: 15px;
  background: #222;
  color: #fff;
  margin-top: 20px;
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.btn {
  background: #28a745;
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 900;
  display: inline-block;
  margin-top: 10px;
  border: none;
}



.book-btn:hover, .quote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  background-color: #218838;
}

.button-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}


.btn:hover {
  background: #218838;
}


.button-container {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  justify-content: center;
}

.button-container .btn {

  flex: 1 1 0;                 /* each button takes equal width */
  min-width: 0;        /* optional cap, or remove if you want them to stretch */
  text-align: center;      /* center the text */
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 900;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;    /* inline-flex so icon + text align nicely if you add icons */
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  background-color: #28a745;
  color: #fff;
}


.button-container .btn:hover {
  background-color: #218838;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.book-btn, .quote-btn, .send-btn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}



.btn-green {
  background-color: #28a745;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: inline-block;
  font-weight: bold;
  margin: 10px 5px;
  text-align: center;
  text-decoration: none;
  
}

.btn-green:hover{
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}



.form-note {
  font-size: 0.5em;
  color: #555;
  margin-top: 5px;
}
.form-note a {
  color: #007bff;
  text-decoration: underline;
}

  





/* ============ MOBILE ============= */
@media (max-width: 768px) {
  .car-list {
    flex-direction: column;
    align-items: center;
  }

  nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 10px;
    gap: 10px;
  }

  nav a {
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  input[type="time"],
  input[type="file"],
  textarea {
    font-size: 16px;
    padding: 16px;
    height: 52px !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  select {
    font-size: 16px !important;
    padding: 0 16px !important;
    height: 52px !important;
    width: 100% !important;
    box-sizing: border-box;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    appearance: none;
  }

  .whatsapp {
    font-size: 14px;
    padding: 10px 14px;
  }

  button {
    font-size: 18px;
    padding: 18px;
    height: auto;
  }
  
/* force both to size to their content */


}


/* ——————————————————————————————
   HERO SECTION (must come *after* your generic section {…})
   —————————————————————————————— */
#home {
  position: relative;
  padding: 0; /* reset any earlier padding */
  background: url('hero-car.jpg') center/cover no-repeat !important;
  background-color: #000; /* fallback */
  color: #fff;
  text-align: left;
  min-height: 70vh;       /* adjust as you like */
  display: flex;
  align-items: center;
  justify-content: center;
}

#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 0.5em;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.2em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}



