body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: white;
  color: #333;
}

/* HEADER */
.main-header {
  text-align: center;
  padding: 30px 20px 10px;
  background: white;
}

.logo {
  height: 90px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
  background: #f5f5f3;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 22px;
  color: #555;
  margin-bottom: 25px;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #555;
}

/* IMAGE */
.image-section {
  padding: 40px 20px;
  background: #f5f5f3;
}

.image-container {
  max-width: 700px;
  margin: 0 auto;
}

.image-container img {
  width: 100%;
  border-radius: 20px;
}

/* BOUTIQUE */
.boutique {
  text-align: center;
  padding: 60px 20px;
}

.boutique-text {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.8;
  font-size: 18px;
  color: #444;
}

/* VEHICLES */
.vehicle-title {
  background: #2f6f5f;
  padding: 40px 20px;
  text-align: center;
  color: white;
}

.vehicle-section {
  background: #2f6f5f;
  padding: 40px 20px 80px;
}

.cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.modern-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  width: 420px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  cursor: pointer;
}

.modern-card:hover {
  transform: translateY(-6px);
}

.card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
}

.specs {
  padding-left: 18px;
  font-size: 14px;
}

.green-btn {
  background: #2f6f5f;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  margin-top: 20px;
  cursor: pointer;
}

.green-btn:hover {
  opacity: 0.9;
}

/* BOOKING */
.booking-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.booking-container {
  width: 100%;
  max-width: 600px;   /* ← steuert Breite */
  margin: 0 auto;
}

.form-vehicle-image {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.price-list {
  margin-bottom: 25px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hidden {
  display: none;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}


/* FORM DESIGN */
input, select {
  width: 100%;
  padding: 12px 14px;
  margin: 10px 0;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #fafafa;
  transition: 0.2s ease;
}

input:focus, select:focus {
  outline: none;
  border-color: #2f6f5f;
  background: white;
  box-shadow: 0 0 0 2px rgba(47,111,95,0.15);
}

button {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#totalPrice {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}

.info-text {
  font-size: 14px;
  margin-top: -5px;
}

.back-bottom-btn {
  margin-top: 25px;
  padding: 12px 18px;
  background: transparent;
  color: #222;                 /* dunkle Schrift */
  border: 2px solid #222;      /* sichtbarer Rahmen */
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-bottom-btn:hover {
  background: #222;
  color: #fff;
}
/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  background: #f5f5f3;
  font-size: 14px;
}

.footer a {
  color: #2f6f5f;
  text-decoration: none;
  font-weight: 500;
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: white;
  padding: 40px;
  max-width: 600px;
  border-radius: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.modal.hidden {
  display: none;
}

/* FORM HEADER */
.form-header {
  display: flex;
  justify-content: flex-end;
}

.back-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #444;
}

.back-btn:hover {
  opacity: 0.6;
}

/* FORM VEHICLE IMAGE */
.form-vehicle-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  margin: 15px 0;
}

/* PRICE LIST */
.price-title {
  margin-top: 10px;
  font-weight: 600;
}

.price-list {
  margin: 10px 0 20px 0;
  font-size: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.legal-small{
font-size:12px;
color:#777;
text-align:center;
margin-top:10px;
max-width:400px;
margin-left:auto;
margin-right:auto;
line-height:1.4;
}

.modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
display:flex;
align-items:center;
justify-content:center;
z-index:2000;
}

.modal-content{
background:white;
padding:30px;
border-radius:12px;
max-width:700px;
max-height:80vh;
overflow-y:auto;
font-size:14px;
line-height:1.6;
}

.close{
position:absolute;
top:20px;
right:30px;
font-size:24px;
cursor:pointer;
}

.hidden{
display:none;
}

.modal-content{
background:white;
padding:30px;
max-width:700px;
width:90%;
max-height:80vh;
overflow-y:auto;
border-radius:10px;
}

.checkbox-container{
display:flex;
align-items:center;
gap:10px;
font-size:14px;
cursor:pointer;
}

.checkbox-container input{
width:18px;
height:18px;
cursor:pointer;
}

.legal-consent{
margin:20px 0;
}

#whatsappBtn:disabled{
opacity:0.5;
cursor:not-allowed;
}

.modal-content strong {
  display:block;
  margin-top:14px;
  font-weight:600;
}

.price-row{
display:flex;
justify-content:space-between;
font-family:monospace;
}

.price{
min-width:90px;
text-align:right;
}

