@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

:root {
    --brand-primary: #0F766E;
    --brand-primary-dark: #0B5A54;
    --brand-secondary: #14B8A6;
    --brand-cta: #0369A1;
    --brand-bg: #F0FDFA;
    --brand-text: #134E4A;
    --ink: #0F172A;
    --ink-muted: #475569;
    --border-soft: #E2E8F0;
}

* { -webkit-tap-highlight-color: transparent; }

body {
    background-color: #F8FAFC;
    color: var(--ink);
    font-family: 'Open Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand, .brand-font {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    color: var(--ink);
}

a { color: var(--brand-cta); }
a:hover { color: var(--brand-primary-dark); }

/* ---------- Buttons ---------- */
.btn-primary {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
}
.btn-outline-primary {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}
.btn-outline-primary:hover {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}
.btn, .card, .form-control, .form-select {
    transition: background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
a, button, .btn, .city-card, .category-card {
    cursor: pointer;
}

/* ---------- Navbar (two rows: brand/city/account, then nav links) ---------- */
.navbar-row-top {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-soft);
}
.navbar-row-bottom {
    background: var(--brand-bg);
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}
.navbar-row-bottom .nav-link {
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
}
.navbar-row-bottom .nav-link.dropdown-toggle::after {
    margin-left: 0.4rem;
    vertical-align: 0.15em;
}
.navbar-brand {
    color: var(--brand-primary) !important;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.nav-link {
    font-weight: 600;
    color: var(--ink-muted) !important;
}
.nav-link:hover, .nav-link.active {
    color: var(--brand-primary) !important;
}

/* ---------- Mega menu ---------- */
.mega-menu {
    min-width: 620px;
    border: 1px solid var(--border-soft);
    border-radius: 0.75rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    padding: 1.5rem;
    margin-top: 0.5rem;
}
.mega-menu.mega-menu-sm { min-width: 420px; }
.mega-menu-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-muted);
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}
.mega-menu .dropdown-item {
    padding: 0.4rem 0;
    color: var(--ink);
    border-radius: 0;
}
.mega-menu .dropdown-item:hover {
    background: transparent;
    color: var(--brand-primary);
    padding-left: 0.25rem;
}
@media (max-width: 991.98px) {
    .mega-menu { min-width: 100%; box-shadow: none; border: none; padding: 0.5rem 0 0.5rem 1rem; }
}

/* ---------- Navbar search box (desktop) ---------- */
.navbar-search-box {
    max-width: 420px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    overflow: hidden;
}
.navbar-search-box .form-control {
    border: none;
    padding-left: 1rem;
}
.navbar-search-box .form-control:focus { box-shadow: none; }
.navbar-search-box .btn {
    border-radius: 0;
    display: flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
}
.navbar-search-box .btn svg { width: 16px; height: 16px; }

/* ---------- City selector (navbar) ---------- */
.city-selector-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ink);
    background: #fff;
}
.city-selector-btn:hover { border-color: var(--brand-secondary); }
.city-selector-btn svg { width: 16px; height: 16px; color: var(--brand-primary); }

.city-mega-menu {
    min-width: 720px;
    max-height: 70vh;
    overflow-y: auto;
}
.city-columns {
    column-count: 4;
    column-gap: 1.5rem;
}
.city-columns .dropdown-item { break-inside: avoid; }
@media (max-width: 991.98px) {
    .city-mega-menu { min-width: 100%; }
    .city-columns { column-count: 2; }
}

/* ---------- Brand mark ---------- */
.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-cta));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
}

/* ---------- Account avatar dropdown ---------- */
.account-avatar {
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 0.25rem 0.75rem 0.25rem 0.25rem;
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.9rem;
}
.account-avatar:hover { border-color: var(--brand-secondary); }
.account-avatar .avatar-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--brand-bg);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.account-avatar .avatar-circle svg { width: 18px; height: 18px; }

/* ---------- Mobile bottom tab bar ---------- */
.mobile-tab-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    background: #fff;
    border-top: 1px solid var(--border-soft);
    padding: 0.4rem 0.5rem calc(0.4rem + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
    justify-content: space-around;
    align-items: center;
}
.mobile-tab-bar .tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--ink-muted);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
}
.mobile-tab-bar .tab-item svg { width: 22px; height: 22px; }
.mobile-tab-bar .tab-item.tab-item-cta svg {
    width: 34px;
    height: 34px;
    color: var(--brand-primary);
}
.mobile-tab-bar .tab-item:hover,
.mobile-tab-bar .tab-item:active { color: var(--brand-primary); }

@media (max-width: 991.98px) {
    .mobile-tab-bar { display: flex; }
    .pb-mobile-nav { padding-bottom: 4.5rem; }
}

/* ---------- Hero ---------- */
.hero-banner {
    position: relative;
    background: linear-gradient(135deg, #0F766E 0%, #0B5A54 55%, #0F172A 100%);
    border-radius: 1.25rem;
    color: #fff;
    padding: 2.5rem 2rem 4.5rem;
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(2px);
    pointer-events: none;
}
.hero-shape-1 { width: 260px; height: 260px; top: -80px; right: -60px; }
.hero-shape-2 { width: 180px; height: 180px; bottom: -60px; left: -40px; background: rgba(20, 184, 166, 0.18); }
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}
.hero-banner .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}
.hero-banner .eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-secondary);
    flex-shrink: 0;
}
.hero-banner h1 {
    color: #fff;
    font-size: clamp(1.9rem, 5vw, 2.85rem);
    letter-spacing: -0.02em;
}
.hero-banner p {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 480px;
}
.hero-city-pill-wrap { display: inline-block; margin-bottom: 1.5rem; }
.hero-city-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
}
.hero-city-pill svg { width: 16px; height: 16px; }
.hero-city-pill:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }
.hero-city-dropdown {
    max-height: 280px;
    overflow-y: auto;
    min-width: 220px;
}

/* ---------- Hero search card (tabs + search box, one merged unit) ---------- */
.hero-search-card {
    max-width: 620px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.35);
}
.hero-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    background: rgba(15, 23, 42, 0.35);
    padding: 0.4rem 0.4rem 0;
}
.hero-tabs button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
    border-radius: 0.6rem 0.6rem 0 0;
    cursor: pointer;
}
.hero-tabs button.active {
    background: #fff;
    color: var(--brand-primary-dark);
}
.hero-search {
    background: #fff;
    padding: 1rem;
}
.hero-search-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 0.65rem;
    padding: 0.3rem 0.3rem 0.3rem 0.9rem;
}
.hero-search-icon { display: flex; color: var(--ink-muted); flex-shrink: 0; }
.hero-search-icon svg { width: 18px; height: 18px; }
.hero-search-row input.form-control {
    border: none;
    box-shadow: none;
    padding: 0.6rem 0;
}
.hero-search-row input.form-control:focus { box-shadow: none; }
.hero-search-row .btn { flex-shrink: 0; border-radius: 0.5rem; padding: 0.6rem 1.4rem; }

/* ---------- "Post property for free" strip, overlapping hero bottom edge ---------- */
.hero-owner-strip {
    position: absolute;
    left: 50%;
    bottom: -1.1rem;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ink);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.7rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.3);
}
.hero-owner-strip strong { font-weight: 800; }
.hero-owner-strip svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-owner-strip:hover { background: var(--brand-primary-dark); color: #fff; }

@media (max-width: 767.98px) {
    .hero-banner { padding: 1.75rem 1.1rem 3.5rem; border-radius: 1rem; }
    .hero-owner-strip { font-size: 0.72rem; padding: 0.6rem 0.9rem; bottom: -1rem; }
    .hero-owner-strip span { white-space: normal; text-align: center; }
}

/* ---------- Apply-role split screen (Housing.com-style "I am a...") ---------- */
.apply-role-shell {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.12);
    margin: 1.5rem 0;
}
.apply-hero-panel {
    position: relative;
    background: linear-gradient(135deg, #0F766E 0%, #0B5A54 55%, #0F172A 100%);
    color: #fff;
    padding: 2.5rem 2.25rem;
}
.apply-hero-inner { position: relative; z-index: 1; }
.apply-hero-panel h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.apply-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.75rem;
}
.apply-steps { list-style: none; padding: 0; margin: 0 0 2rem; }
.apply-steps li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}
.apply-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--brand-secondary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
}
.apply-illustration { display: flex; justify-content: center; padding: 1rem 0 0.5rem; }
.apply-illustration svg { width: 140px; height: 140px; }

.apply-form-panel { background: #fff; padding: 2.5rem 2.25rem; }

.role-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}
.role-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    background: var(--brand-bg);
    border: 1.5px solid var(--border-soft);
    color: var(--ink-muted);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 0.75rem 0.5rem;
    border-radius: 0.75rem;
    cursor: pointer;
    text-align: center;
}
.role-pill svg { width: 20px; height: 20px; }
.role-pill:hover { border-color: var(--brand-secondary); }
.role-pill.active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

@media (max-width: 991.98px) {
    .apply-role-shell { grid-template-columns: 1fr; }
}
@media (max-width: 575.98px) {
    .apply-hero-panel, .apply-form-panel { padding: 1.75rem 1.25rem; }
    .apply-illustration svg { width: 110px; height: 110px; }
    .role-pill-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Stats banner ---------- */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-soft);
    border: 1px solid var(--border-soft);
    border-radius: 1rem;
    overflow: hidden;
}
.stats-banner .stat-tile {
    background: #fff;
    padding: 1.25rem 1rem;
    text-align: center;
}
.stats-banner .stat-tile strong {
    display: block;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand-primary-dark);
    line-height: 1.2;
}
.stats-banner .stat-tile span {
    color: var(--ink-muted);
    font-size: 0.8rem;
    font-weight: 600;
}
@media (max-width: 767.98px) {
    .stats-banner { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Section card wrapper ---------- */
.section-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 1.25rem;
    padding: 2rem;
}
@media (max-width: 767.98px) {
    .section-card { padding: 1.25rem; border-radius: 1rem; }
}

/* ---------- Section headings ---------- */
.section-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-left: 0.75rem;
    border-left: 4px solid var(--brand-secondary);
}

/* ---------- City & Category cards (single scrollable row) ---------- */
.slider-wrap { position: relative; }
.chip-scroll-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.25rem;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.chip-scroll-row::-webkit-scrollbar { display: none; }

.city-card, .category-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 148px;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 0.75rem;
    overflow: hidden;
    color: var(--ink);
}
.city-card:hover, .category-card:hover {
    border-color: var(--brand-secondary);
    transform: translateY(-2px);
    color: var(--ink);
}
.city-card .photo-thumb, .category-card .photo-thumb {
    height: 96px;
    width: 100%;
    background: var(--brand-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
}
.city-card .photo-thumb img, .category-card .photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.city-card .photo-thumb svg, .category-card .photo-thumb svg { width: 30px; height: 30px; }
.city-card .photo-label, .category-card .photo-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.6rem;
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.city-card .photo-label svg, .category-card .photo-label svg {
    width: 14px;
    height: 14px;
    color: var(--brand-primary);
    flex-shrink: 0;
}

.slider-arrow {
    position: absolute;
    top: 38px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
}
.slider-arrow:hover { border-color: var(--brand-secondary); }
.slider-arrow.prev { left: -14px; }
.slider-arrow.next { right: -14px; }
.slider-arrow svg { width: 16px; height: 16px; color: var(--brand-primary); }
@media (max-width: 767.98px) {
    .slider-arrow { display: none; }
}
.city-card .icon-wrap svg, .category-card .icon-wrap svg {
    width: 16px;
    height: 16px;
}

/* ---------- Trust / Safety ---------- */
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    height: 100%;
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 1rem;
    padding: 1.75rem 1.25rem;
}
.trust-badge:hover {
    border-color: var(--brand-secondary);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.1);
    transform: translateY(-2px);
}
.trust-badge .icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-bg);
    color: var(--brand-primary);
}
.trust-badge .icon-wrap svg { width: 26px; height: 26px; }
.trust-badge h6 { margin-bottom: 0.1rem; font-size: 0.95rem; }
.trust-badge p { color: var(--ink-muted); font-size: 0.825rem; margin: 0; line-height: 1.5; }

/* ---------- Verified seller cards ---------- */
.seller-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 1rem;
    padding: 1.25rem;
    height: 100%;
}
.seller-card:hover {
    border-color: var(--brand-secondary);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.1);
}
.seller-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--brand-primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.seller-badge svg { width: 13px; height: 13px; flex-shrink: 0; }
.seller-card .seller-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.6rem;
    margin-bottom: 0.9rem;
}
.avatar-initials {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--brand-bg);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
}
.seller-hero-avatar {
    width: 84px;
    height: 84px;
    font-size: 2rem;
}
.seller-card .stats-row {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid var(--border-soft);
    padding-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--ink-muted);
}
.seller-card .stats-row strong {
    display: block;
    font-size: 1.1rem;
    color: var(--ink);
}

/* ---------- Listing cards ---------- */
.listing-card {
    border: 1px solid var(--border-soft);
    border-radius: 0.75rem;
    overflow: hidden;
}
.listing-card:hover {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}
.listing-card .price {
    color: var(--brand-primary-dark);
    font-weight: 700;
    font-size: 1.15rem;
}
.listing-card .thumb {
    position: relative;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-bg), #E0F2FE);
    color: var(--brand-primary);
    overflow: hidden;
}
.listing-card .thumb svg { width: 44px; height: 44px; opacity: 0.6; }
.listing-card .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.listing-card .verified-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: #fff;
    color: #15803D;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}
.listing-card .verified-badge svg { width: 12px; height: 12px; }

/* ---------- Property options (quick-link search shortcuts) ---------- */
.option-tabs {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-soft);
}
.option-tabs button {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 0.1rem 0.75rem;
    font-weight: 700;
    color: var(--ink-muted);
    cursor: pointer;
}
.option-tabs button.active {
    color: var(--brand-primary-dark);
    border-bottom-color: var(--brand-primary);
}
.option-links {
    column-count: 2;
    column-gap: 1.5rem;
}
.option-links a {
    display: block;
    break-inside: avoid;
    padding: 0.3rem 0;
    color: var(--ink-muted);
    font-size: 0.875rem;
    text-decoration: none;
}
.option-links a:hover { color: var(--brand-primary); }
@media (max-width: 767.98px) {
    .option-links { column-count: 1; }
}

/* ---------- Footer ---------- */
.site-footer {
    background: #0B2A28;
    color: #CBD5E1;
    margin-top: 4rem;
}
.site-footer h6 {
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}
.site-footer a {
    color: #94A3B8;
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    font-size: 0.9rem;
}
.site-footer a:hover { color: #fff; }
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #64748B;
    font-size: 0.85rem;
}
.site-footer .brand-font {
    color: #fff;
}

/* ---------- Focus states ---------- */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible {
    outline: 2px solid var(--brand-secondary);
    outline-offset: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
    .site-footer { text-align: center; }
    .site-footer .footer-col { margin-bottom: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}
