/* .contact-section {
    background: #f8fbff;
} */

.contact-wrapper {
    /* border-radius: 20px; */
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    background: #fff;
}

/* Left Side */
.contact-info-box {
    background: #0077b5;
    color: #fff;
    padding: 50px 35px;
}

.contact-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 18px;
}

.contact-info-box h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.contact-info-box > p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 28px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.contact-info-item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #fff;
}

.contact-info-item p {
    margin: 0;
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
}

/* Right Side */
.contact-form-box {
    background: #d3ecf8;
    padding: 50px 35px;
    height: 100%;
}

.contact-form-box h4 {
    font-size: 28px;
    font-weight: 700;
    color: #0b1c39;
}

.contact-input {
    height: 56px;
    border: 1px solid #d9e2ec;
    padding: 12px 18px;
    font-size: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
}

textarea.contact-input {
    height: auto;
    min-height: 160px;
    resize: none;
    padding-top: 15px;
}

.contact-input:focus {
    border-color: #0077b5;
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.12);
}

.contact-btn {
    background: #0077b5;
    color: #fff;
    border: none;
    height: 58px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    color: #fff;
    /* transform: translateY(-2px); */
    box-shadow: 0 10px 20px rgba(13,110,253,0.22);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-box,
    .contact-form-box {
        padding: 35px 25px;
    }

    .contact-info-box h3,
    .contact-form-box h4 {
        font-size: 24px;
    }

    .contact-section, .map-section{
        padding: 0px 25px !important;
    }
}