
body {
margin:0;
background:#000;
}

.hero-image,
.prices-image {
width:100%;
display:block;
}

/* Floating Buttons */
.floating-buttons {
position:fixed;
bottom:12px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:10px;
z-index:999;
flex-wrap:wrap;
justify-content:center;
}

.btn {
padding:18px 22px;
font-size:18px;
border-radius:50px;
color:white;
font-weight:bold;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.4);
}

.call { background:#0077ff; }
.whatsapp { background:#25D366; }
.text { background:#444; }
.map { background:#ff9800; }

/* Pulse animation */
.pulse {
animation: pulse 1.5s infinite;
}

@keyframes pulse {
0% { box-shadow:0 0 0 0 rgba(37,211,102,0.7); }
70% { box-shadow:0 0 0 15px rgba(37,211,102,0); }
100% { box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

/* Bounce animation */
.bounce {
animation: bounce 2s infinite;
}

@keyframes bounce {
0%,20%,50%,80%,100% {transform: translateY(0);}
40% {transform: translateY(-8px);}
60% {transform: translateY(-4px);}
}
