/* ===== Floating Action Menu (FAB) - Toggleable ===== */
.fab-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

.fab-toggle {
    width: 60px;
    height: 60px;
    background-color: #1e4da5; /* Solid blue */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.fab-toggle:hover {
    background-color: #153163; /* Darker blue on hover */
}

.fab-toggle i {
    transition: transform 0.4s ease;
}

.fab-wrapper.active .fab-toggle i {
    transform: rotate(180deg); /* Arrow points down when open */
}

.fab-menu {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fab-wrapper.active .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    background-color: white;
}

.fab-btn:hover {
    transform: scale(1.1);
}

.fab-btn.whatsapp { background-color: #25d366; color: white; }
.fab-btn.radio { background-color: #e8721a; color: white; }
.fab-btn.tv { background-color: #1e4da5; color: white; }

/* Tooltips */
.fab-btn::before {
    content: attr(title);
    position: absolute;
    right: 65px;
    background: rgba(10, 22, 40, 0.9);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.fab-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .fab-wrapper {
        bottom: 20px;
        right: 20px;
    }
    .fab-toggle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    .fab-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    .fab-btn::before {
        display: none;
    }
}

/* ===== FAQ Accordion ===== */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #000;
    /* Max contrast */
    transition: background 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #e8721a;
}

.faq-item.active .faq-question {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #495057;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}