/**
 * Sticky CTA Styles
 */
.sbc-sticky-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #fff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    z-index: 9999999 !important;
    padding: 10px 0;
    box-sizing: border-box !important;
    transform: translateZ(0); /* Hardware acceleration */
    transition: transform .25s ease, opacity .25s ease;
    opacity: 1;
}
.sbc-sticky-bar-inner {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.sbc-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    flex: 1;
    max-width: 300px;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.sbc-btn-whatsapp {
    background-color: #25D366;
    color: white;
}
.sbc-btn-booking {
    background-color: #0073aa;
    color: white;
}
.sbc-btn:hover {
    transform: translateY(-1px);
}
@media (max-width: 768px) {
    .sbc-sticky-bar-inner {
        padding: 0 10px;
        gap: 10px;
    }
    .sbc-btn {
        padding: 10px;
        font-size: 14px;
    }
}

.sbc-wa-chat-widget {
    position: fixed;
    right: 20px;
    bottom: 96px;
    z-index: 9999998;
}
.sbc-wa-chat-desktop-only {
    display: block;
}
.sbc-wa-chat-mobile-only {
    display: block;
}
.sbc-wa-chat-launcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
    cursor: pointer;
}
.sbc-wa-chat-launcher-icon {
    width: 30px;
    height: 30px;
    line-height: 0;
}
.sbc-wa-chat-launcher-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}
.sbc-wa-chat-modal[hidden] {
    display: none !important;
}
.sbc-wa-chat-modal {
    position: fixed;
    inset: 0;
    z-index: 9999999;
}
.sbc-wa-chat-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
}
.sbc-wa-chat-dialog {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: min(420px, calc(100vw - 28px));
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.24);
    box-sizing: border-box;
}
.sbc-wa-chat-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #64748b;
    font-size: 28px;
    cursor: pointer;
}
.sbc-wa-chat-dialog h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.3;
    color: #0f172a;
}
.sbc-wa-chat-helper {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}
.sbc-wa-chat-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0f172a;
}
.sbc-wa-chat-textarea {
    display: block;
    width: 100%;
    min-height: 120px;
    padding: 12px 14px;
    border: 1px solid #dbe4ee;
    border-radius: 12px;
    resize: vertical;
    box-sizing: border-box;
}
.sbc-wa-chat-actions {
    margin-top: 16px;
}
.sbc-wa-chat-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
body.sbc-wa-chat-open {
    overflow: hidden;
}
@media (max-width: 768px) {
    .sbc-wa-chat-widget {
        right: 16px;
        bottom: 86px;
    }
    .sbc-wa-chat-desktop-only {
        display: none !important;
    }
    .sbc-wa-chat-launcher {
        width: 58px;
        height: 58px;
    }
    .sbc-wa-chat-dialog {
        right: 14px;
        bottom: 14px;
        left: 14px;
        width: auto;
        padding: 20px 18px;
    }
}
@media (min-width: 769px) {
    .sbc-wa-chat-mobile-only {
        display: none !important;
    }
}
