/* =========================================
   AAYUSH CAR RENTAL
   CONTACT SECTION
   THEME: RED + BLACK + WHITE
========================================= */

.acr-contact-section {
    width: 100%;
    padding: 70px 15px;

    background: #ffffff;

    font-family: 'Montserrat', Arial, sans-serif;

    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.acr-contact-container {
    max-width: 1150px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.acr-contact-heading {
    text-align: center;
    margin-bottom: 40px;
}


.acr-contact-heading span {
    display: block;

    margin-bottom: 8px;

    color: #e00000;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.acr-contact-heading h2 {
    margin: 0 0 12px 0;

    color: #111111;

    font-size: 32px;
    font-weight: 700;

    line-height: 1.3;
}


.acr-contact-heading h2 strong {
    color: #e00000;

    font-weight: 700;
}


.acr-contact-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #777777;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.acr-contact-grid {

    display: grid;

    grid-template-columns: 42% 58%;

    gap: 30px;

    align-items: stretch;
}


/* =========================================
   CONTACT INFO
========================================= */

.acr-contact-info {

    padding: 30px;

    background: #111111;

    border-radius: 4px;

    box-sizing: border-box;
}


/* =========================================
   CONTACT CARD
========================================= */

.acr-contact-card {

    display: flex;

    align-items: flex-start;

    padding: 20px 0;

    border-bottom: 1px solid #333333;
}


.acr-contact-card:first-child {
    padding-top: 0;
}


.acr-contact-card:last-of-type {
    border-bottom: none;
}


.acr-contact-icon {

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    margin-right: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #e00000;

    color: #ffffff;

    border-radius: 50%;

    font-size: 18px;

    box-sizing: border-box;
}


/* =========================================
   CONTACT TEXT
========================================= */

.acr-contact-text h3 {

    margin: 0 0 7px 0;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;
}


.acr-contact-text p {

    margin: 0;

    color: #cccccc;

    font-size: 12px;

    line-height: 1.8;
}


.acr-contact-text a {

    color: #cccccc;

    font-size: 12px;

    text-decoration: none;

    transition: color 0.2s ease;
}


.acr-contact-text a:hover {

    color: #e00000;

    text-decoration: none;
}


/* =========================================
   CALL BUTTON
========================================= */

.acr-contact-action {

    margin-top: 25px;
}


.acr-contact-action a {

    display: block;

    width: 100%;

    padding: 14px 15px;

    background: #e00000;

    color: #ffffff;

    text-align: center;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;

    border-radius: 2px;

    box-sizing: border-box;

    transition: all 0.25s ease;
}


.acr-contact-action a:hover {

    background: #ffffff;

    color: #111111;

    text-decoration: none;
}


/* =========================================
   GOOGLE MAP
========================================= */

.acr-contact-map {

    width: 100%;

    min-height: 450px;

    overflow: hidden;

    border-radius: 4px;

    border: 1px solid #dddddd;

    box-sizing: border-box;
}


.acr-contact-map iframe {

    display: block;

    width: 100%;

    height: 100%;

    min-height: 450px;

    border: 0;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .acr-contact-section {

        padding: 45px 12px;

    }


    .acr-contact-heading {

        margin-bottom: 30px;

    }


    .acr-contact-heading h2 {

        font-size: 24px;

    }


    .acr-contact-heading p {

        font-size: 12px;

        line-height: 1.7;

    }


    .acr-contact-grid {

        display: block;

    }


    .acr-contact-info {

        padding: 25px 20px;

        margin-bottom: 20px;

    }


    .acr-contact-card {

        padding: 17px 0;

    }


    .acr-contact-icon {

        width: 40px;
        height: 40px;

        flex: 0 0 40px;

        font-size: 16px;

    }


    .acr-contact-text h3 {

        font-size: 13px;

    }


    .acr-contact-text p,
    .acr-contact-text a {

        font-size: 11px;

    }


    .acr-contact-map {

        min-height: 350px;

    }


    .acr-contact-map iframe {

        min-height: 350px;

    }

}