/* Explain: Reusable real estate cards, buttons, forms, and navigation */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: rgba(238, 229, 228, 0.9);
    color: var(--primary-hover);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 0.5rem 0.8rem;
    text-transform: uppercase;
}

.agency-card {
    border: 1px solid rgba(226, 213, 212, 0.85);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
}

.property-card {
    overflow: hidden;
    border: 1px solid rgba(226, 213, 212, 0.9);
    border-radius: var(--radius-lg);
    background: var(--white-color);
    box-shadow: var(--shadow-card);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.property-card:hover {
    border-color: rgba(0, 0, 0, 0.45);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.nav-link {
    border-radius: 999px;
    color: var(--text-color);
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.65rem 0.85rem;
    transition: background 180ms ease, color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    background: var(--surface-strong);
    color: var(--primary-color);
}

.mobile-menu-panel {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-card);
}

.hero-media-frame {
    border: 10px solid var(--white-color);
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.stat-pill {
    border: 1px solid rgba(226, 213, 212, 0.95);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 10px 24px rgba(31, 41, 55, 0.08);
    padding: 1rem;
}

.contact-input {
    min-height: 3.1rem;
    border-color: rgba(226, 213, 212, 0.95);
    background: var(--white-color);
}

.contact-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.14);
    outline: none;
}

.form-status {
    border-radius: 1rem;
    font-weight: 700;
    padding: 0.9rem 1rem;
}

.form-status.success {
    background: rgba(21, 128, 61, 0.1);
    color: var(--success-color);
}

.form-status.error {
    background: rgba(185, 28, 28, 0.1);
    color: var(--error-color);
}

.property-strip {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: property-strip-scroll 34s linear infinite;
}

.property-strip:hover {
    animation-play-state: paused;
}

.property-strip-card {
    width: 15rem;
    flex: 0 0 auto;
    border: 1px solid rgba(226, 213, 212, 0.95);
    border-radius: 1.45rem;
    background: var(--white-color);
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
    padding: 0.6rem;
}

@keyframes property-strip-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

@media (min-width: 640px) {
    .property-strip {
        gap: 1.25rem;
    }

    .property-strip-card {
        width: 18rem;
    }
}

@media (min-width: 1024px) {
    .property-strip-card {
        width: 20rem;
    }
}
