﻿.mobile-hero-wrapper {
    position: relative;
    height: 220px;
}

@@media (min-width: 768px) {
    .mobile-hero-wrapper {
        height: 350px;
    }
}

.mobile-hero-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-caption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    padding: 12px 16px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    color: #fff;
}

.carousel-fade .carousel-item {
    transition-duration: .8s;
}

.carousel-indicators [data-bs-target] {
    background: #fff;
    opacity: .5;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
}

/* -------------------- UTILITIES -------------------- */
.x-small {
    font-size: 0.65rem;
}

/* ---------- FAB WRAPPER ---------- */
.fab-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

/* ---------- MAIN BUTTON ---------- */
.fab-main {
    height: 56px;
    padding: 0 18px;
    border-radius: 999px; /* pill shape */
    border: none;
    background: #0d6efd;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}


    .fab-main:active {
        transform: scale(.96);
    }

.fab-icon {
    font-size: 22px;
}

.fab-text {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

/* ---------- MENU ---------- */
.fab-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all .25s ease;
}

.fab-wrapper.active .fab-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ---------- FAB ITEMS ---------- */
.fab-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

    .fab-item i {
        font-size: 18px;
    }

    /* Brand colors */
    .fab-item.wa {
        background: #25D366;
    }

    .fab-item.tg {
        background: #229ED9;
    }

    .fab-item.fb {
        background: #1877F2;
    }
