/* StayEasy — B2B travel agent public landing (agents.php) — extends host-landing.css */

body.client-site-body.agent-landing {
    background: var(--host-paper);
    scroll-behavior: smooth;
    padding-bottom: 0 !important;
}

body.client-site-body.agent-landing main {
    color: var(--host-ink);
    background: var(--host-paper);
}

body.client-site-body.agent-landing .footer-stayeasy {
    margin-bottom: 0;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    body.client-site-body.agent-landing.has-sticky-cta .client-main-content {
        padding-bottom: calc(2.5rem + 5.5rem);
    }
}

.agent-hero__mini-calc {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    max-width: 22rem;
}

.agent-hero__mini-calc label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
}

.agent-hero__mini-calc output {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--host-soft-teal);
}

.agent-inventory-stat {
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafb 100%);
    border: 1px solid var(--host-border);
    transition: transform 0.25s ease;
}

.agent-inventory-stat:hover {
    transform: scale(1.03);
}

.agent-inventory-stat .display-6 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    background: linear-gradient(135deg, var(--host-ink), var(--host-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.agent-faq .accordion-button:not(.collapsed) {
    background: rgba(10, 147, 150, 0.08);
    color: var(--host-ink);
    font-weight: 600;
}

.agent-faq-search {
    max-width: 28rem;
    margin: 0 auto 1.5rem;
}

.agent-float-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1025;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--host-border);
    box-shadow: 0 -0.5rem 1.5rem rgba(13, 27, 42, 0.1);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.agent-float-cta.is-visible {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .agent-float-cta {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .agent-inventory-stat:hover {
        transform: none;
    }
}
