/*==========================================================
CHEROMEGA CLEANING SERVICES
Contact Page Styles
File: assets/css/contact.css
==========================================================*/

/*==========================================================
Page Banner
==========================================================*/

.page-banner{
    position:relative;
    background:#0d6efd;
    background-image:linear-gradient(135deg,#0d6efd,#0b5ed7);
    padding:90px 0;
    color:#fff;
    text-align:center;
}

.page-banner h1{
    font-size:46px;
    font-weight:700;
    margin-bottom:15px;
}

.page-banner p{
    font-size:18px;
    max-width:700px;
    margin:auto;
    opacity:.9;
}

.breadcrumb{
    justify-content:center;
    background:none;
    margin-top:20px;
    margin-bottom:0;
}

.breadcrumb-item a{
    color:#ffffff;
    text-decoration:none;
}

.breadcrumb-item.active{
    color:#d8e8ff;
}

/*==========================================================
Contact Section
==========================================================*/

.contact-section{
    padding:90px 0;
    background:#f8fafc;
}

.contact-section .section-title{
    margin-bottom:60px;
}

.contact-section h2{
    font-size:40px;
    font-weight:700;
    color:#222;
}

.contact-section p{
    color:#666;
    line-height:1.8;
}

/*==========================================================
Contact Cards
==========================================================*/

.contact-info .card{
    border:none;
    border-radius:15px;
    transition:.3s;
    margin-bottom:25px;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.contact-info .card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.contact-info .card-body{
    padding:30px;
}

.contact-info i{
    width:60px;
    height:60px;
    line-height:60px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    text-align:center;
    font-size:22px;
    margin-bottom:20px;
}

.contact-info h5{
    font-weight:700;
    margin-bottom:10px;
    color:#222;
}

.contact-info p{
    margin:0;
    color:#666;
}

.contact-info a{
    color:#0d6efd;
    text-decoration:none;
}

.contact-info a:hover{
    color:#084298;
}

/*==========================================================
Contact Form
==========================================================*/

.contact-form-card{
    background:#fff;
    border-radius:15px;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
    padding:40px;
}

.contact-form-card h3{
    margin-bottom:30px;
    font-weight:700;
    color:#222;
}

.contact-form label{
    font-weight:600;
    margin-bottom:8px;
    color:#333;
}

.contact-form .form-control{
    border:1px solid #d9dee5;
    border-radius:10px;
    padding:14px 18px;
    font-size:15px;
    transition:.3s;
    box-shadow:none;
}

.contact-form .form-control:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .25rem rgba(13,110,253,.15);
}

.contact-form textarea.form-control{
    min-height:180px;
    resize:vertical;
}
/*==========================================================
Submit Button
==========================================================*/

.contact-form .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#0d6efd;
    color:#fff;
    border:none;
    border-radius:10px;
    padding:15px 40px;
    font-size:16px;
    font-weight:600;
    transition:all .35s ease;
    cursor:pointer;
    text-decoration:none;
}

.contact-form .btn:hover{
    background:#0b5ed7;
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(13,110,253,.30);
}

.contact-form .btn:active{
    transform:translateY(0);
}

.contact-form .btn i{
    font-size:15px;
}

/*==========================================================
Button Loading State
==========================================================*/

.contact-form .btn.loading{
    pointer-events:none;
    opacity:.75;
}

.contact-form .btn.loading i{
    animation:spin 1s linear infinite;
}

@keyframes spin{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

/*==========================================================
Alerts
==========================================================*/

.alert{
    border:none;
    border-radius:10px;
    padding:16px 20px;
    margin-bottom:25px;
    font-size:15px;
    font-weight:500;
}

.alert-success{
    color:#0f5132;
    background:#d1e7dd;
    border-left:5px solid #198754;
}

.alert-danger{
    color:#842029;
    background:#f8d7da;
    border-left:5px solid #dc3545;
}

.alert-warning{
    color:#664d03;
    background:#fff3cd;
    border-left:5px solid #ffc107;
}

.alert-info{
    color:#055160;
    background:#cff4fc;
    border-left:5px solid #0dcaf0;
}

/*==========================================================
Validation
==========================================================*/

.form-control.is-invalid{
    border-color:#dc3545;
}

.form-control.is-valid{
    border-color:#198754;
}

.invalid-feedback{
    display:block;
    color:#dc3545;
    font-size:14px;
    margin-top:6px;
}

.valid-feedback{
    display:block;
    color:#198754;
    font-size:14px;
    margin-top:6px;
}

/*==========================================================
Google Map
==========================================================*/

.map-wrapper{
    margin-top:70px;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.map-wrapper iframe{
    width:100%;
    height:450px;
    border:none;
    display:block;
}

/*==========================================================
Business Hours
==========================================================*/

.business-hours{
    background:#ffffff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
    margin-top:30px;
}

.business-hours h4{
    margin-bottom:20px;
    font-weight:700;
    color:#222;
}

.business-hours ul{
    margin:0;
    padding:0;
    list-style:none;
}

.business-hours li{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    border-bottom:1px solid #ececec;
    color:#555;
}

.business-hours li:last-child{
    border-bottom:none;
}

/*==========================================================
Social Links
==========================================================*/

.contact-social{
    margin-top:35px;
}

.contact-social h5{
    font-weight:700;
    margin-bottom:20px;
}

.contact-social a{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    width:48px;
    height:48px;
    margin-right:10px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.contact-social a:hover{
    background:#0b5ed7;
    transform:translateY(-4px);
}

/*==========================================================
Animation
==========================================================*/

.contact-info .card,
.contact-form-card,
.map-wrapper{
    animation:fadeUp .8s ease both;
}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}