/*==================================
    CONTACT PAGE
==================================*/

:root {
    --pink: #f5386d;
    --orange: #ff8a1e;
    --gradient: linear-gradient(90deg, #f5386d 0%, #ff8a1e 100%);
    --dark: #1a1a2e;
    --gray: #777;
    --border: #ececec;
    --light: #fff8f8;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
}

.contact-section {
    background: #fff;
    padding: 80px 0;
}


.breadcrumb {
    padding: 22px 0;
}

/*=========================
    MAIN CARD
=========================*/

.contact-wrapper {

    background: #fff;

    border-radius: 28px;

    padding: 45px;

    box-shadow:
        0 15px 60px rgba(0, 0, 0, .08);

    border: 1px solid #f2f2f2;

    position: relative;

    overflow: hidden;

}

.contact-wrapper::before {

    content: "";

    position: absolute;

    right: -120px;
    bottom: -120px;

    width: 350px;
    height: 350px;

    background:
        radial-gradient(circle,
            rgba(245, 56, 109, .08) 0%,
            transparent 70%);

}

/*=====================
LEFT PANEL
=====================*/

.contact-left {

    padding-right: 35px;
    height: 100%;

    border-right: 1px solid #efefef;

}

.contact-tag {

    display: inline-block;

    color: var(--pink);

    font-weight: 700;

    font-size: 14px;

    letter-spacing: 2px;

    margin-bottom: 18px;

}

.contact-left h2 {

    font-size: 25px;

    line-height: 1.25;

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 22px;

}

.title-line {

    width: 60px;

    height: 3px;

    border-radius: 30px;

    background: var(--gradient);

    margin: 20px 0;

}

.contact-left p {

    color: #666;

    font-size: 15px;

    line-height: 30px;

    margin-bottom: 35px;

}

/*======================
INFO BOX
======================*/

.info-box {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 35px;

}

.info-icon {

    width: 62px;

    height: 62px;

    border-radius: 18px;

    background: #fff3f5;

    color: var(--pink);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    flex-shrink: 0;

    box-shadow:
        0 8px 20px rgba(245, 56, 109, .12);

}

.info-box h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.info-box span {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 13px;
}

.info-box small {
    display: block;
    color: #777;
    line-height: 16px;
    font-size: 13px;
}

/*=========================
FORM
=========================*/

.contact-form {
    padding: 0 40px;
}

.contact-form label {

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 10px;

    display: block;

}

.contact-form label span {

    color: red;

}

.contact-form .form-control,

.contact-form .form-select {

    height: 58px;

    border-radius: 12px;

    border: 1px solid #e8e8e8;

    box-shadow: none;

    font-size: 15px;

    padding-left: 18px;

    transition: .3s;

}

.contact-form textarea.form-control {

    height: 160px;

    resize: none;

    padding-top: 15px;

}

.form-control-pdf-file{
    height: 37px !important;
}

.contact-form .form-control:focus,

.contact-form .form-select:focus {

    border-color: var(--pink);

    box-shadow:
        0 0 0 .2rem rgba(245, 56, 109, .12);

}

/*==========================
BUTTON
==========================*/

.btn-send {

    height: 58px;

    border: none;

    border-radius: 12px;

    background: var(--gradient);

    color: #fff;

    font-size: 17px;

    font-weight: 600;

    transition: .3s;

}

.btn-send:hover {

    transform: translateY(-2px);

    color: #fff;

    box-shadow:
        0 15px 30px rgba(245, 56, 109, .30);

}

/*=======================
RIGHT PANEL
=======================*/

.contact-right {

    background: #fff7f8;

    border-radius: 22px;

    padding: 35px 28px;

    height: 100%;

}

.contact-right h4 {
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--dark);
    font-size: 18px;
}

.feature-box {

    display: flex;

    gap: 18px;

    margin-top: 35px;

}

.feature-icon {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    background: #fff3f500;

    color: var(--pink);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    flex-shrink: 0;

    box-shadow:
        0 10px 25px rgba(245, 56, 109, .10);

}

.feature-box h6 {

    font-weight: 600;

    margin-bottom: 8px;

}

.feature-box p {

    color: #666;

    line-height: 16px;

    font-size: 13px;

    margin: 0;

}

/*==========================
BOTTOM SUPPORT
==========================*/

.support-box {

    margin-top: 60px;

    background:
        linear-gradient(90deg,
            #fff6f7,
            #fff);

    border-radius: 24px;

    padding: 35px 40px;

    position: relative;

    overflow: hidden;

}

.support-box::after {

    content: "";

    position: absolute;

    right: -60px;
    bottom: -60px;

    width: 240px;
    height: 240px;

    background:
        radial-gradient(circle,
            rgba(245, 56, 109, .08),
            transparent 70%);

}

.support-content {

    display: flex;

    align-items: center;

    gap: 25px;

}

.support-content img {

    width: 90px;

}

.support-content h3 {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 10px;

}

.support-content p {

    color: #666;

    margin: 0;

    line-height: 30px;

}

.contact_down_bg {
    margin-left: -30px;
    margin-top: -65px;
    width: 120%;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1199px) {

    .contact-form {
        padding: 0 25px;
    }

    .contact_down_bg {
        margin-top: 0;
    }

    .contact-left h2 {

        font-size: 34px;

    }

}

@media(max-width:991px) {

    .contact-left {

        border: none;

        padding-right: 0;

        margin-bottom: 50px;

    }

    .contact-form {

        padding: 0;

        margin-bottom: 40px;

    }

    .contact-right {

        margin-top: 0px;

    }

    .support-content {

        flex-direction: column;

        text-align: center;

    }

    .support-box {

        text-align: center;

    }

}

@media(max-width:767px) {

    .contact-wrapper {

        padding: 25px;

        border-radius: 18px;

    }

    .contact-left h2 {

        font-size: 30px;

    }

    .support-content h3 {

        font-size: 24px;

    }

    .info-box {

        gap: 15px;

    }

    .info-icon {

        width: 52px;
        height: 52px;
        font-size: 20px;

    }

    .contact-form .form-control,
    .contact-form .form-select {

        height: 52px;

    }

    .btn-send {

        height: 54px;

    }

}

.country-code {
    max-width: 105px;
    border-radius: 6px 0 0 6px;
    cursor: pointer;
}

.country-code:focus,
.form-control:focus {
    box-shadow: none;
    border-color: #f5386d;
}

.input-group .form-control {
    border-radius: 0 6px 6px 0;
}