/* ===========================
   Contact Page Styles
   =========================== */

.contact-card-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    padding: 60px 50px;
    margin-top: -80px;
    position: relative;
    z-index: 5;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-side {
    padding-right: 40px;
}

.contact-info-side h2 {
    font-size: 28px;
    color: #0f2457;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info-side p {
    font-size: 15px;
    color: #606060;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 50px;
    justify-content: center;
    width: 100%;
}

.contact-social-icons a {
    width: 48px;
    height: 48px;
    line-height: 46px;
    /* Adjusted for border */
    text-align: center;
    background: #fff;
    color: #c0c0c0;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.contact-social-icons a:hover {
    background: #00afef;
    color: #fff;
    border-color: #00afef;
    animation: bounce 0.4s ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    font-size: 14.5px;
    color: #0f2457;
    line-height: 1.5;
}

.contact-details-list li i {
    color: #00afef;
    font-size: 20px;
    margin-top: 3px;
}

.contact-details-list li a {
    color: #0f2457;
    transition: 0.3s;
}

.contact-details-list li a:hover {
    color: #00afef;
}

/* Form Side */
.contact-form-side {
    padding-left: 40px;
    border-left: 1px solid #eee;
}

.contact-form-side h2 {
    font-size: 32px;
    color: #0f2457;
    margin-bottom: 35px;
    font-weight: 700;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    height: 55px;
    padding: 0 20px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 15px;
    color: #0f2457;
    background-color: #fbfbfb;
}

.contact-form .form-control:focus {
    border-color: #00afef;
    box-shadow: none;
    background-color: #fff;
}

.contact-form textarea.form-control {
    height: 180px;
    padding-top: 20px;
}

.contact-form .btn-submit {
    background-color: #00afef;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.5s;
    box-shadow: 0 4px 15px rgba(0, 175, 239, 0.3);
}

.contact-form .btn-submit:hover {
    background-color: #0f2457;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(15, 36, 87, 0.2);
}

@media (max-width: 991px) {
    .contact-card-container {
        padding: 40px 30px;
        margin-top: -30px;
    }

    .contact-info-side {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .contact-form-side {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 50px;
    }
}