/* ==========================================
   EASYPUJA CONTACT PAGE
========================================== */


.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: stretch;
}


/* ==========================================
   LEFT CONTACT INFORMATION
========================================== */

.contact-info-card {
    background:
        linear-gradient(
            145deg,
            #491010,
            #7d2119
        );

    color: #ffffff;

    border-radius: 28px;

    padding: 42px 38px;

    box-shadow:
        0 18px 50px
        rgba(74, 24, 17, .16);

    position: relative;

    overflow: hidden;
}


.contact-info-card::before {

    content: "ॐ";

    position: absolute;

    right: -10px;
    top: -35px;

    font-family: Georgia, serif;

    font-size: 190px;

    color:
        rgba(255, 255, 255, .04);

    pointer-events: none;
}


.contact-small-title {

    display: inline-block;

    color: #f47b20;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.8px;

    margin-bottom: 12px;
}


.contact-info-card
.contact-small-title {

    color: #ffd18d;
}


.contact-info-card h2 {

    font-family:
        Georgia, serif;

    font-size: 39px;

    line-height: 1.2;

    margin:
        0 0 15px;

    color: #ffffff;
}


.contact-intro {

    color: #edd6ce;

    line-height: 1.8;

    margin-bottom: 30px;
}


.contact-details {

    display: grid;

    gap: 14px;

    margin-bottom: 30px;
}


.contact-detail {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 17px;

    border:
        1px solid
        rgba(255, 255, 255, .10);

    background:
        rgba(255, 255, 255, .06);

    border-radius: 16px;
}


.contact-icon {

    width: 43px;

    height: 43px;

    flex: 0 0 43px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        rgba(255, 221, 169, .14);

    font-size: 19px;
}


.contact-detail strong {

    display: block;

    color: #ffffff;

    margin-bottom: 5px;

    font-size: 14px;
}


.contact-detail span,
.contact-detail a {

    color: #e8cec4;

    font-size: 14px;

    line-height: 1.6;
}


.contact-detail a:hover {

    color: #ffd08a;
}


.contact-book-btn {

    background:
        linear-gradient(
            135deg,
            #ffa238,
            #f47b20
        );
}


/* ==========================================
   CONTACT FORM
========================================== */

.contact-form-card {

    background: #ffffff;

    border:
        1px solid #eadac8;

    border-radius: 28px;

    padding: 42px;

    box-shadow:
        0 18px 50px
        rgba(76, 31, 20, .10);
}


.contact-form-card h2 {

    font-family: Georgia, serif;

    font-size: 38px;

    color: #4d251f;

    margin:
        5px 0 8px;
}


.contact-form-subtitle {

    color: var(--muted);

    margin:
        0 0 28px;

    line-height: 1.7;
}


#contactForm {

    display: grid;

    gap: 19px;
}


.contact-field {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.contact-field label {

    color: #54322b;

    font-size: 14px;

    font-weight: 800;
}


.contact-field label span {

    color: #d44720;
}


.contact-field input,
.contact-field select {

    width: 100%;

    border:
        1px solid #ddccbd;

    background: #fffaf5;

    border-radius: 13px;

    padding:
        14px 15px;

    color: #49332e;

    outline: none;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.contact-field input:focus,
.contact-field select:focus {

    border-color: #e8a14c;

    background: #ffffff;

    box-shadow:
        0 0 0 3px
        rgba(244, 123, 32, .10);
}


.contact-submit {

    width: 100%;

    padding: 15px;

    margin-top: 5px;

    border-radius: 14px;
}


.contact-success {

    display: none;

    margin-top: 4px;

    padding: 14px 16px;

    background: #f0faf2;

    border:
        1px solid #cde8d2;

    color: #267138;

    border-radius: 12px;

    font-size: 14px;

    line-height: 1.6;
}


/* ==========================================
   WHATSAPP
========================================== */

.whatsapp-float {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 62px;

    height: 62px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #25D366;

    color: #ffffff;

    z-index: 9999;

    box-shadow:
        0 8px 25px
        rgba(37, 211, 102, .38);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.whatsapp-float:hover {

    transform:
        translateY(-4px)
        scale(1.05);

    box-shadow:
        0 12px 30px
        rgba(37, 211, 102, .47);
}


.whatsapp-float svg {

    width: 35px;

    height: 35px;
}


.float-book {

    bottom: 100px !important;

    right: 22px !important;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px) {

    .contact-layout {

        grid-template-columns:
            1fr;
    }

}


@media (max-width: 600px) {

    .contact-info-card,
    .contact-form-card {

        padding:
            30px 22px;

        border-radius: 22px;
    }


    .contact-info-card h2 {

        font-size: 31px;
    }


    .contact-form-card h2 {

        font-size: 32px;
    }


    .whatsapp-float {

        width: 56px;

        height: 56px;

        right: 16px;

        bottom: 16px;
    }


    .whatsapp-float svg {

        width: 31px;

        height: 31px;
    }


    .float-book {

        right: 16px !important;

        bottom: 84px !important;
    }

}