/* ── Floating Button ── */
.floating-contact-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: #000;     
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}

/* ── Overlay ── */
.floating-contact-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.floating-contact-overlay.is-active {
    opacity: 1;
    pointer-events: all;
}

/* ── Slide-in Panel ── */
.floating-contact-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100%;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 40px rgba(0,0,0,0.12);
    overflow-y: auto;
    background: url(../gradients/gradient-3.avif);
    background-size: cover;
    background-position: center;
}
.floating-contact-panel.is-open {
    transform: translateX(0);
}

.floating-contact-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}
.floating-contact-panel__header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}
.floating-contact-panel__close {
    background: none;
    border: 2px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    padding: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.floating-contact-panel__close:hover {
    color: #000;
    border-color: #000;
    background: #f5f5f5;
}

.floating-contact-panel__body {
    padding: 28px;
    flex: 1;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .floating-contact-btn span { display: none; }
    .floating-contact-btn { padding: 16px; border-radius: 50%; }
}