/* Floating UI styles */
/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.floating-whatsapp-btn:hover {
    background-color: #0fc24b;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp-btn ion-icon {
    font-size: 32px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.floating-whatsapp-btn:hover {
    animation: none;
}

/* Scroll to top button */
#scrollToTopBtn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #eab308;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    font-size: 24px;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

#scrollToTopBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(234, 179, 8, 0.4);
    background-color: #ffc107;
}

#scrollToTopBtn.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

#scrollToTopBtn ion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social media icons in footer */
.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: rgba(234, 179, 8, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: inherit;
}

.social-icon-link ion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.social-icon-link:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Booking form styles */
.booking-form-input {
    transition: all 0.3s ease;
}

.booking-form-input:focus {
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

/* Success/Error messages */
.message-success {
    background-color: #d1fae5;
    border-left: 4px solid #10b981;
    color: #065f46;
    padding: 12px 16px;
    border-radius: 4px;
    animation: slideIn 0.3s ease;
}

.message-error {
    background-color: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #7f1d1d;
    padding: 12px 16px;
    border-radius: 4px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}