/* Contact page – promo contact cards (location, phone, email) */

.promo-contact-section .card {
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #f7f7f7; /* keep original greyish tone */
}

.promo-contact-section .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.promo-contact-section .card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d78c2c 0%, #975601 100%);
    color: #ffffff;
    flex-shrink: 0;
    font-size: 26px;
}

.promo-contact-section .card .icon i,
.promo-contact-section .card .icon img {
    font-size: 26px;
    max-width: 28px;
    max-height: 28px;
}

.promo-contact-section .card .content {
    flex: 1;
}

.promo-contact-section .card .title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.promo-contact-section .card .text {
    font-size: 15px;
    color: #555;
    display: block;
}

.promo-contact-section .card .text a {
    color: inherit;
    text-decoration: none;
}

.promo-contact-section .card .text a:hover {
    color: #d78c2c;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .promo-contact-section .card {
        margin-bottom: 16px;
    }
}

