.chat-button-left {
    position: fixed;
    bottom: 30px;
    left: 5%;
    background-color: #1dd82da4; /* WhatsApp green */
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-button-left:hover {
    background-color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    color: #fff;
}

.book-now-button-right {
    position: fixed;
    bottom: 30px;
    right: 5%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    font-weight: bold;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-glow 2s infinite;
}

.book-now-button-right:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.6);
    color: #fff;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.8);
    }
}

/* Responsive styling for mobile */
@media (max-width: 768px) {
    .chat-button-left {
        bottom: 90px;
        left: 10px;
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 25px;
        max-width: 160px;
    }

    .book-now-button-right {
        bottom: 30px;
        right: 10px;
        padding: 10px 14px;
        font-size: 12px;
        border-radius: 25px;
        max-width: 160px;
    }

    .chat-button-left span,
    .book-now-button-right span {
        display: inline;
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .chat-button-left img {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .book-now-button-right i {
        font-size: 14px !important;
        flex-shrink: 0;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .chat-button-left {
        bottom: 90px;
        left: 5px;
        padding: 8px 12px;
        font-size: 11px;
        max-width: 140px;
    }

    .book-now-button-right {
        bottom: 30px;
        right: 5px;
        padding: 8px 12px;
        font-size: 11px;
        max-width: 140px;
    }

    .chat-button-left span,
    .book-now-button-right span {
        font-size: 10px;
    }
}

.chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow: hidden;
}

.chat-header {
    background: #52e752;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.chat-body {
    padding: 15px;
}

.chat-body textarea {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: none;
}

.chat-send {
    margin-top: 10px;
    background: #1D4ED8;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.hidden {
    display: none;
}