/* Demo booking popup — shown only when APP_DEMO=true */
.demo-booking-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1055;
    width: 3.5rem;
    height: 3.5rem;
    border: none;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-booking-fab:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
    color: #fff;
}

.demo-booking-fab:focus {
    outline: 2px solid #d4a012;
    outline-offset: 2px;
}

.demo-booking-overlay {
    position: fixed;
    inset: 0;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.demo-booking-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.demo-booking-modal {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    transform: translateY(12px) scale(0.98);
    transition: transform 0.25s ease;
}

.demo-booking-overlay.is-open .demo-booking-modal {
    transform: translateY(0) scale(1);
}

.demo-booking-modal-header {
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(135deg, #d4a012 0%, #b8860b 100%);
    color: #fff;
    position: relative;
}

.demo-booking-modal-header h3 {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.demo-booking-modal-header p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.95;
    line-height: 1.45;
}

.demo-booking-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-booking-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.demo-booking-modal-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.demo-booking-contact {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 0.875rem;
    color: #475569;
}

.demo-booking-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-booking-contact i {
    color: #b8860b;
    width: 1.1rem;
    text-align: center;
}

.demo-booking-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.demo-booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.demo-booking-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.demo-booking-btn-wa {
    background: #25d366;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.demo-booking-btn-wa:hover {
    background: #1ebe5d;
    color: #fff !important;
}

.demo-booking-btn-email {
    background: #fff;
    color: #1e293b !important;
    border: 1.5px solid #e2e8f0;
}

.demo-booking-btn-email:hover {
    border-color: #d4a012;
    color: #b8860b !important;
}

.demo-booking-dismiss {
    display: block;
    width: 100%;
    margin-top: 0.85rem;
    padding: 0.5rem;
    border: none;
    background: transparent;
    color: #94a3b8;
    font-size: 0.85rem;
    cursor: pointer;
}

.demo-booking-dismiss:hover {
    color: #64748b;
}

@media (max-width: 480px) {
    .demo-booking-fab {
        right: 1rem;
        bottom: 1rem;
        width: 3.25rem;
        height: 3.25rem;
        font-size: 1.6rem;
    }
}
