/* FOOTER */
.footer {
    background: #0b3d2e;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f4a825;
}

/* SOCIAL */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    margin-right: 10px;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #ffffff33;
    padding-top: 15px;
    font-size: 14px;
}

/* STICKY BUTTONS */
.sticky-buttons {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.call-btn-sticky,
.whatsapp-btn-sticky {
    padding: 12px 16px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

.call-btn-sticky {
    background: #007bff;
}

.whatsapp-btn-sticky {
    background: #25D366;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sticky-buttons {
        right: 10px;
        bottom: 10px;
    }

    .call-btn-sticky,
    .whatsapp-btn-sticky {
        font-size: 14px;
        padding: 10px 12px;
    }
}