/* --- MINIMAL BLACK FOOTER --- */
.site-footer {
    background-color: #000000; /* Solid Black */
    padding: 60px 0 0;
    border-top: none; 
}

/* Container for the two main elements */
.footer-minimal-grid {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    gap: 20px;
    padding-bottom: 60px;
}

/* Left side: Call Button */
.footer-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

/* Button needs to pop against the black background */
.call-btn-footer {
    display: inline-block;
    background: #ffffff; /* White button */
    color: #000000;      /* Black text */
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.call-btn-footer:hover {
    background: #eeeeee; /* Light grey on hover */
    transform: translateY(-2px);
}

/* Right side: Navigation */
.footer-right {
    flex: 1;
}

.footer-menu-simple {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-menu-simple li a {
    text-decoration: none;
    color: #ffffff; /* White links */
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.footer-menu-simple li a:hover {
    opacity: 0.7;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #fff;
    font-size: 0.8rem;
    color: #fff;
    padding: 15px 0; /* Added a slight padding so the text breathes */
}

/* --- NEW: MOBILE STICKY BAR (Hidden on Desktop) --- */
.mobile-sticky-call {
    display: none;
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .footer-minimal-grid {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-left, 
    .footer-menu-simple {
        justify-content: center;
    }

    .footer-menu-simple {
        gap: 20px;
        flex-wrap: wrap; /* Ensures the menu adapts flawlessly if items are added */
    }

    /* 1. Hide the desktop button */
    .desktop-only {
        display: none !important;
    }

    /* 2. Show and style the sticky mobile bar */
    .mobile-sticky-call {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        
        background-color: #009000; /* Vivid Green */
        color: #ffffff;
        text-decoration: none;
        
        padding: 16px 0;
        font-size: 1.1rem;
        font-weight: bold;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
    }

    .mobile-sticky-call svg {
        fill: #ffffff;
        width: 24px;
        height: 24px;
    }

    /* 3. Prevent the fixed bar from covering bottom content */
    body {
        padding-bottom: 60px;
    }
}