/* Fixed WhatsApp Button - No Dancing! */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    /* NO ANIMATION - stays steady */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 2rem;
    }
}

/* Modern Location Section Responsive */
.location-showcase .location-card {
    position: relative;
}

@media (max-width: 768px) {
    .location-showcase h3 {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
    }
    
    .location-card div[style*="height: 400px"] {
        height: 350px !important;
    }
    
    .location-card div[style*="position: absolute"][style*="bottom: 0"] {
        padding: 25px 20px !important;
    }
    
    .location-card h4 {
        font-size: 1.5rem !important;
    }
    
    .location-card div[style*="grid-template-columns"] {
        gap: 12px !important;
    }
    
    .location-card a[style*="padding: 15px 35px"] {
        padding: 12px 25px !important;
        font-size: 0.9rem !important;
    }
}

/* Contact Map Responsive */
@media (max-width: 768px) {
    .contact-info div[style*="height: 350px"] {
        height: 250px !important;
        margin-top: 20px !important;
    }
}
