 .package-details-page .package-details-sidebar .pricing-and-booking-area {
    padding: 40px 40px;
    background-color: #ffeadc;
    border-radius: 20px;
}
.pricing-and-booking-area.mb-4.mt-5.ourpackage{
    padding: 40px 40px ! important;
    background-color: #c3dfff ! important;
    border-radius: 20px ! important; 
}
.package-details-page .package-details-sidebar .customize-package-banner-wrap {
    padding: 40px 40px 50px;
    background-color: #c3dfff;
    border-radius: 20px;
}

.pricing {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #ff6c00;

}

.price-label {
    color: black;
}

.price-value {
    font-weight: 600;
    color: black;
}

.rating {
    color: #ffc107;
    margin: 0.5rem 0;
}

.car-specs {
    display: flex;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.spec-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    color: red;
}

/* ==== Section Base ==== */
.outstation-trip-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #ff7b00;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* ==== Card Layout ==== */
.vehicle-card-section {
    width: 100%;
    padding: 20px 10px;
}

.vehicle-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* ==== Individual Card ==== */
.vehicle-card {
    flex: 1 1 calc(20% - 20px);
    max-width: calc(20% - 20px);
    background: #fff;
    border-radius: 18px;
    border: 2px solid #ff7b00;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 123, 0, 0.25);
}

/* ==== Image Styling ==== */
.vehicle-img {
    overflow: hidden;
    height: 190px;
    border-bottom: 2px solid #ff7b00;
}

.vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-img img {
    transform: scale(1.1);
}

/* ==== Card Title ==== */
.vehicle-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    padding: 15px 10px 18px;
    margin: 0;
    transition: color 0.3s ease;
}

.vehicle-card:hover h4 {
    color: #ff7b00;
}

/* ==== Responsive Design ==== */
@media (max-width: 1200px) {
    .vehicle-card {
        flex: 1 1 calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
}

@media (max-width: 992px) {
    .vehicle-card {
        flex: 1 1 calc(33.33% - 20px);
        max-width: calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .vehicle-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .vehicle-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}