@charset "utf-8";

/* CSS Document */
.listing-item-car {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, .05);
    direction: rtl;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 4 in row (desktop) */
    gap: 20px;
    font-family: 'cairo', sans-serif;
}

/* Feature Card */
.listing-feature-car {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding-top: 18px;
    padding-right: 8px;
    padding-left: 8px;
    padding-bottom: 18px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.listing-feature-car:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon */
.listing-feature-icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--third-color);
    color: #fff;
    border: 4px solid #fff;
    border-radius: 50% 50% 0 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 14px;
    text-align: center;
    flex-shrink: 0;

}

/* Content */
.listing-feature-content h6 {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-weight: 600;
}

.listing-feature-content span {
    font-size: 12px;
    font-weight: 700;
    color: #222;
    display: block;
    margin-top: 2px;
    text-transform: capitalize
}

/* ========================= */
/* Tablet (2 per row) */
@media (max-width: 992px) {
    .listing-item-car {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (1 per row) */
@media (max-width: 576px) {
    .listing-item-car {
        grid-template-columns: 1fr;
    }
}

.offerright {
    width: 28%;
    float: right;
    background: var(--white);
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    direction: rtl;
    font-family: 'cairo', sans-serif;

}

.slide-hold {
    width: 100%;
    height: auto;
}

.listing-price {
    margin-bottom: 10px;
    direction: rtl;
    text-align: right
}

.listing-price-tag {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-family: 'cairo', sans-serif;
}

.listing-price-amount {
    margin-top: 10px;
    font-family: 'cairo', sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: normal;
    color: #757f95;
    line-height: 1.8;

}

.listing-price-amount span {
    font-weight: 600;
    font-size: 23px;
    color: var(--primary-color);
    margin-left: 5px;
    margin-right: 5px;
}

.rowDetailse {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.rowDetailsefield {
    margin-bottom: 20px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, .08);
    position: relative;
    padding-top: 10px;
    padding-right: 25px;
    padding-left: 25px;
    padding-bottom: 9px;
    border-radius: 30px;
    font-size: 15px;
    vertical-align: text-top;
    direction: rtl;
    text-align: right
}

.rowDetailsefield i {
    position: absolute;
    left: 15px;
    top: 10px;
    font-size: 28px;
    color: var(--secondary-color);

}

.rowDetailsefield h2 {
    line-height: 0px;
    width: 100%;
    font-size: 20px;
    font-family: 'cairo', sans-serif;
    color: var(--primary-color);
}

.rowDetailsefield h3 {
    line-height: 20px;
    width: 100%;
    font-size: 18px;
    font-family: 'cairo', sans-serif;
    color: #000000;
    color: var(--secondary-color);
}

.popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    animation: fadeIn 0.3s ease;
    text-align: center;
}

.popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    animation: fadeIn 0.3s ease;
    text-align: center;
}

.popup-message.success {
    background: var(--primary-color);
}

.popup-message.error {
    background: #dc3545;
}

.popup-message .close-btn {
    float: right;
    cursor: pointer;
    font-size: 18px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.offers-hold {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    height: auto;
    margin-top: 0px;
    padding-top: 50px;
    box-sizing: content-box;
    position: relative
}

.offerleft {
    width: 70%;
    float: right;
    margin-left: 2%
}

.tabshold {
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.offerleft h1 {
    width: 100%;
    font-size: 20px;
    font-family: 'cairo', sans-serif;
    color: var(--primary-color);
    text-align: right
}

.offerleft h2 {
    width: 100%;
    font-size: 28px;
    font-family: 'cairo', sans-serif;
    color: #000000;
    text-align: right
}

.offerleft .rate {
    width: 100%;
    text-align: right;
    direction: rtl
}

.offerleft .rate .fa {
    font-size: 14px;
    color: var(--secondary-color)
}

.offerleft .place {
    width: 50%;
    float: right;
    font-family: 'cairo', sans-serif;
    color: #292727;
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: right;
    direction: rtl
}

.offerleft .place i {
    color: var(--primary-color);
    margin-left: 5px;
}

.offerleft .duration {
    text-align: right;
    width: 50%;
    float: right;
    font-family: 'cairo', sans-serif;
    color: #292727;
    margin-top: 15px;
    margin-bottom: 20px;
    direction: rtl;
}

.offerleft .duration i {
    color: var(--primary-color);
    margin-left: 5px
}

.containerBooking {
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.price-header {
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    color: white;
    padding: 25px 30px;
    text-align: center;
    font-family: 'cairo', sans-serif;
}

.price-tags {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    direction: rtl
}

.price-note {
    font-size: 1rem;
    opacity: 0.9;
}

.booking-form {
    padding: 30px;
}

.form-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-align: right
}

.form-title::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
    text-align: right;
    direction: rtl
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.required::after {
    content: '*';
    color: #e74c3c;
    margin-left: 4px;
}

.form-group input,
select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: right;
    direction: rtl
}

.form-group input:focus,
select:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.2);
}

.divider {
    height: 1px;
    background: #eee;
    margin: 30px 0;
}

.special-requests {
    margin-top: 30px;
    text-align: right
}

.special-requests textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: vertical;
    font-size: 16px;
    text-align: right
}

.special-requests textarea:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.2);
}

.submit-btn {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: block;
    margin: 30px auto 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(142, 45, 226, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 45, 226, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.note {
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-top: 20px;
}

@media (max-width: 999px) {
    .offerleft {
        width: 100%;
        float: none;
        margin-right: 0%
    }

    .offerright {
        width: 100%;
        float: none;
        margin-right: 0%
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .price-tag {
        font-size: 2.8rem;
    }

    .submit-btn {
        font-size: 15px;
    }
}