/* ==========================================
   Contact Page Banner
========================================== */

.contact-page-banner{
    padding:75px 0;
    color:#fff;
    text-align:center;
    background:linear-gradient(135deg,#198754,#0d6efd);
}

.contact-banner-subtitle{
    display:inline-block;
    margin-bottom:12px;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    opacity:.95;
}

.contact-page-banner h1{
    margin-bottom:18px;
    font-size:48px;
    font-weight:700;
}

.contact-page-banner > .container > p{
    max-width:790px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    opacity:.95;
}

.contact-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:28px;
    font-size:14px;
}

.contact-breadcrumb a{
    color:#fff;
    font-weight:600;
    text-decoration:none;
}

.contact-breadcrumb a:hover{
    color:#ffd54f;
}

.contact-breadcrumb i{
    font-size:10px;
    opacity:.75;
}


/* ==========================================
   Shared Heading
========================================== */

.contact-section-heading{
    max-width:760px;
    margin:0 auto 45px;
}

.contact-section-heading > span,
.contact-card-heading > span{
    display:block;
    margin-bottom:8px;
    color:#198754;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.6px;
    text-transform:uppercase;
}

.contact-section-heading h2,
.contact-card-heading h2{
    margin-bottom:13px;
    color:#1f2937;
    font-size:34px;
    font-weight:700;
}

.contact-section-heading p,
.contact-card-heading p{
    margin:0;
    color:#667085;
    font-size:16px;
    line-height:1.8;
}


/* ==========================================
   Contact Information
========================================== */

.contact-info-section{
    padding:80px 0;
    background:#fff;
}

.contact-info-card{
    position:relative;
    display:flex;
    align-items:center;
    flex-direction:column;
    height:100%;
    padding:35px 24px;
    overflow:hidden;
    text-align:center;
    background:#fff;
    border:1px solid #e7ebf0;
    border-radius:18px;
    box-shadow:0 10px 28px rgba(15,23,42,.08);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.contact-info-card::after{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    left:0;
    width:0;
    height:4px;
    margin:auto;
    background:#ff6a00;
    transition:width .35s ease;
}

.contact-info-card:hover{
    transform:translateY(-9px);
    box-shadow:0 19px 42px rgba(15,23,42,.14);
}

.contact-info-card:hover::after{
    width:100%;
}

.contact-info-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:72px;
    height:72px;
    margin-bottom:22px;
    color:#fff;
    font-size:27px;
    background:linear-gradient(135deg,#198754,#0d6efd);
    border-radius:50%;
    box-shadow:0 8px 20px rgba(13,110,253,.2);
    transition:transform .35s ease;
}

.contact-info-card:hover .contact-info-icon{
    transform:rotate(7deg) scale(1.08);
}

.contact-info-card h3{
    margin-bottom:14px;
    color:#1f2937;
    font-size:22px;
    font-weight:700;
}

.contact-info-card p{
    display:flex;
    flex-direction:column;
    gap:7px;
    margin-bottom:14px;
    color:#667085;
    line-height:1.7;
}

.contact-info-card p a{
    color:#667085;
    text-decoration:none;
    transition:color .3s ease;
}

.contact-info-card p a:hover{
    color:#198754;
}

.contact-info-card .contact-address{
    display:block;
}

.contact-card-note{
    margin-top:auto;
    color:#98a2b3;
    font-size:12px;
}


/* ==========================================
   Form and Map Section
========================================== */

.contact-main-section{
    padding:80px 0;
    background:#f6f8fb;
}

.contact-form-card,
.contact-map-card{
    height:100%;
    padding:38px;
    background:#fff;
    border:1px solid #e7ebf0;
    border-radius:20px;
    box-shadow:0 12px 32px rgba(15,23,42,.08);
}

.contact-card-heading{
    margin-bottom:28px;
}


/* ==========================================
   Alert
========================================== */

.contact-alert{
    display:flex;
    align-items:flex-start;
    gap:13px;
    margin-bottom:24px;
    padding:16px 18px;
    border:0;
    border-radius:12px;
}

.contact-alert > i{
    margin-top:3px;
    font-size:20px;
}

.contact-alert ul{
    padding-left:18px;
}


/* ==========================================
   Contact Form
========================================== */

.contact-form-group{
    margin-bottom:5px;
}

.contact-form-group label{
    display:block;
    margin-bottom:8px;
    color:#344054;
    font-size:14px;
    font-weight:600;
}

.contact-form-group label span{
    color:#dc3545;
}

.contact-input-wrapper{
    position:relative;
}

.contact-input-wrapper > i{
    position:absolute;
    top:50%;
    left:16px;
    z-index:2;
    color:#98a2b3;
    font-size:14px;
    transform:translateY(-50%);
    pointer-events:none;
}

.contact-input-wrapper .form-control{
    width:100%;
    min-height:50px;
    padding:12px 15px 12px 44px;
    color:#1f2937;
    background:#f9fafb;
    border:1px solid #dfe4ea;
    border-radius:11px;
    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.contact-input-wrapper .form-control::placeholder{
    color:#98a2b3;
}

.contact-input-wrapper .form-control:focus{
    background:#fff;
    border-color:#1a2db8;
    box-shadow:0 0 0 4px rgba(26,45,184,.09);
}

.contact-textarea-wrapper > i{
    top:18px;
    transform:none;
}

.contact-textarea-wrapper textarea.form-control{
    min-height:155px;
    padding-top:14px;
    resize:vertical;
}

.contact-submit-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:11px;
    min-width:185px;
    padding:13px 27px;
    color:#fff;
    font-weight:700;
    border:0;
    border-radius:30px;
    background:#1a2db8;
    box-shadow:0 8px 20px rgba(26,45,184,.2);
    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.contact-submit-button:hover{
    color:#fff;
    background:#198754;
    box-shadow:0 12px 25px rgba(25,135,84,.25);
    transform:translateY(-2px);
}

.contact-submit-button i{
    transition:transform .3s ease;
}

.contact-submit-button:hover i{
    transform:translateX(4px);
}


/* ==========================================
   Map
========================================== */

.contact-map-wrapper{
    height:430px;
    overflow:hidden;
    border-radius:16px;
    border:1px solid #e3e7ec;
}

.contact-map-wrapper iframe{
    display:block;
    width:100%;
    height:100%;
    border:0;
}

.contact-map-address{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:20px;
    padding:17px;
    background:#f6f8fb;
    border-radius:13px;
}

.contact-map-address-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    width:48px;
    height:48px;
    color:#fff;
    background:#198754;
    border-radius:50%;
}

.contact-map-address strong{
    display:block;
    margin-bottom:3px;
    color:#1f2937;
}

.contact-map-address p{
    margin:0;
    color:#667085;
    font-size:14px;
}


/* ==========================================
   Call to Action
========================================== */

.contact-cta-section{
    padding:60px 0;
    color:#fff;
    background:linear-gradient(135deg,#198754,#0d6efd);
}

.contact-cta-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:35px;
}

.contact-cta-content span{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    opacity:.9;
}

.contact-cta-content h2{
    margin-bottom:10px;
    font-size:32px;
    font-weight:700;
}

.contact-cta-content p{
    max-width:720px;
    margin:0;
    font-size:16px;
    line-height:1.7;
    opacity:.92;
}

.contact-cta-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    gap:10px;
    padding:13px 27px;
    color:#1a2db8;
    font-weight:700;
    text-decoration:none;
    background:#fff;
    border-radius:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:
        transform .3s ease,
        color .3s ease;
}

.contact-cta-button:hover{
    color:#198754;
    transform:translateY(-3px);
}


/* ==========================================
   Responsive
========================================== */

@media(max-width:991px){

    .contact-page-banner{
        padding:65px 0;
    }

    .contact-page-banner h1{
        font-size:41px;
    }

    .contact-form-card,
    .contact-map-card{
        padding:30px;
    }

    .contact-cta-content{
        align-items:flex-start;
        flex-direction:column;
    }

}

@media(max-width:767px){

    .contact-page-banner{
        padding:52px 20px;
    }

    .contact-page-banner h1{
        font-size:34px;
    }

    .contact-page-banner > .container > p{
        font-size:16px;
    }

    .contact-info-section,
    .contact-main-section{
        padding:60px 0;
    }

    .contact-section-heading h2,
    .contact-card-heading h2{
        font-size:28px;
    }

    .contact-form-card,
    .contact-map-card{
        padding:24px;
        border-radius:16px;
    }

    .contact-map-wrapper{
        height:350px;
    }

    .contact-submit-button{
        width:100%;
    }

    .contact-cta-content h2{
        font-size:27px;
    }

}

@media(max-width:575px){

    .contact-page-banner h1{
        font-size:30px;
    }

    .contact-info-card{
        padding:30px 22px;
    }

    .contact-map-wrapper{
        height:300px;
    }

    .contact-cta-button{
        width:100%;
    }

}