/* contact banner - shared styles moved to base.css */

.contact-banner-image-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-banner-image-wrapper {
    flex: 1;
    min-width: 200px;
    max-width: 253px;
    background: rgba(27, 75, 86, 0.8);
    border: 2px solid #F29100;
    border-radius: 10px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-banner-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(242, 145, 0, 0.4);
}

.contact-banner-image-wrapper img {
    margin-bottom: 20px;
}

.contact-banner-image-content h5 {
    font-family: 'Montserrat-Regular';
    font-size: 18px;
    font-weight: 600;
    color: #F29100;
    margin: 0;
}

.contact-banner-image-content h5.on-hover {
    color: #F29100;
}

.contact-banner-image-divider {
    height: 2px;
    background: #F29100;
    width: 40px;
    margin: 10px auto 0;
}

/* Clipboard notification */
.clipboard-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1B4B56;
    color: #3BDBEF;
    padding: 20px 40px;
    border-radius: 10px;
    border: 2px solid #F29100;
    font-family: 'Montserrat-Regular';
    font-size: 16px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 1024px) {
    .contact-banner-image-container {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .contact-banner-image-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-banner-image-wrapper {
        max-width: 100%;
        width: 100%;
    }
}
