﻿.map-frame {
    height: 250px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.group:hover .map-frame {
    filter: grayscale(10%);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.group:hover .map-overlay {
    opacity: 1;
}

.modern-btn {
    background: linear-gradient(135deg, #e47f6d, #d86c5a);
    color: #fff;
    font-weight: 600;
    border-radius: 14px;
    border: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(216, 108, 90, 0.35);
}

    .modern-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(216, 108, 90, 0.45);
        background: linear-gradient(135deg, #f08c7a, #e06f5e);
        color: #fff;
    }
     
    .modern-btn:active {
        transform: translateY(0);
        box-shadow: 0 6px 15px rgba(216, 108, 90, 0.3);
    }

    .modern-btn:focus {
        box-shadow: none;
    }

.contact-info {
    box-shadow: 10px 10px black;
    }
