.contact-common-menu {
    background: #f8fbff;
    border-bottom: 1px solid rgba(28, 105, 157, .10);
}

.contact-common-menu .cmn_menu ul {
    gap: 6px;
}

.contact-common-menu .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: #ffffff;
    color: #1C699D;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(28, 105, 157, .16);
    box-shadow: 0 6px 16px rgba(15, 23, 42, .04);
    transition: .25s ease;
}

.contact-common-menu .menu-btn:hover {
    background: #1C699D;
    color: #ffffff !important;
    border-color: #1C699D;
    transform: translateY(-2px);
}

.contact-page-section {
    padding: 55px 0;
    background:
        radial-gradient(circle at top left, rgba(28, 105, 157, .14), transparent 35%),
        radial-gradient(circle at bottom right, rgba(28, 105, 157, .10), transparent 35%),
        linear-gradient(135deg, #f7fbff 0%, #eef7fd 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(28, 105, 157, .16);
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 18px 45px rgba(28, 105, 157, .12);
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(28, 105, 157, .08);
    border-radius: 50%;
    top: -45px;
    right: -45px;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(28, 105, 157, .18);
}

.contact-info-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1C699D, #15557F);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 14px 28px rgba(28, 105, 157, .26);
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    stroke: #ffffff;
}

.contact-info-card h5 {
    color: #12384f;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-info-card strong {
    color: #1C699D;
    font-size: 16px;
    word-break: break-word;
}

.contact-form-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(28, 105, 157, .16);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 25px 70px rgba(28, 105, 157, .14);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    background: linear-gradient(135deg, rgba(28, 105, 157, .15), rgba(28, 105, 157, .06));
    border-radius: 50%;
    right: -80px;
    top: -80px;
}

.contact-form-title {
    color: #12384f;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    position: relative;
}

.contact-form-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 28px;
    font-size: 14px;
    position: relative;
}

.contact-form-card label {
    color: #334155;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    min-height: 50px;
    border: 1px solid #d7eaf5;
    border-radius: 16px;
    color: #1e293b;
    font-weight: 600;
    padding: 10px 14px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.contact-form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form-card .form-control:focus {
    border-color: #1C699D !important;
    box-shadow: 0 0 0 4px rgba(28, 105, 157, .12) !important;
}

.contact-submit-btn {
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #1C699D, #15557F);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(28, 105, 157, .25);
    transition: .25s ease;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus,
.contact-submit-btn:active {
    background: linear-gradient(135deg, #15557F, #124A6E);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(28, 105, 157, .32);
}

.contact-submit-btn i {
    color: #ffffff !important;
}

@media (max-width: 575px) {
    .contact-page-section {
        padding: 35px 0;
    }

    .contact-form-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .contact-form-title {
        font-size: 23px;
    }

    .contact-info-card {
        border-radius: 20px;
        padding: 24px 16px;
    }

    .contact-common-menu .menu-btn {
        padding: 8px 13px;
        font-size: 13px;
    }
}