/* Quick Booking Section Styles */
.quick-booking-section {
  background: #fff;
  padding: 48px 0;
}
.quick-booking-section .section-title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.quick-booking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  max-width: 85vw;
  margin: 0 auto;
}
.quick-card {
  background: linear-gradient(180deg, #232526 0%, #181a1b 100%);
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 24px;
  min-height: 420px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.car-title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  min-height: 52px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.car-similar-text {
  font-size: 0.9rem;
  color: orangered;
  font-style: italic;
  margin-bottom: 8px;
  opacity: 0.8;
  text-align: center;
}
.car-desc {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.car-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.car-tags span {
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}
.car-tags i {
  margin-right: 5px;
}
.car-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px 12px 0 0;
  margin-bottom: 20px;
  display: block;
  max-width: 100%;
  min-height: 180px;
  flex-shrink: 0;
}

/* Ensure image container doesn't overflow */
.quick-card .car-image {
  object-fit: cover !important;
  object-position: center 42% !important;
}
.car-included {
  display: flex;
  align-items: center;
  color: #7fff7f;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.car-included i {
  margin-right: 6px;
}
.car-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.car-currency {
  font-size: 1rem;
  font-weight: 400;
}
.book-btn {
  max-width: 160px;
  width: 100%;
  margin: 0 auto;
  display: block;
  background: #ff4500;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.book-btn:hover {
  background: #e03e00;
}
/* Fix for 1020x1231 and similar resolutions */
@media (max-width: 1280px) and (min-width: 1020px) {
  .quick-booking-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .car-image {
    width: 100%;
    height: 160px;
    object-fit: cover !important;
    object-position: center 45% !important;
    border-radius: 12px 12px 0 0;
    margin-bottom: 20px;
  }
  .quick-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 420px;
    padding: 32px 20px;
  }
}

@media (max-width: 1200px) {
  .quick-booking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .car-image {
    width: 100%;
    height: 160px;
    object-fit: cover !important;
    object-position: center 45% !important;
    border-radius: 12px 12px 0 0;
    margin-bottom: 20px;
  }
  .quick-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 400px;
    padding: 32px 12px;
  }
}
@media (max-width: 700px) {
  .quick-booking-grid {
    grid-template-columns: 1fr;
  }
  .car-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    min-height: 140px;
    max-height: 180px;
    background: #fff;
    display: block;
    margin-bottom: 20px;
  }
  .quick-card {
    min-height: 0;
    padding: 32px 12px;
  }
}
/* Z Fold 5 and similar narrow screens */
@media (max-width: 400px) {
  .car-image {
    height: 140px;
    object-fit: cover !important;
    object-position: center 40% !important;
  }
  .quick-card {
    padding: 24px 16px;
    min-height: 350px;
  }
}

@media (max-width: 530px) {
  .car-image {
    height: 140px;
    object-fit: cover !important;
    object-position: center 42% !important;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .car-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: contain;
    min-height: 140px;
    max-height: 180px;
    background: #fff;
    display: block;
    margin-bottom: 20px;
  }
  .quick-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
} 