.booking-engine-top-label ul {
    display: flex;
    justify-content: center; /* horizontal alignment */
    align-items: center; /* vertical alignment */
    padding: 0;
    margin: 0;
    height: 50px; /* adjust if needed */
    list-style: none;
}

.booking-engine-top-label li {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-shadow: 1px 1px 3px #00000040; /* 25% black shadow */
}

.new-intro-section {
    color: #878787;
    margin-top: 10px;
}

.new-intro-section h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.new-intro-section strong {
    color: #FE7E00 !important;
}

.new-manage-booking-section .bookRefHome {
    width: 100% !important;
}

footer .footerLinks .col .text-muted a {
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    text-transform: capitalize;
    color: #878787;
    text-decoration: none !important;
}

.searchButtons {
    margin-top: 0 !important;
}

.grayEdBtn.addTestimonialBtn {
    min-width: 110px;
    background: #FE7E00;
}

#addTestimonialForm .br-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

#addTestimonialForm .br-theme-fontawesome-stars .br-widget a {
    font-size: 30px !important; /* Increase this as needed */
}

.br-theme-fontawesome-stars .br-widget a.br-active:after, .br-theme-fontawesome-stars .br-widget a.br-selected:after {
    color: #FE7E00 !important;
}

body.arb .br-theme-fontawesome-stars .br-widget a {
    font-family: FontAwesome !important;
}

#addTestimonialForm .show-hide-name-option-buttons {
    text-align: center;
    margin-top: 20px;
}

#addTestimonialForm .show-hide-name-option-buttons button {
    background: #575757;
}

#addTestimonialForm .show-hide-name-option-buttons button:hover, #addTestimonialForm .show-hide-name-option-buttons button.active, #addTestimonialForm button[type="submit"] {
    background: #FE7E00;
    color: white;
}

#addTestimonialForm .termsDiv a {
    text-decoration: underline;
    font-weight: 500;
}

.testimonial-card {
    background: #f9f9f9;
    border-radius: 18px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    font-family: Arial, sans-serif;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 256px;
}

.testimonial-content {
    padding: 20px 20px 0;
    flex: 1;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quote-icon {
    font-size: 42px;
    color: #ff7900;
    font-weight: bold;
}

.testimonial-date {
    font-size: 12px;
    color: #999;
}

.testimonial-text {
    font-size: 14px;
    color: #000;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 16px;
    text-align: center;
}

.testimonial-footer {
    background-color: #ff7900;
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 0 0 12px 12px;
    margin-top: 28px;
}

/* Import FontAwesome if you want to use actual icons (optional) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.star-rating {
    display: flex;
    gap: 5px;
}

.star {
    width: 18px;
    height: 32px;
    color: #ccc;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f005'; /* fa-star */
    display: flex;
    align-items: center;
    justify-content: center;
}

.star::before {
    content: '\f005'; /* fa-star */
}

.star.filled {
    color: #FE7E00; /* orange */
}

.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    width: auto;
    height: 3px;
    background-color: #ff7a00;
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}

.why-choose-us-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.why-choose-us-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    width: auto;
    height: 3px;
    background-color: #ff7a00;
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 40px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* ensures centering */
    gap: 30px;
}

.feature-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    width: 240px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card .icon {
    height: 40px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.feature-card p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.6;
}

.carsGrid .singleRow.item {
    width: 95%;
}

section.bookingSec .carsGrid .singleRow .bookDtlSec .bookPSec .bookBtn .edBtn {
    width: auto !important;
}

.text-orange {
    color: #ff7900;
}

#testimonialModal {
    --bs-modal-width: 600px
}

#testimonialModal .btn-orange {
    background-color: #ff7a00;
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 6px;
}

#testimonialModal .btn-orange:hover {
    background-color: #ff7a00;
}

#testimonialModal .modal-content {
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

#testimonialModal .modal-content .modal-body h5 {
    color: black;
}

#testimonialModal .modal-content .modal-body textarea.form-control::placeholder {
    font-size: 13px;
}

body.arb .testimonial-stars .star {
    font-family: 'Font Awesome 5 Free' !important;
}

.owl-carousel {
    position: relative;
}

/* Adjust nav to stretch full width and center vertically */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -50px; /* pull left arrow outwards */
    right: -50px; /* pull right arrow outwards */
    width: auto;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Style the actual buttons */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Optional hover effect */
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: #ff6600;
    color: #fff;
    border-color: #ff6600;
}

/* 1. Force equal height on the carousel items */
#most-rented-cars-carousel .item.singleRow {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 2. Ensure the detail section stretches fully */
#most-rented-cars-carousel .bookDtlSec {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* 3. Force uniform height for bookPSec */
#most-rented-cars-carousel .bookPSec {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* 4. Set a fixed height on bookFeature for visual balance */
#most-rented-cars-carousel .bookFeature {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px; /* adjust as needed for your layout */
}

/* 5. Normalize image height */
#most-rented-cars-carousel .gridViewCarImg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px; /* fix image block height */
    overflow: hidden;
}

#most-rented-cars-carousel .gridViewCarImg img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* 6. Push Book button to bottom */
#most-rented-cars-carousel .bookBtn {
    margin-top: auto;
}

.footer-social-links-section {
    background-color: #f6f6f6;
    padding: 40px 0;
    color: #000;
}

.footer-social-area a {
    text-decoration: none;
}

.price-range-table-section {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.price-range-table {
    width: auto;
    font-family: Arial, sans-serif;
    text-align: center;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #777777;
    border-radius: 8px;
    overflow: hidden;
}

.price-range-table th,
.price-range-table td {
    border: 1px solid #dcdcdc;
    padding: 6px 12px;
    white-space: nowrap;
}

.price-range-table th {
    color: #666;
    font-weight: bold;
    font-size: 14px;
}

.price-range-table td:first-child {
    border-left: none;
}

.price-range-table td:last-child {
    border-right: none;
}

.price-range-table .label {
    color: #666;
    font-size: 13px;
}

.price-range-table .price {
    color: #ff7a00;
    font-size: 17px;
    font-weight: bold;
}

@media screen and (max-width: 1399px) {
    .price-range-table .price {
        font-size: 13px;
        font-weight: 500;
    }
}
