/* =====================================================
   Nigeria Property Express — Global Stylesheet
   Shared across every page. Individual pages layer their
   own <style> blocks on top of this for page-specific UI.
   ===================================================== */

:root {
    --primary: #0B1C33;
    --primary-light: #1B3A63;
    --primary-dark: #081326;
    --gold: #BF9B5C;
    --gold-dark: #A8842F;
    --accent: var(--gold);       /* kept as an alias — older per-page <style> blocks reference --accent directly */
    --accent-dark: var(--gold-dark);
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #f8f7f4;
    --white: #ffffff;
    --border: #e5e7eb;
    --success: #1a8f5a;
    --danger: #dc2626;
    --radius-sm: 10px;
    --radius: 14px;
    --shadow: 0 2px 10px rgba(11, 28, 51, 0.06);
    --shadow-md: 0 12px 24px -8px rgba(11, 28, 51, 0.14);
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; min-height: 100%; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; margin: 0 0 8px; line-height: 1.25; letter-spacing: -0.01em; }
p { margin: 0 0 12px; color: var(--text-light); }
svg { width: 20px; height: 20px; flex-shrink: 0; }

.site-main { flex: 1; }

/* -----------------------------------------------------
   NAVIGATION
   ----------------------------------------------------- */
.site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}
.nav-logo svg { color: var(--gold); }
.nav-logo span span { color: var(--gold); font-weight: 500; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 6px;
}

.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
}
.nav-link svg { width: 16px; height: 16px; }
.nav-link:hover { color: var(--primary); background: var(--bg); }
.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    font-weight: 600;
    margin-left: 6px;
}
.nav-cta:hover { background: var(--primary-dark); }
.nav-count {
    background: var(--gold);
    color: #1a1305;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 999px;
    margin-left: 2px;
}
.user-menu { position: relative; }
.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 12px 5px 5px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
}
.user-menu-btn:hover { border-color: var(--gold); }
.user-menu-btn svg { width: 14px; height: 14px; color: var(--text-light); }
.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.user-menu-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    min-width: 190px;
    padding: 6px;
    z-index: 1100;
}
.user-menu-dropdown.active { display: block; }
.user-menu-dropdown a {
    display: block;
    padding: 9px 12px;
    font-size: 14px;
    color: var(--text);
    border-radius: var(--radius-sm);
}
.user-menu-dropdown a:hover { background: var(--bg); }

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
        gap: 2px;
    }
    .nav-links.active { display: flex; }
    .nav-link, .nav-cta { width: 100%; }
    .user-menu { width: 100%; }
    .user-menu-btn { width: 100%; justify-content: flex-start; }
    .user-menu-dropdown { position: static; box-shadow: none; border: none; padding-left: 12px; }
}

/* -----------------------------------------------------
   BUTTONS
   ----------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
}
.btn-primary { background: var(--gold); color: #1a1305; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); }

.form-submit {
    width: 100%;
    padding: 13px 20px;
    background: var(--gold);
    color: #1a1305;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.form-submit:hover { background: var(--gold-dark); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.spinner {
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255,255,255,0.4);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* -----------------------------------------------------
   FORMS (shared across auth, list-property, profile...)
   ----------------------------------------------------- */
.form-group { margin-bottom: 18px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea, select, textarea,
input[type="text"], input[type="email"], input[type="tel"],
input[type="password"], input[type="number"], input[type="date"] {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus,
select:focus, textarea:focus, input:focus {
    outline: none;
    border-color: var(--gold);
}
.form-textarea, textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }

.password-field { position: relative; }
.password-field .form-input { padding-right: 44px; }
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.checkbox-label { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; cursor: pointer; }

/* -----------------------------------------------------
   ALERTS & TOASTS
   ----------------------------------------------------- */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; }
.alert-error { background: #fee2e2; color: #991b1b; }
.alert-success { background: #dcfce7; color: #166534; }
.alert-info { background: #dbeafe; color: #1e40af; }

.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 5000; display: flex; flex-direction: column; gap: 10px; }
.toast {
    background: var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    box-shadow: var(--shadow-md);
    animation: toast-in 0.2s ease-out;
}
.toast-error { background: var(--danger); }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.loading { display: flex; justify-content: center; padding: 60px 0; }
.loading .spinner { border-color: rgba(11,28,51,0.1); border-top-color: var(--gold); width: 32px; height: 32px; }

/* -----------------------------------------------------
   BADGES
   ----------------------------------------------------- */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.badge-featured { background: var(--gold); color: #1a1305; top: 44px; left: 12px; }
.badge-sale { background: var(--success); top: 12px; right: 12px; left: auto; }
.badge-rent { background: #2563eb; top: 12px; right: 12px; left: auto; }

/* Reference-number tag — a ledger-style ID on each listing card,
   playing off how Nigerian property documentation actually reads. */
.property-ref {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(11, 28, 51, 0.72);
    backdrop-filter: blur(3px);
    color: #fff;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 4px 10px;
    border-radius: 999px;
}
.property-ref + .badge-featured { top: 44px; }

/* -----------------------------------------------------
   PROPERTY CARDS & GRID (homepage, search results)
   ----------------------------------------------------- */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}
.property-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.18s, box-shadow 0.18s;
    display: block;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.property-image { position: relative; aspect-ratio: 4 / 3; background: var(--border); overflow: hidden; }
.property-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, opacity 0.25s ease; }
.property-card:hover .property-image img { transform: scale(1.05); }
.fav-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 2;
}
.fav-btn svg { width: 17px; height: 17px; }
.property-body { padding: 18px; }
.property-price { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.property-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.property-location { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.property-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    padding-top: 12px;
}
.property-meta span { display: flex; align-items: center; gap: 5px; }
.meta-type { margin-left: auto; text-transform: capitalize; }

.empty-state { text-align: center; padding: 60px 24px; color: var(--text-light); }
.empty-state-icon { font-size: 40px; margin-bottom: 12px; color: var(--gold); display: flex; justify-content: center; }
.empty-state-icon svg { width: 40px; height: 40px; }

/* -----------------------------------------------------
   GENERIC PAGE LAYOUT (fallbacks; many pages override)
   ----------------------------------------------------- */
.page-header {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 48px 24px;
    text-align: center;
}
.page-header h1 { color: var(--white); font-size: 30px; }
.page-header p { color: rgba(255,255,255,0.75); margin: 0; }
.page-header-content { max-width: 720px; margin: 0 auto; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* -----------------------------------------------------
   LOCATION FILTER — State -> LGA -> Area cascade, used by
   pages/properties.php (search) and pages/list-property.php
   (listing form). Both drive the Google Maps link/embed.
   ----------------------------------------------------- */
.location-cascade { display: flex; flex-direction: column; gap: 14px; }
.map-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    padding: 8px 0 0;
}
.map-preview-link svg { width: 15px; height: 15px; color: var(--gold); }
.map-preview-link:hover { color: var(--gold-dark); }
.map-preview-link[aria-disabled="true"] { color: var(--text-light); pointer-events: none; }

.map-embed-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
}
.map-embed-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* -----------------------------------------------------
   AUTH PAGES (register / login)
   ----------------------------------------------------- */
.auth-page { min-height: calc(100vh - 68px); display: flex; align-items: stretch; }
.auth-container { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
.auth-left {
    background: linear-gradient(160deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-brand { margin-bottom: 48px; }
.auth-logo { font-size: 36px; color: var(--gold); }
.auth-brand h1 { color: var(--white); font-size: 28px; margin: 12px 0; }
.auth-brand p { color: rgba(255,255,255,0.7); font-size: 15px; }
.auth-features { display: flex; flex-direction: column; gap: 24px; }
.auth-feature { display: flex; gap: 14px; align-items: flex-start; }
.auth-feature-icon { font-size: 22px; color: var(--gold); }
.auth-feature h4 { color: var(--white); font-size: 15px; margin-bottom: 2px; }
.auth-feature p { color: rgba(255,255,255,0.65); font-size: 13px; margin: 0; }

.auth-right { background: var(--white); display: flex; align-items: center; justify-content: center; padding: 48px 32px; }
.auth-card { width: 100%; max-width: 420px; }
.auth-card h2 { font-size: 24px; }
.auth-subtitle { margin-bottom: 24px; }

.auth-divider { display: flex; align-items: center; text-align: center; color: var(--text-light); font-size: 13px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-divider span { padding: 0 12px; }

.social-login { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.social-btn:hover { background: var(--bg); }
.social-btn img { width: 20px; height: 20px; }

.auth-footer { text-align: center; font-size: 14px; color: var(--text-light); margin: 0; }
.auth-footer a { color: var(--gold-dark); font-weight: 600; }

@media (max-width: 900px) {
    .auth-container { grid-template-columns: 1fr; }
    .auth-left { display: none; }
    .auth-right { padding: 24px; }
}

/* -----------------------------------------------------
   FOOTER
   ----------------------------------------------------- */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.65); margin-top: 48px; }
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 48px 24px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; color: var(--white); font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.footer-logo svg { color: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 14px; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 13px; padding: 5px 0; color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 12px; padding: 16px 24px; }

@media (max-width: 720px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* -----------------------------------------------------
   MISC SHARED UTILITIES
   ----------------------------------------------------- */
.breadcrumb { font-size: 13px; color: var(--text-light); padding: 16px 24px; }
.breadcrumb-current { color: var(--text); font-weight: 600; }
.dashboard-page, .properties-page, .list-property-page,
.mortgage-page, .compare-page { padding-bottom: 48px; }

@media (prefers-reduced-motion: reduce) {
    .property-card, .property-image img { transition: none; }
}

/* =====================================================
   ADDITIONS — Nigeria Property Express feature set
   (logo image, nav dropdown, guest gate modal, footer
   audience grid, image carousel, video embed, reviews,
   companies directory, currency toggle, request forms)
   ===================================================== */

/* Logo image (replaces inline SVG glyph) */
.nav-logo-img { height: 34px; width: auto; display: block; }
.footer-logo img { height: 34px; width: auto; border-radius: 6px; background: #fff; padding: 5px 10px; }
.footer-logo { align-items: center; }

/* Nav "More" dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn { display: inline-flex; align-items: center; gap: 4px; background: none; border: none; font: inherit; cursor: pointer; color: inherit; padding: 0; }
.nav-dropdown-btn svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown.active .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 14px); left: 0; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
    min-width: 210px; padding: 8px; display: none; z-index: 1200;
}
.nav-dropdown.active .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; color: var(--text); }
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--primary); }
@media (max-width: 900px) {
    .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 0 12px; display: block; }
    .nav-dropdown-btn svg { display: none; }
}

/* Guest post-property gate modal */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(11, 28, 51, 0.55); z-index: 2000;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: var(--white); border-radius: var(--radius); padding: 32px; max-width: 380px; width: 100%;
    position: relative; text-align: center; box-shadow: var(--shadow-md);
}
.modal-close { position: absolute; top: 12px; right: 14px; background: none; border: none; font-size: 22px; line-height: 1; cursor: pointer; color: var(--text-light); }
.modal-actions { display: flex; gap: 10px; margin-top: 18px; }
.modal-actions .btn { flex: 1; }

/* Footer audience grid (client-requested "Explore" list) */
.footer-col-wide { grid-column: span 1; }
.footer-audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; }
.footer-audience-grid span { display: block; font-size: 13px; padding: 5px 0; color: rgba(255,255,255,0.6); }

/* Auto-scrolling property image carousel */
.property-carousel { position: relative; width: 100%; height: 100%; }
.property-carousel .carousel-track {
    display: flex; width: 100%; height: 100%; animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.property-carousel .carousel-track img { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }
.property-carousel .carousel-dots {
    position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; z-index: 2;
}
.property-carousel .carousel-dots span {
    width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.55); transition: background 0.2s;
}
.property-carousel .carousel-dots span.active { background: var(--white); }
@media (prefers-reduced-motion: reduce) {
    .property-carousel .carousel-track { animation: none !important; }
}

/* Video embed (YouTube) */
.video-embed-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; background: #000; }
.video-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Currency toggle used on list-property + property price displays */
.currency-toggle { display: inline-flex; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.currency-toggle label { padding: 8px 14px; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--text-light); }
.currency-toggle input { display: none; }
.currency-toggle input:checked + span { background: var(--primary); color: var(--white); display: inline-block; margin: -8px -14px; padding: 8px 14px; }

/* Type / sub-type cascading search */
.subtype-select[disabled] { opacity: 0.6; }

/* Agent public reviews */
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; }
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.review-response { margin-top: 14px; padding: 14px 16px; background: var(--bg); border-radius: var(--radius-sm); border-left: 3px solid var(--gold); }
.review-response strong { color: var(--primary); }
.agent-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; transition: box-shadow 0.2s; }
.agent-card:hover { box-shadow: var(--shadow-md); }
.agent-card .agent-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; margin: 0 auto 12px; }
.agent-rating { color: var(--gold); font-size: 14px; margin: 6px 0; }

/* Companies directory */
.company-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.company-tabs a { padding: 9px 16px; border: 1px solid var(--border); border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--text); }
.company-tabs a.active, .company-tabs a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.company-badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; background: var(--bg); color: var(--primary); margin-top: 6px; }
.company-badge.verified { background: #e7f6ee; color: var(--success); }

/* Generic simple form page shell (used by request-property / npe-direct) */
.form-page { max-width: 720px; margin: 0 auto; padding: 48px 20px 80px; }
.form-page-header { text-align: center; margin-bottom: 32px; }
.form-page-header p { max-width: 520px; margin: 0 auto; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } .footer-audience-grid { grid-template-columns: 1fr; } }
