/* ================= HERO ================= */
.topcars-hero-content::before {
  content: "";
  position: absolute;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.6); overlay strength */
  z-index: -1;
}
/* ===== HERO LOGO ===== */
.topcars-logo {
  margin-bottom: 15px;
  z-index: 3;
}

.topcars-logo img {
  display: block;
  max-width: 100px;
  height: auto;
  margin: 0 auto;
  opacity: 1;
  visibility: visible;
}
#reserver-form-container- .modal-content {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
/* ===== HERO PROGRESS LINE ===== */
.hero-progress {
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  margin-top: 20px;
  border-radius: 2px;
  overflow: hidden;
}

.hero-progress span {
  display: block;
  width: 35%; /* Step 1 progress */
  height: 100%;
  background: #f5481f;
  border-radius: 2px;
}

.topcars-hero {
  position: relative;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  height: fit-content;
  border-radius: 20px;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
  color: #fff;
}

.topcars-hero-overlay {
  /* position: absolute; */
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.topcars-hero-content {
  position: relative;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  z-index: 2;
  height: 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url(../img/bg.jpg);
   background-size: cover;        
    background-position: center;   
    background-repeat: no-repeat;  
}
.form-container {
  height: 67%;
}
/* .topcars-hero h1 {
  font-size: 36px;
  font-weight: 600;
} */

/* ================= STEP 1 ================= */
.step1-custom {
  text-align: center;
  padding-top: 20px;
}

.select-service-title {
  font-size: 26px;
  font-weight: 600;
  color: #f5481f;
  margin-bottom: 40px;
}

.service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;

  gap: 23px;
}

.service-card {
  cursor: pointer;
  /* background: #fff; */
  border-radius: 5px;
  width: 210px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card input {
  display: none;
}

.service-image {
  height: 250px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-footer {
  background: #f5481f;
  color: #fff;
  padding: 16px;
  font-weight: 600;
}

.powered-by {
  margin-top: 30px;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.powered-by img {
  height: 18px;
  width: auto;
  display: inline-block;
}

/* Selected */
.service-card input:checked + .service-image {
  outline: 4px solid #f5481f;
  outline-offset: -4px;
}

/* Responsive */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .topcars-hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
.time-slot.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.booking-panel * {
  box-sizing: border-box;
  float: none !important;
}
.booking-panel .step-inner-content {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.booking-panel h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.booking-panel .booking-card {
  width: 520px;
  background: #fff;
  overflow: hidden;
  color: black;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Header */
.booking-panel .calendar-header {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* Days row */
.booking-panel .calendar-days {
  scroll-behavior: smooth;

  overflow-x: scroll;
  scrollbar-width: none;
  display: flex !important;
  width: 520px;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 25px;
}

.booking-panel .day {
  min-width: 70px;
  padding: 10px 0;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #ddd;
  cursor: pointer;
}

.booking-panel .day.active {
  background: #f5481f;
  color: #fff;
  border-color: #f5481f;
}

.booking-panel .day.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Time slots */
.booking-panel .time-slots {
  display: flex !important;
  flex-direction: column;
  gap: 12px;
}

.booking-panel .time-slot {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 7px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  cursor: pointer;
}

/* Dots */
.booking-panel .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.booking-panel .dot.green {
  background: #28c76f;
}
.booking-panel .dot.orange {
  background: #ff9f43;
}

/* Footer */
.booking-panel .calendar-footer {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
.js-btn-next:hover {
  color: #000;
}
.booking-panel .btn-request,
.js-btn-next {
  background: #f5481f;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}

/* Scrollable time slots */
.booking-panel .time-slots {
  max-height: 150px; /* controls visible height */
  overflow-y: auto;
  padding-right: 6px;
}

/* Nice scrollbar (optional, safe) */
.booking-panel .time-slots::-webkit-scrollbar {
  width: 6px;
}

.booking-panel .time-slots::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Disable Request button by default */
.booking-panel .btn-request {
  opacity: 0.4;
  pointer-events: none;
  transition: 0.2s ease;
}

/* Enable state */
.booking-panel .btn-request.active {
  opacity: 1;
  pointer-events: auto;
}
