

/*---------------------------------------
     CONTACT PAGE STYLES
-----------------------------------------*/
.contact-info-box h2 {
    margin-bottom: 25px;
    font-size: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    background: #f0f8ff;
    color: #147bd7;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-form-wrapper .form-control {
    border: 1px solid #f0f0f0;
    background: #f9f9f9;
    box-shadow: none;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.contact-form-wrapper textarea.form-control {
    height: auto;
}

.contact-form-wrapper .form-control:focus {
    border-color: #147bd7;
    background: #ffffff;
}

.contact-form-wrapper .section-btn {
    width: 100%;
    padding: 15px;
}

/* Map Section */
.google-map {
    border-top: 5px solid #147bd7;
}

