/* Sticky Mobile CTA Bar Stylesheet */
/* Suffix ID: 018b097f */

.sticky-cta-bar-018b097f {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0A1F44; /* Deep Navy */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    display: none; /* Desktop hidden */
    grid-template-columns: 1fr 1fr;
    padding: 10px 16px;
    gap: 12px;
    box-sizing: border-box;
}

/* Offset for WordPress Admin Bar on Mobile */
body.admin-bar .sticky-cta-bar-018b097f {
    /* Kept on bottom - safe from admin bar */
}

.cta-btn-018b097f {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
}

.call-btn-018b097f {
    background-color: #C9A24B; /* Luxury Gold */
    color: #FFFFFF;
}

.call-btn-018b097f:hover {
    background-color: #B38E3F;
}

.whatsapp-btn-018b097f {
    background-color: #25D366; /* WhatsApp Green */
    color: #FFFFFF;
}

.whatsapp-btn-018b097f:hover {
    background-color: #20BA56;
}

.cta-icon-018b097f {
    margin-right: 8px;
    font-size: 16px;
}

/* Media Query: Display only on mobile viewport */
@media screen and (max-width: 767px) {
    .sticky-cta-bar-018b097f {
        display: grid;
    }
    /* Add extra padding at the bottom of the body so content isn't covered */
    body {
        padding-bottom: 70px !important;
    }
}
