/* Sticky CTA pill
   Appears after the user scrolls past the hero. Dismissable per session.
   Single CTA → /enquire. */

.sticky-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(140%);
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 8px 8px 22px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 999px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.16);
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    max-width: calc(100vw - 24px);
}

.sticky-cta.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta-lead {
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: -0.005em;
    white-space: nowrap;
}

.sticky-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #F5A742;
    color: #1a1a1a;
    padding: 11px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.005em;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta-button:hover,
.sticky-cta-button:focus-visible {
    background: #E89326;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245, 167, 66, 0.4);
    outline: none;
}

.sticky-cta-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 6px 10px;
    margin-right: 4px;
    font-size: 20px;
    line-height: 1;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.sticky-cta-close:hover,
.sticky-cta-close:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

@media (max-width: 640px) {
    .sticky-cta {
        bottom: 16px;
        gap: 6px;
        padding: 6px 6px 6px 18px;
    }
    .sticky-cta-lead {
        display: none;
    }
    .sticky-cta-button {
        padding: 10px 16px;
        font-size: 13.5px;
    }
    .sticky-cta-close {
        padding: 6px 8px;
        font-size: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta {
        transition: opacity 0.2s ease;
        transform: translateX(-50%) translateY(0);
    }
    .sticky-cta:not(.is-visible) {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
}
