/* =========================================================
   MARTISH THEME - FOOTER STYLES
   ========================================================= */

.site-footer {
    background-color: #1c1c1c;
    color: #d8d8d8;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer .container {
    max-width: 1320px;
    position: relative;
    z-index: 2;
}

/* Decorative star/dot background */
.footer-stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 15%, rgba(255,255,255,0.25) 50%, transparent 100%),
        radial-gradient(1px 1px at 25% 40%, rgba(255,255,255,0.18) 50%, transparent 100%),
        radial-gradient(1px 1px at 40% 10%, rgba(255,255,255,0.22) 50%, transparent 100%),
        radial-gradient(1px 1px at 60% 30%, rgba(255,255,255,0.15) 50%, transparent 100%),
        radial-gradient(1px 1px at 75% 60%, rgba(255,255,255,0.2) 50%, transparent 100%),
        radial-gradient(1px 1px at 90% 20%, rgba(255,255,255,0.18) 50%, transparent 100%),
        radial-gradient(1px 1px at 15% 75%, rgba(255,255,255,0.2) 50%, transparent 100%),
        radial-gradient(1px 1px at 50% 85%, rgba(255,255,255,0.15) 50%, transparent 100%),
        radial-gradient(1px 1px at 85% 80%, rgba(255,255,255,0.2) 50%, transparent 100%);
    background-repeat: repeat;
    background-size: 250px 250px;
    z-index: 1;
    pointer-events: none;
}

/* ---------------------------------------------------------
   LOGO
--------------------------------------------------------- */
.footer-logo {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo-img {
    max-height: 90px;
    width: auto;
}

/* ---------------------------------------------------------
   WIDGET COLUMNS
--------------------------------------------------------- */
.footer-widgets {
    text-align: center;
    margin-bottom: 50px;
}

.footer-col {
    margin-bottom: 36px;
}

.footer-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #c9c9c9;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.footer-menu a:hover {
    color: var(--martish-orange, #f8a51b);
}

/* Opening hours */
.footer-hours {
    color: #c9c9c9;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-phone {
    display: inline-block;
    color: var(--martish-orange, #f8a51b);
    font-weight: 800;
    font-size: 19px;
    margin-bottom: 20px;
}

.footer-phone:hover {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    color: #1c1c1c;
    background-color: #ffffff;
}

.footer-social-icon:hover {
    background-color: var(--martish-orange, #f8a51b);
    border-color: var(--martish-orange, #f8a51b);
    color: #1c1c1c;
}

/* Newsletter */
.footer-newsletter-text {
    color: #c9c9c9;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.footer-subscribe-form {
    display: flex;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
}

.footer-subscribe-input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    background-color: transparent;
    color: #ffffff;
    padding: 13px 16px;
    font-size: 14px;
}

.footer-subscribe-input::placeholder {
    color: #9a9a9a;
}

.footer-subscribe-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.04);
}

.footer-subscribe-btn {
    flex-shrink: 0;
    border: none;
    background-color: var(--martish-orange, #f8a51b);
    color: #1c1c1c;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 18px;
    white-space: nowrap;
}

.footer-subscribe-btn:hover {
    background-color: #ffffff;
}

/* ---------------------------------------------------------
   BOTTOM BAR
--------------------------------------------------------- */
.footer-bottom {
    background-color: var(--martish-orange, #f8a51b);
    padding: 16px 0;
    position: relative;
    z-index: 2;
}

.footer-copyright {
    margin: 0;
    text-align: center;
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 700;
}

/* ---------------------------------------------------------
   WHATSAPP FLOATING BUTTON
--------------------------------------------------------- */
.footer-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

.footer-whatsapp:hover {
    background-color: #1ebd58;
    color: #ffffff;
}

.footer-whatsapp-icon {
    display: inline-flex;
    align-items: center;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

/* Tablet and up: align text left within columns, keep grid */
@media (min-width: 576px) {
    .footer-col {
        text-align: left;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-subscribe-form {
        margin: 0;
    }
}

/* Desktop: full row layout */
@media (min-width: 992px) {
    .footer-widgets {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding: 44px 0 0;
    }

    .footer-logo {
        margin-bottom: 36px;
    }

    .footer-logo-img {
        max-height: 64px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-whatsapp-text {
        display: none;
    }

    .footer-whatsapp {
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
        right: 16px;
        bottom: 16px;
    }
}
.footer-bottom {
background-color: #ff7100;
}