/* =========================================
   AAYUSH CAR RENTAL
   WHY CHOOSE US
   BLACK + RED + WHITE
========================================= */

.acr-why-us {
    padding: 80px 20px;

    background: #f7f7f7;

    font-family: 'Montserrat', Arial, sans-serif;
}

.acr-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   LEFT CONTENT
========================================= */

.acr-why-content {
    padding-right: 45px;
}

.acr-why-subtitle {
    display: inline-block;

    margin-bottom: 10px;

    padding-left: 12px;

    border-left: 4px solid #e00000;

    color: #e00000;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.acr-why-content h2 {
    margin: 0 0 18px;

    color: #151515;

    font-size: 38px;

    font-weight: 600;

    line-height: 1.25;
}


.acr-why-content h2 strong {
    color: #e00000;

    font-weight: 700;
}


.acr-why-content p {
    margin: 0 0 15px;

    color: #666666;

    font-size: 14px;

    line-height: 1.8;
}


.acr-why-content .acr-why-intro {
    color: #333333;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   BUTTON
========================================= */

.acr-why-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 12px;

    padding: 13px 24px;

    background: #e00000;

    border: 2px solid #e00000;

    border-radius: 5px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


.acr-why-btn:hover {
    background: #151515;

    border-color: #151515;

    color: #ffffff;

    text-decoration: none;
}


/* =========================================
   FEATURE GRID
========================================= */

.acr-why-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}


/* =========================================
   FEATURE CARD
========================================= */

.acr-why-card {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 23px 20px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 7px;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;
}


.acr-why-card:hover {
    transform: translateY(-4px);

    border-color: #e00000;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
}


/* =========================================
   ICON
========================================= */

.acr-why-icon {
    flex: 0 0 48px;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #151515;

    border-radius: 50%;

    color: #ffffff;

    font-size: 19px;

    transition: all 0.3s ease;
}


.acr-why-card:hover .acr-why-icon {
    background: #e00000;
}


/* =========================================
   CARD CONTENT
========================================= */

.acr-why-card h3 {
    margin: 2px 0 7px;

    color: #151515;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.4;
}


.acr-why-card p {
    margin: 0;

    color: #707070;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .acr-why-content {
        padding-right: 0;

        margin-bottom: 40px;
    }

    .acr-why-content h2 {
        font-size: 34px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .acr-why-us {
        padding: 55px 15px;
    }

    .acr-why-content {
        margin-bottom: 30px;
    }

    .acr-why-content h2 {
        font-size: 28px;
    }

    .acr-why-content p {
        font-size: 13px;
    }

    .acr-why-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .acr-why-card {
        padding: 20px 18px;
    }

}