/* Modern Compact Contact Banner Styles (Gray Background with Top Border) */
.contact-banner-section {
    padding: 60px 0;
    font-family: 'Raleway', sans-serif;
    background: #fafafa;
    margin-top: 80px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    /* Top border only, 50% opacity (rgba of #ce1446) */
    border-top: 1px solid rgba(206, 20, 70, 0.3);
    border-bottom: none;
    transition: all 0.3s ease;
}

.contact-banner-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #2d373c;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Card Style for Items */
.contact-banner-item {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 20px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    width: 100%;
    max-width: 400px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.contact-banner-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #ce1446;
    box-shadow: 0 10px 25px rgba(206, 20, 70, 0.1);
}

.contact-banner-icon {
    width: 60px;
    height: 60px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #ce1446;
    margin-right: 20px;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
}

.contact-banner-item:hover .contact-banner-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: #ce1446;
    color: #ffffff;
}

.contact-banner-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-banner-subtitle {
    font-size: 13px;
    color: #888888;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-banner-detail {
    font-size: 16px;
    color: #2d373c;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-banner-detail:hover {
    color: #ce1446;
}

@media (max-width: 991px) {
    .contact-banner-item {
        margin-bottom: 20px;
        flex-direction: column;
        text-align: center;
    }

    .contact-banner-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .contact-banner-content {
        align-items: center;
    }

    .contact-banner-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
}