.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2563eb;
    color: #fff;

    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.contact-btn {
    background: #10b981;
}

.scroll-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================
   CONTACT OVERLAY
   ========================== */

.contact-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    background: linear-gradient(
        180deg,
        #0f172a 0%,
        #1e293b 100%
    );

    display: flex;
    flex-direction: column;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;
}

.contact-overlay.show {
    opacity: 1;
    visibility: visible;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}

.contact-header h2 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
}

.contact-close {
    border: none;
    background: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.contact-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 16px;

    padding: 24px;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 64px;

    border-radius: 12px;

    text-decoration: none;

    background: rgba(255,255,255,.08);
    color: #fff;

    font-weight: 600;

    backdrop-filter: blur(10px);
}

.contact-option:hover {
    background: rgba(255,255,255,.14);
}

.contact-option.whatsapp {
    background: #25d366;
    color: #fff;

    font-size: 1.1rem;
    font-weight: 700;
}
