.bus-rental {
    flex: 1 1 650px;

    border-radius: 24px;
    padding: 2rem;

    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.bus-image {
    flex: 1 1 350px;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0 20px 30px rgba(214, 0, 0, 0.4);  */
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.bus-image:hover {
    transform: scale(1.05);
    /* box-shadow: 0 30px 40px rgba(214, 0, 0, 0.7); */
}

.bus-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.bus-content {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 1rem;
}

.tags {
    margin-bottom: 1rem;
}

.tag {
    display: inline-block;
    padding: 0.35em 1em;
    margin-right: 0.7em;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    user-select: none;
    color: #fff;
    cursor: default;
    transition: box-shadow 0.3s ease;
}

.tag.economic {
    background: #243a49; /* dark blue */
    box-shadow: 0 4px 12px rgba(36, 58, 73, 0.7);
}

.tag.ac {
    background: #d60000; /* bright red */
    /* box-shadow: 0 4px 15px rgba(214, 0, 0, 0.7); */
}

.tag:hover {
    box-shadow: 0 6px 20px rgba(255 255 255 / 0.9);
}

.info-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-box {
    flex: 1;
    background: #e6ebef; /* lighter gray */
    border-radius: 20px;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #243a49; /* dark blue */
    box-shadow: 0 4px 12px rgba(36, 58, 73, 0.35);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.info-box:hover {
    background: #f3f6f9; /* lighter gray on hover */
    box-shadow: 0 6px 20px rgba(214, 0, 0, 0.6); /* red glow */
}

.info-box svg {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    fill: #d60000; /* red icon */
    /* filter: drop-shadow(0 0 2px #d60000); */
    flex-shrink: 0;
}

.info-label {
    color: #8b8b8b;
    font-weight: 600;
    margin-right: 8px;
}

.description {
    font-size: 1rem;
    color: #3b3b3b; /* dark gray text */
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Sidebar */
.sidebar {
    flex: 0 1 280px;
    background: #fff; /* white background */
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 40px rgba(36, 58, 73, 0.1);
    color: #3b3b3b;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.sidebar h3 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
    color: #243a49; /* dark blue */
    border-bottom: 2px solid #d60000; /* red underline */
    padding-bottom: 0.6rem;
}

.most-booked-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    max-height: 350px;
}

.most-booked-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.3rem;
    font-size: 1rem;
    color: #3b3b3b;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    user-select: none;
}

.most-booked-list li:hover {
    color: #d60000;
    transform: translateX(5px);
}

.most-booked-list li img {
    width: 50px;
    height: 32px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 1rem;
    /* box-shadow: 0 10px 20px rgba(214, 0, 0, 0.3); */
    transition: box-shadow 0.3s ease;
}

.most-booked-list li:hover img {
    box-shadow: 0 14px 30px rgba(214, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 960px) {
    .bus-rental,
    .sidebar {
        flex: 1 1 auto;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .bus-image {
        min-width: auto;
    }
    .bus-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .info-row {
        flex-direction: column;
    }
    .info-box {
        justify-content: flex-start;
    }
    .tags {
        margin-bottom: 1.5rem;
    }
}
 
@media only screen and (min-width:1024) and (max-width:1366px){
    .menu-style1 > ul > li > a {
        padding: 34px 8px;
    }
    .sticky-wrapper .row{
        flex-wrap:  unset !important;
    }
}