/* Floating WhatsApp Button Styles */
.floating-whatsapp {
    position: fixed;
    bottom: 100px; /* Adjusted to sit above the back to top button */
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
}

/* Mobile Optimization Tweaks */
@media screen and (max-width: 767px) {
    .floating-whatsapp {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Hero & Breadcrumb Overlays for better text visibility */
.breadcumb-wrapper {
    position: relative;
}

.breadcumb-wrapper::before,
.th-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6) !important;
    z-index: 0;
    pointer-events: none;
}

.breadcumb-wrapper > *,
.hero-style1, .hero-inner > .container {
    position: relative;
    z-index: 2;
}

/* Fix text visibility on colored gradient backgrounds */
.category-half-bg ~ .container .sec-title,
.category-half-bg ~ .container .sub-title,
.category-half-bg ~ .container .sec-text,
.half-bg ~ .container .sec-title,
.half-bg ~ .container .sub-title,
.half-bg ~ .container .sec-text {
    color: #ffffff !important;
}

.breadcumb-title,
.breadcumb-menu li,
.breadcumb-menu li a,
.copyright-wrap .copyright-text,
.copyright-wrap .copyright-text a,
.copyright-wrap .title {
    color: #ffffff !important;
}

/* Fix wrapping buttons on tour list view */
.tour-action .th-btn {
    font-size: 13px !important;
    padding: 10px 15px !important;
    white-space: nowrap;
    min-width: auto;
}
