/* =========================================
   AAYUSH CAR RENTAL
   SERVICES SECTION
   THEME: BLACK + RED + WHITE
========================================= */

.acr-services {
    padding: 75px 20px;
    background: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
}

.acr-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.acr-section-heading {
    max-width: 750px;
    margin: 0 auto 50px;
    text-align: center;
}

.acr-subtitle {
    display: inline-block;
    margin-bottom: 8px;

    color: #e00000;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.acr-section-heading h2 {
    margin: 0 0 14px;

    color: #151515;

    font-size: 38px;
    font-weight: 600;
    line-height: 1.25;
}

.acr-section-heading h2 strong {
    color: #e00000;
    font-weight: 700;
}

.acr-section-heading p {
    max-width: 680px;
    margin: 0 auto;

    color: #666666;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   SERVICES GRID
========================================= */

.acr-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* =========================================
   SERVICE CARD
========================================= */

.acr-service-card {
    position: relative;

    padding: 30px 24px 27px;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);

    overflow: hidden;

    transition: all 0.3s ease;
}


/* Red top line */

.acr-service-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: #e00000;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.3s ease;
}


/* Hover */

.acr-service-card:hover {
    transform: translateY(-6px);

    border-color: #e00000;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.acr-service-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   SERVICE NUMBER
========================================= */

.acr-service-number {
    position: absolute;

    top: 15px;
    right: 17px;

    color: #f1f1f1;

    font-size: 42px;
    font-weight: 700;

    line-height: 1;
}


/* =========================================
   SERVICE ICON
========================================= */

.acr-service-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background: #151515;

    border-radius: 50%;

    color: #ffffff;

    font-size: 22px;

    transition: all 0.3s ease;
}


/* Icon hover */

.acr-service-card:hover .acr-service-icon {
    background: #e00000;
}


/* =========================================
   SERVICE TITLE
========================================= */

.acr-service-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 12px;

    color: #151515;

    font-size: 18px;
    font-weight: 600;

    line-height: 1.4;
}

.acr-service-card:hover h3 {
    color: #e00000;
}


/* =========================================
   SERVICE DESCRIPTION
========================================= */

.acr-service-card p {
    position: relative;
    z-index: 2;

    margin: 0 0 20px;

    color: #666666;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   SERVICE LINK
========================================= */

.acr-service-card a {
    position: relative;
    z-index: 2;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: #151515;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.acr-service-card a span {
    color: #e00000;

    font-size: 18px;

    transition: transform 0.3s ease;
}

.acr-service-card a:hover {
    color: #e00000;
}

.acr-service-card a:hover span {
    transform: translateX(5px);
}


/* =========================================
   CTA SECTION
========================================= */

.acr-services-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 50px;
    padding: 32px 38px;

    background: #151515;

    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


/* =========================================
   CTA CONTENT
========================================= */

.acr-cta-content span {
    display: block;

    margin-bottom: 7px;

    color: #e00000;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.acr-services-cta h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 600;
}

.acr-services-cta p {
    margin: 0;

    color: #bbbbbb;

    font-size: 13px;
}


/* =========================================
   CTA BUTTONS
========================================= */

.acr-cta-buttons {
    display: flex;
    gap: 10px;

    flex-shrink: 0;
}

.acr-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-width: 125px;

    padding: 12px 20px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* CALL BUTTON */

.acr-btn-primary {
    background: #e00000;
    color: #ffffff;
}

.acr-btn-primary:hover {
    background: #ffffff;
    color: #151515;
}


/* WHATSAPP */

.acr-btn-whatsapp {
    background: #ffffff;
    color: #151515;
}

.acr-btn-whatsapp:hover {
    background: #e00000;
    color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .acr-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .acr-services {
        padding: 55px 15px;
    }

    .acr-section-heading {
        margin-bottom: 35px;
    }

    .acr-section-heading h2 {
        font-size: 28px;
    }

    .acr-section-heading p {
        font-size: 13px;
    }

    .acr-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .acr-service-card {
        padding: 25px 21px;
    }

    .acr-services-cta {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 30px;

        padding: 27px 22px;
    }

    .acr-services-cta h3 {
        font-size: 20px;
    }

    .acr-cta-buttons {
        width: 100%;
    }

    .acr-btn {
        flex: 1;
        min-width: 0;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .acr-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .acr-btn {
        width: 100%;
    }

}