/* =========================================
   AAYUSH CAR RENTAL
   TOUR PACKAGES SECTION
========================================= */

.acr-tour-packages {
    width: 100%;
    padding: 70px 0;
    background: #f7f7f7;
}

.acr-packages-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}


/* =========================================
   SECTION HEADING
========================================= */

.acr-section-heading {
    text-align: center;
    margin-bottom: 35px;
}

.acr-section-heading > span {
    display: block;

    margin-bottom: 7px;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #e00000;
}

.acr-section-heading h2 {
    margin: 0;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 32px;
    font-weight: 700;

    color: #151515;
}

.acr-section-heading h2 strong {
    color: #e00000;
}

.acr-heading-line {
    width: 50px;
    height: 3px;

    margin: 14px auto 18px;

    background: #e00000;
}

.acr-section-heading p {
    max-width: 700px;

    margin: 0 auto;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 14px;
    line-height: 1.7;

    color: #777;
}


/* =========================================
   PACKAGE FILTER
========================================= */

.acr-package-filter {
    width: 100%;

    display: flex;
    align-items: flex-end;

    gap: 15px;

    padding: 20px;

    margin-bottom: 25px;

    background: #ffffff;

    border: 1px solid #e5e5e5;

    border-radius: 5px;

    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.acr-filter-field {
    flex: 1;
}

.acr-filter-field label {
    display: block;

    margin-bottom: 7px;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 13px;
    font-weight: 600;

    color: #222;
}

.acr-filter-field select {
    width: 100%;

    height: 45px;

    padding: 0 14px;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 14px;

    color: #444;

    background: #fff;

    border: 1px solid #d5d5d5;

    border-radius: 3px;

    outline: none;

    cursor: pointer;
}

.acr-filter-field select:focus {
    border-color: #e00000;
}


/* =========================================
   SEARCH BUTTON
========================================= */

.acr-filter-button {
    flex: 0 0 180px;
}

.acr-filter-button button {
    width: 100%;

    height: 45px;

    padding: 0 20px;

    border: 0;
    border-radius: 3px;

    background: #e00000;

    color: #ffffff;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .5px;

    cursor: pointer;

    transition: all .3s ease;
}

.acr-filter-button button:hover {
    background: #151515;
}


/* =========================================
   PACKAGE LIST
========================================= */

.acr-package-list {
    width: 100%;
}


/* =========================================
   PACKAGE ITEM
========================================= */

.acr-package-item {
    position: relative;

    width: 100%;

    min-height: 78px;

    display: grid;

    grid-template-columns: 31% 1fr 90px;

    align-items: center;

    gap: 20px;

    margin-bottom: 12px;

    padding: 10px 20px;

    background: #ffffff;

    border: 1px solid #e2e2e2;

    border-radius: 5px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.04);

    transition: all .3s ease;
}

.acr-package-item:hover {
    border-color: #e00000;

    box-shadow: 0 5px 15px rgba(0,0,0,0.08);

    transform: translateY(-2px);
}


/* =========================================
   PACKAGE NAME
========================================= */

.acr-package-info {
    position: relative;

    padding-left: 20px;
}

.acr-package-info:before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: #e00000;

    border-radius: 2px;
}

.acr-package-info h3 {
    margin: 0 0 5px;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 19px;
    font-weight: 700;

    color: #151515;
}

.acr-package-duration {

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 13px;

    color: #777;
}


/* =========================================
   PLACES
========================================= */

.acr-package-places {

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 14px;

    line-height: 1.6;

    color: #555;
}


/* =========================================
   VIEW BUTTON
========================================= */

.acr-package-action {
    text-align: right;
}

.acr-package-action a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 75px;
    height: 38px;

    padding: 0 15px;

    background: #e00000;

    color: #ffffff;

    border-radius: 3px;

    font-family: 'Montserrat', Arial, sans-serif;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.acr-package-action a:hover {
    background: #151515;

    color: #ffffff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .acr-tour-packages {
        padding: 50px 0;
    }

    .acr-section-heading {
        margin-bottom: 25px;
    }

    .acr-section-heading h2 {
        font-size: 27px;
    }

    .acr-section-heading p {
        font-size: 13px;
        padding: 0 10px;
    }


    /* Filter */

    .acr-package-filter {
        display: block;

        padding: 15px;

        margin-bottom: 20px;
    }

    .acr-filter-field {
        width: 100%;
    }

    .acr-filter-button {
        width: 100%;

        margin-top: 12px;
    }


    /* Package */

    .acr-package-item {
        display: block;

        min-height: auto;

        padding: 17px 15px;

        margin-bottom: 12px;
    }


    .acr-package-info {
        margin-bottom: 12px;
    }

    .acr-package-info h3 {
        font-size: 17px;
    }


    .acr-package-places {
        margin-bottom: 15px;

        font-size: 13px;
    }


    .acr-package-action {
        text-align: left;
    }

    .acr-package-action a {
        width: 100%;
    }

}