.sticky-booking-btn-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000; /* optional background strip */
  padding: 12px 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  box-sizing: border-box;
}

.sticky-booking-btn {
  width: 100%;
  background-color: #d4af37;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  transition: background 0.2s ease;
}

.sticky-booking-btn:hover {
  background-color: #e0be5b;
}

.car-pricing-ui {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 16px;
  margin: 20px auto;
  width: 90%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  font-family: 'Inter', sans-serif;
}

.pricing-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.95rem;
}

.actual-price {
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
}

.per-day {
  font-size: 0.9rem;
  color: #444;
}

.lux-header select {
  margin-left: 6px;
  padding: 6px 10px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  color: #000;
}

.booking-summary-upgraded {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  font-family: 'Inter', sans-serif;
  color: #111;
}

.booking-summary-header h3 {
  font-size: 1.25rem;
  margin: 6px 0 4px;
}

.verified {
  font-size: 0.85rem;
  color: green;
  font-weight: 500;
}

.car-tags {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 12px;
}

.label {
  font-weight: 500;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 6px;
}

.value {
  font-size: 1rem;
  color: #111;
}

.price-breakdown {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.inflated-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.95rem;
}

.real-price {
  font-weight: bold;
  font-size: 1.15rem;
  color: #000;
}

.you-save {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #27ae60;
}

.total-price {
  margin-top: 6px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #000;
}

.section-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
  font-size: 1rem;
}

.info-row {
  font-size: 0.92rem;
  color: #333;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.highlight {
  color: #d4af37;
  font-weight: 600;
}

.tooltip {
  font-size: 0.9rem;
  margin-left: 6px;
  cursor: help;
}

.lux-booking-summary {
  font-family: 'Inter', sans-serif;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  max-width: 100%;
  color: #111;
  font-size: 0.95rem;
}

.lux-header {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.lux-line-item {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}

.lux-line-item .label {
  color: #555;
}

.lux-line-item .value {
  font-weight: 500;
}

.strikethrough {
  text-decoration: line-through;
  color: #aaa;
}

.highlight {
  color: #000;
  font-weight: 600;
}

.lux-divider {
  height: 1px;
  background: #eee;
  margin: 16px 0;
}

.lux-subtext {
  font-size: 0.9rem;
  color: #27ae60;
  font-weight: 500;
  text-align: right;
  margin-top: 4px;
}

.lux-total-saved {
  margin-top: 12px;
  text-align: right;
  font-weight: 600;
  color: #27ae60;
  font-size: 1rem;
}

.lux-line-item.final .label {
  font-weight: 600;
  color: #000;
}

.lux-line-item.final .value {
  font-weight: 700;
  color: #111;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip-container .fa-info-circle {
  color: #888;
  font-size: 0.85em;
  margin-left: 5px;
}

.tooltip-text {
  visibility: hidden;
  width: 220px;
  background-color: #111;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 8px 10px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Show above */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  font-size: 0.8rem;
  transition: opacity 0.3s;
}

.tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%; /* Arrow at bottom */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #111 transparent transparent transparent;
}

.tooltip-container:hover .tooltip-text,
.tooltip-container:focus-within .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  margin-left: 10px;
}

.switch input { display: none; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #27ae60;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.lux-subtext.warning {
  color: #e67e22; /* orange like Booking.com */
  font-size: 0.9rem;
  margin-top: 6px;
  text-align: left;
}

.info-row {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #333;
}

.info-row.small-print {
  font-size: 0.85rem;
  color: #666;
  margin-left: 18px;
}

.tooltip {
  cursor: help;
  color: #888;
  font-size: 0.85rem;
  text-decoration: underline dotted;
}

.insurance-points {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 6px;
  color: #444;
  font-size: 0.9rem;
}

.insurance-points li {
  margin-bottom: 6px;
}

.tooltip-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
}

.tooltip {
  cursor: help;
  text-decoration: underline dotted;
}

.whatsapp-contact-button {
  position: fixed;
  bottom: 125px; /* was 20px */
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.whatsapp-contact-button:hover {
  background-color: #1ebe5b;
}

#vat-price {
    font-size: 0.75em;
    color: #666;
    margin-top: -1.5vh;
}

.booking-summary-section {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.info-row {
  font-size: 16px;
  margin-bottom: 12px;
  color: #2a2a2a;
}

.insurance-points {
  list-style-type: none;
  padding-left: 0;
  margin: 0 0 16px 0;
}

.insurance-points li {
  background: url('https://cdn-icons-png.flaticon.com/512/190/190411.png') no-repeat left center;
  background-size: 18px 18px;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.insurance-points li strong {
  color: #111;
}

.tooltip-note {
  font-size: 14px;
  color: #666;
}

.tooltip {
  border-bottom: 1px dashed #888;
  cursor: help;
  color: #007BFF;
  text-decoration: none;
}

.lux-contact-help {
  background-color: #f4f4f4;
  border-left: 5px solid #25D366; /* WhatsApp green accent */
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 16px;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 9.5vh;
}

.lux-contact-help a {
  display: inline-block;
  margin-top: 8px;
  color: white;
  background-color: #25D366;
  padding: 10px 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.lux-contact-help a:hover {
  background-color: #1ebe5d;
}

.lux-book-now-btn {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.2s ease;
}

.lux-book-now-btn:hover {
  background-color: #444;
}

.lux-booking-form {
  margin-top: 16px;
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lux-booking-form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 600;
}

.lux-booking-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.lux-booking-form button[type="submit"] {
  margin-top: 16px;
  background-color: #25D366;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.lux-booking-form button[type="submit"]:hover {
  background-color: #1ebe5d;
}

.floating-book-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f9f9f9; /* light grey */
  color: #111;
  padding: 10px 15px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Arial', sans-serif;
}

.floating-book-cta .book-now-btn {
  background: #000; /* black button */
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  margin-bottom: 6px;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
}

.floating-book-cta .book-now-note {
  font-size: 0.8em;
  font-weight: bold;
  opacity: 0.9;
  line-height: 1.3;
}

.booking-form-message {
  background: #e6f4ea; /* light green */
  border-left: 4px solid #28a745; /* darker green accent */
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-family: 'Arial', sans-serif;
}

.booking-form-message .title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
  color: #1e4620; /* deeper green for contrast */
}

.booking-form-message .subtext {
  font-size: 14px;
  color: #2d5035;
  line-height: 1.4;
  margin-bottom: 10px;
}

.booking-form-message .extra-info {
  font-size: 13px;
  color: #2d5035;
  line-height: 1.4;
}

.booking-form-message a {
  color: #1b7e2c;
  font-weight: 500;
  text-decoration: none;
}

.booking-form-message a:hover {
  text-decoration: underline;
}


/* Optional: Hide when keyboard opens (mobile UX fix) */
@media (min-height: 400px) and (max-height: 700px) {
  .floating-book-btn {
    padding-bottom: 15px;
  }
}