/*==========================================
CONTACT PAGE
==========================================*/

/* Banner */

.contact-banner {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #4B1F6F, #8A2BE2, #F06292);
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.contact-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/crystal-pattern.png");
    opacity: .08;
}

.contact-banner h1 {
    font-size: 55px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-banner p {
    font-size: 18px;
    opacity: .9;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ffd6f0;
}

/*==============================
CONTACT INFO
==============================*/

.info-card {

    background: #ee06b1;

    border-radius: 20px;

    padding: 35px 25px;

    text-align: center;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

    transition: .4s;

    height: 100%;

}

.info-card:hover {

    transform: translateY(-10px);

    background: linear-gradient(135deg, #8A2BE2, #F06292);

    color: #fff;

}

.info-card .icon {

    width: 80px;

    height: 80px;

    background: #8A2BE2;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: auto;

    margin-bottom: 20px;

    transition: .4s;

}

.info-card:hover .icon {

    background: #fff;

    color: #8A2BE2;

}

.info-card i {

    font-size: 32px;

}

.info-card a {

    color: inherit;

    text-decoration: none;

}

/*==============================
CONTACT FORM
==============================*/

.contact-form {

    background: #fff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.contact-form h2 {

    font-family: 'Cinzel', serif;

    margin-bottom: 15px;

}

.contact-form .form-control,

.contact-form .form-select {

    border-radius: 12px;

    padding: 14px;

    border: 1px solid #ddd;

}

.contact-form .form-control:focus,

.contact-form .form-select:focus {

    border-color: #8A2BE2;

    box-shadow: 0 0 10px rgba(138, 43, 226, .25);

}

/*==============================
MAP
==============================*/

.map-section iframe {

    display: block;

    width: 100%;

    border: none;

}

/*==============================
BUSINESS HOURS
==============================*/

.hours-box {

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    overflow: hidden;

}

.hour-item {

    display: flex;

    justify-content: space-between;

    padding: 18px 30px;

    border-bottom: 1px solid #eee;

}

.hour-item:last-child {

    border-bottom: none;

}

.hour-item strong {

    color: #8A2BE2;

}

/*==============================
WHY CONTACT
==============================*/

.contact-service {

    background: #ee06b1;

    border-radius: 20px;

    padding: 35px;

    text-align: center;

    transition: .4s;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

    height: 100%;

}

.contact-service:hover {

    transform: translateY(-10px);

    background: linear-gradient(135deg, #8A2BE2, #F06292);

    color: #fff;

}

.contact-service i {

    font-size: 45px;

    color: #fbff00;

    margin-bottom: 20px;

    transition: .4s;

}

.contact-service:hover i {

    color: #fff;

}

/*==============================
FAQ
==============================*/

.accordion-button:not(.collapsed) {

    background: #8A2BE2;

    color: #fff;

}

/*==============================
CTA
==============================*/

.contact-cta {

    background: linear-gradient(135deg, #8A2BE2, #F06292);

    padding: 70px 0;

    color: #fff;

}

.contact-cta h2 {

    font-family: 'Cinzel', serif;

    font-size: 40px;

}

.contact-cta p {

    opacity: .9;

}

.contact-cta .btn {

    padding: 15px 35px;

    border-radius: 50px;

}

/*==============================
SOCIAL ICONS
==============================*/

.contact-social {

    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 30px;

}

.contact-social a {

    width: 50px;

    height: 50px;

    background: #8A2BE2;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition: .4s;

}

.contact-social a:hover {

    background: #F06292;

    transform: translateY(-5px);

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px) {

    .contact-banner h1 {

        font-size: 42px;

    }

    .contact-form {

        margin-top: 40px;

    }

}

@media(max-width:768px) {

    .contact-banner {

        padding: 120px 0 70px;

    }

    .contact-banner h1 {

        font-size: 34px;

    }

    .hour-item {

        flex-direction: column;

        text-align: center;

        gap: 8px;

    }

    .contact-cta {

        text-align: center;

    }

}