/* ===== FOOTER ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 100px;
}

.footer-main {
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-contact {
    font-size: 16px;
    line-height: 1.8;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-contact strong {
    font-weight: 600;
}

/* ===== STICKY BOTTOM BUTTONS ===== */
.sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.sticky-call {
    background: #dc3545;
}

.sticky-call:hover {
    background: #c82333;
}

.sticky-whatsapp {
    background: #25D366;
}

.sticky-whatsapp:hover {
    background: #20ba5a;
}

.sticky-btn i {
    font-size: 20px;
}