.contact-hero {
    min-height: 52vh;
}

.contact-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.82);
}

.contact-breadcrumb .breadcrumb-item.active,
.contact-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.55);
}

.contact-info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeSlideUp 0.6s ease both;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cm-shadow-lg);
}

.contact-info-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    color: var(--cm-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-side-panel__label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cm-blue);
    margin-bottom: 0.75rem;
}

.contact-side-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.875rem;
    color: var(--cm-steel-700);
}

.contact-side-list i {
    color: var(--cm-blue);
    margin-top: 0.15rem;
}

.contact-side-social__link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cm-steel-200);
    color: var(--cm-steel-700);
    transition: all 0.25s ease;
}

.contact-side-social__link:hover {
    color: var(--cm-white);
    background: var(--cm-blue);
    border-color: var(--cm-blue);
}

.contact-form-card {
    animation: fadeSlideUp 0.7s ease both;
}

.contact-alert {
    animation: fadeSlideUp 0.35s ease both;
}

.contact-submit-btn {
    min-width: 11rem;
}

.contact-map-wrap,
.contact-media-card {
    min-height: 100%;
}

.contact-media-card__image {
    display: block;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.contact-social-btn {
    min-width: 10rem;
}

.contact-info-section .col-md-6:nth-child(2) .contact-info-card { animation-delay: 0.05s; }
.contact-info-section .col-md-6:nth-child(3) .contact-info-card { animation-delay: 0.1s; }
.contact-info-section .col-md-6:nth-child(4) .contact-info-card { animation-delay: 0.15s; }

@media (max-width: 991.98px) {
    .contact-hero {
        min-height: auto;
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .contact-side-panel {
        margin-bottom: 0.5rem;
    }

    .contact-form-card {
        padding: 1.25rem !important;
    }
}

@media (max-width: 575.98px) {
    .contact-social-btn {
        width: 100%;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
