/* ============================================
   FSBOTN.com - Main Stylesheet
   Tennessee's #1 For Sale By Owner Platform
   ============================================ */

/* --- CSS Variables --- */
:root {
    --fsbotn-primary: #1e3a5f;
    --fsbotn-primary-dark: #152c49;
    --fsbotn-primary-light: #2a4f7f;
    --fsbotn-accent: #f59e0b;
    --fsbotn-accent-hover: #d97706;
    --fsbotn-accent-light: #fef3c7;
    --fsbotn-success: #22c55e;
    --fsbotn-success-light: #dcfce7;
    --fsbotn-danger: #ef4444;
    --fsbotn-danger-light: #fef2f2;
    --fsbotn-warning: #f59e0b;
    --fsbotn-text: #1f2937;
    --fsbotn-text-light: #6b7280;
    --fsbotn-text-lighter: #9ca3af;
    --fsbotn-bg: #ffffff;
    --fsbotn-bg-light: #f9fafb;
    --fsbotn-bg-dark: #f3f4f6;
    --fsbotn-border: #e5e7eb;
    --fsbotn-border-light: #f3f4f6;
    --fsbotn-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --fsbotn-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --fsbotn-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --fsbotn-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --fsbotn-radius: 8px;
    --fsbotn-radius-lg: 12px;
    --fsbotn-radius-xl: 16px;
    --fsbotn-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --fsbotn-transition: all 0.2s ease;
}

/* --- Reset & Base --- */
.fsbotn-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.fsbotn-container-sm {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.fsbotn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    border-radius: var(--fsbotn-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--fsbotn-transition);
    font-family: var(--fsbotn-font);
    line-height: 1.5;
}
.fsbotn-btn:hover { transform: translateY(-1px); }
.fsbotn-btn-primary {
    background: var(--fsbotn-primary);
    color: #fff;
}
.fsbotn-btn-primary:hover {
    background: var(--fsbotn-primary-dark);
    color: #fff;
}
.fsbotn-btn-accent {
    background: var(--fsbotn-accent);
    color: #000;
    font-weight: 700;
}
.fsbotn-btn-accent:hover {
    background: var(--fsbotn-accent-hover);
    color: #000;
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}
.fsbotn-btn-outline {
    background: transparent;
    color: var(--fsbotn-primary);
    border: 2px solid var(--fsbotn-primary);
}
.fsbotn-btn-outline:hover {
    background: var(--fsbotn-primary);
    color: #fff;
}
.fsbotn-btn-outline-sm {
    background: transparent;
    color: var(--fsbotn-text-light);
    border: 1px solid var(--fsbotn-border);
    padding: 6px 14px;
    font-size: 13px;
}
.fsbotn-btn-outline-sm:hover {
    border-color: var(--fsbotn-primary);
    color: var(--fsbotn-primary);
}
.fsbotn-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}
.fsbotn-btn-sm {
    padding: 6px 14px;
    font-size: 13px;
}
.fsbotn-btn-block {
    display: flex;
    width: 100%;
}

/* --- Hero Section --- */
.fsbotn-hero {
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2440 50%, #1a365d 100%);
    padding: 80px 20px 100px;
    overflow: hidden;
    text-align: center;
}
.fsbotn-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
    background-size: cover;
}
.fsbotn-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.fsbotn-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.15;
}
.fsbotn-highlight {
    color: var(--fsbotn-accent);
}
.fsbotn-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.6;
}
.fsbotn-hero-search {
    margin-bottom: 32px;
}
.fsbotn-search-bar {
    display: flex;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--fsbotn-shadow-xl);
}
.fsbotn-search-input {
    flex: 1;
    border: none;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 50px;
    outline: none;
    background: transparent;
    font-family: var(--fsbotn-font);
}
.fsbotn-search-btn {
    border-radius: 50px !important;
    padding: 12px 28px !important;
    white-space: nowrap;
}
.fsbotn-hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.fsbotn-hero-ctas .fsbotn-btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.fsbotn-hero-ctas .fsbotn-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.fsbotn-hero-trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.fsbotn-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
}
.fsbotn-trust-item svg {
    color: var(--fsbotn-success);
}

/* --- Section Titles --- */
.fsbotn-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--fsbotn-primary);
    text-align: center;
    margin: 0 0 12px;
}
.fsbotn-section-subtitle {
    font-size: 18px;
    color: var(--fsbotn-text-light);
    text-align: center;
    margin: 0 0 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- How It Works --- */
.fsbotn-how-it-works {
    padding: 80px 20px;
    background: var(--fsbotn-bg-light);
}
.fsbotn-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.fsbotn-step {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: var(--fsbotn-radius-xl);
    box-shadow: var(--fsbotn-shadow);
    position: relative;
    transition: var(--fsbotn-transition);
}
.fsbotn-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--fsbotn-shadow-lg);
}
.fsbotn-step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--fsbotn-accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}
.fsbotn-step-icon {
    color: var(--fsbotn-primary);
    margin-bottom: 16px;
}
.fsbotn-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--fsbotn-text);
    margin: 0 0 12px;
}
.fsbotn-step p {
    color: var(--fsbotn-text-light);
    line-height: 1.6;
    margin: 0;
}

/* --- Savings Calculator --- */
.fsbotn-calculator-section {
    padding: 80px 20px;
    background: #fff;
}
.fsbotn-calculator {
    max-width: 700px;
    margin: 0 auto;
    background: var(--fsbotn-bg-light);
    border-radius: var(--fsbotn-radius-xl);
    padding: 48px;
    box-shadow: var(--fsbotn-shadow-lg);
}
.fsbotn-calc-input-group {
    margin-bottom: 32px;
}
.fsbotn-calc-input-group label {
    display: block;
    font-weight: 600;
    color: var(--fsbotn-text);
    margin-bottom: 8px;
    font-size: 16px;
}
.fsbotn-input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius);
    overflow: hidden;
    transition: var(--fsbotn-transition);
}
.fsbotn-input-wrapper:focus-within {
    border-color: var(--fsbotn-primary);
}
.fsbotn-input-prefix {
    padding: 12px 16px;
    background: var(--fsbotn-bg-dark);
    color: var(--fsbotn-text-light);
    font-weight: 600;
    font-size: 18px;
}
.fsbotn-input-wrapper input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 24px;
    font-weight: 700;
    outline: none;
    font-family: var(--fsbotn-font);
}
.fsbotn-slider {
    width: 100%;
    margin-top: 12px;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: var(--fsbotn-border);
    outline: none;
}
.fsbotn-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--fsbotn-primary);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: var(--fsbotn-shadow);
}
.fsbotn-calc-results {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}
.fsbotn-calc-result {
    text-align: center;
    padding: 20px;
    border-radius: var(--fsbotn-radius);
}
.fsbotn-calc-agent {
    background: var(--fsbotn-danger-light);
}
.fsbotn-calc-fsbo {
    background: var(--fsbotn-success-light);
}
.fsbotn-calc-label {
    font-size: 13px;
    color: var(--fsbotn-text-light);
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fsbotn-calc-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--fsbotn-text);
}
.fsbotn-calc-vs {
    font-weight: 800;
    color: var(--fsbotn-text-lighter);
    font-size: 14px;
}
.fsbotn-calc-savings {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: var(--fsbotn-radius);
    margin-top: 16px;
    grid-column: 1 / -1;
}
.fsbotn-calc-savings .fsbotn-calc-label {
    color: rgba(255,255,255,0.9);
}
.fsbotn-savings-amount {
    color: #fff !important;
    font-size: 36px !important;
}
.fsbotn-calc-cta {
    width: 100%;
    margin-top: 16px;
    font-size: 18px !important;
    padding: 16px 32px !important;
}

/* --- Pricing Section --- */
.fsbotn-pricing-section {
    padding: 80px 20px;
    background: var(--fsbotn-bg-light);
}
.fsbotn-pricing-cards {
    display: flex;
    justify-content: center;
}
.fsbotn-pricing-card {
    background: #fff;
    border-radius: var(--fsbotn-radius-xl);
    padding: 48px 40px;
    max-width: 440px;
    width: 100%;
    box-shadow: var(--fsbotn-shadow-xl);
    position: relative;
    text-align: center;
}
.fsbotn-pricing-featured {
    border: 3px solid var(--fsbotn-accent);
}
.fsbotn-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fsbotn-accent);
    color: #000;
    padding: 4px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fsbotn-pricing-card h3 {
    font-size: 22px;
    color: var(--fsbotn-text);
    margin: 8px 0 24px;
}
.fsbotn-pricing-price {
    margin-bottom: 32px;
}
.fsbotn-price-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--fsbotn-text);
    vertical-align: top;
}
.fsbotn-price-amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--fsbotn-primary);
    line-height: 1;
}
.fsbotn-price-period {
    display: block;
    font-size: 16px;
    color: var(--fsbotn-text-light);
    margin-top: 4px;
}
.fsbotn-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}
.fsbotn-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--fsbotn-border-light);
    color: var(--fsbotn-text);
    font-size: 15px;
}
.fsbotn-pricing-features svg {
    color: var(--fsbotn-success);
    flex-shrink: 0;
}
.fsbotn-pricing-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--fsbotn-text-light);
}

/* --- Stats Section --- */
.fsbotn-stats-section {
    padding: 60px 20px;
    background: var(--fsbotn-primary);
}
.fsbotn-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.fsbotn-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--fsbotn-accent);
    line-height: 1;
    margin-bottom: 8px;
}
.fsbotn-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* --- Listings Grid --- */
.fsbotn-recent-listings {
    padding: 80px 20px;
    background: #fff;
}
.fsbotn-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.fsbotn-listing-card {
    background: #fff;
    border-radius: var(--fsbotn-radius-lg);
    overflow: hidden;
    box-shadow: var(--fsbotn-shadow);
    transition: var(--fsbotn-transition);
    text-decoration: none;
    color: var(--fsbotn-text);
    display: block;
}
.fsbotn-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fsbotn-shadow-xl);
    color: var(--fsbotn-text);
}
.fsbotn-listing-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.fsbotn-listing-type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--fsbotn-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.fsbotn-listing-info {
    padding: 20px;
}
.fsbotn-listing-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--fsbotn-primary);
    margin-bottom: 4px;
}
.fsbotn-listing-address {
    font-size: 15px;
    font-weight: 600;
    color: var(--fsbotn-text);
}
.fsbotn-listing-city {
    font-size: 14px;
    color: var(--fsbotn-text-light);
    margin-bottom: 12px;
}
.fsbotn-listing-details {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: var(--fsbotn-text-light);
    padding-top: 12px;
    border-top: 1px solid var(--fsbotn-border-light);
}
.fsbotn-dot {
    color: var(--fsbotn-border);
}
.fsbotn-view-all {
    text-align: center;
}
.fsbotn-no-listings {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--fsbotn-text-light);
}

/* --- Auth Forms --- */
.fsbotn-auth-container {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}
.fsbotn-auth-card {
    background: #fff;
    border-radius: var(--fsbotn-radius-xl);
    padding: 48px;
    max-width: 520px;
    width: 100%;
    box-shadow: var(--fsbotn-shadow-lg);
}
.fsbotn-auth-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--fsbotn-primary);
    margin: 0 0 8px;
    text-align: center;
}
.fsbotn-auth-subtitle {
    text-align: center;
    color: var(--fsbotn-text-light);
    margin-bottom: 32px;
}
.fsbotn-auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--fsbotn-text-light);
    font-size: 14px;
}
.fsbotn-auth-footer a {
    color: var(--fsbotn-primary);
    font-weight: 600;
}
.fsbotn-auth-prompt {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}
.fsbotn-auth-prompt h2 {
    color: var(--fsbotn-primary);
    font-size: 28px;
    margin-bottom: 12px;
}
.fsbotn-auth-prompt p {
    color: var(--fsbotn-text-light);
    margin-bottom: 32px;
    font-size: 16px;
}
.fsbotn-auth-prompt-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Forms --- */
.fsbotn-form {
    font-family: var(--fsbotn-font);
}
.fsbotn-form-group {
    margin-bottom: 20px;
}
.fsbotn-form-group label {
    display: block;
    font-weight: 600;
    color: var(--fsbotn-text);
    margin-bottom: 6px;
    font-size: 14px;
}
.fsbotn-form-group input,
.fsbotn-form-group select,
.fsbotn-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius);
    font-size: 15px;
    font-family: var(--fsbotn-font);
    transition: var(--fsbotn-transition);
    background: #fff;
    color: var(--fsbotn-text);
    box-sizing: border-box;
}
.fsbotn-form-group input:focus,
.fsbotn-form-group select:focus,
.fsbotn-form-group textarea:focus {
    border-color: var(--fsbotn-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}
.fsbotn-form-group small {
    display: block;
    margin-top: 4px;
    color: var(--fsbotn-text-lighter);
    font-size: 13px;
}
.fsbotn-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.fsbotn-form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.fsbotn-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fsbotn-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--fsbotn-text-light);
    cursor: pointer;
}
.fsbotn-checkbox-label input[type="checkbox"] {
    width: auto;
}
.fsbotn-forgot-link {
    font-size: 14px;
    color: var(--fsbotn-primary);
}
.fsbotn-mt-1 { margin-top: 8px; }

/* --- Multi-step Form (Stepper Tabs) --- */
.fsbotn-form-steps {
    display: flex;
    gap: 4px;
    margin-bottom: 40px;
    background: var(--fsbotn-bg-dark);
    border-radius: var(--fsbotn-radius);
    padding: 4px;
}
.fsbotn-form-steps .fsbotn-form-step {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fsbotn-text-lighter);
    transition: var(--fsbotn-transition);
}
.fsbotn-form-steps .fsbotn-form-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--fsbotn-border);
    color: var(--fsbotn-text-lighter);
    font-size: 12px;
    margin-right: 6px;
}
.fsbotn-form-steps .fsbotn-form-step.active {
    background: var(--fsbotn-primary);
    color: #fff;
}
.fsbotn-form-steps .fsbotn-form-step.active span {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.fsbotn-form-steps .fsbotn-form-step.completed {
    color: var(--fsbotn-success);
}
.fsbotn-form-steps .fsbotn-form-step.completed span {
    background: var(--fsbotn-success);
    color: #fff;
}
/* Form step content sections */
form > .fsbotn-form-step {
    text-align: left;
}
.fsbotn-step-content {
    display: none;
}
.fsbotn-step-content.active {
    display: block;
}
.fsbotn-step-content h2 {
    font-size: 24px;
    color: var(--fsbotn-primary);
    margin: 0 0 24px;
}
.fsbotn-form-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--fsbotn-border-light);
}

/* --- Photo Upload --- */
.fsbotn-dropzone {
    border: 2px dashed var(--fsbotn-border);
    border-radius: var(--fsbotn-radius-lg);
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--fsbotn-transition);
    background: var(--fsbotn-bg-light);
}
.fsbotn-dropzone:hover,
.fsbotn-dropzone.dragover {
    border-color: var(--fsbotn-primary);
    background: rgba(30,58,95,0.03);
}
.fsbotn-dropzone svg {
    color: var(--fsbotn-text-lighter);
    margin-bottom: 12px;
}
.fsbotn-dropzone p {
    color: var(--fsbotn-text-light);
    margin: 0 0 4px;
}
.fsbotn-dropzone small {
    color: var(--fsbotn-text-lighter);
}
.fsbotn-upload-link {
    color: var(--fsbotn-primary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}
.fsbotn-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 16px;
}
.fsbotn-photo-item {
    position: relative;
    border-radius: var(--fsbotn-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.fsbotn-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fsbotn-remove-photo {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    background: rgba(239,68,68,0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Amenities Grid --- */
.fsbotn-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}
.fsbotn-amenity-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--fsbotn-transition);
    font-size: 14px;
    color: var(--fsbotn-text);
}
.fsbotn-amenity-checkbox:hover {
    background: var(--fsbotn-bg-light);
}
.fsbotn-amenity-checkbox input {
    width: auto !important;
}

/* --- Submit Summary --- */
.fsbotn-submit-summary {
    background: var(--fsbotn-bg-light);
    border-radius: var(--fsbotn-radius-lg);
    padding: 24px;
    margin-top: 32px;
}
.fsbotn-submit-summary h3 {
    margin: 0 0 16px;
    color: var(--fsbotn-text);
}
.fsbotn-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--fsbotn-border);
    color: var(--fsbotn-text);
}
.fsbotn-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--fsbotn-primary);
}
.fsbotn-summary-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--fsbotn-text-lighter);
}

/* --- Checkout --- */
.fsbotn-checkout-container {
    padding: 60px 20px;
}
.fsbotn-checkout-card {
    background: #fff;
    border-radius: var(--fsbotn-radius-xl);
    padding: 48px;
    box-shadow: var(--fsbotn-shadow-lg);
    text-align: center;
}
.fsbotn-checkout-card h1 {
    color: var(--fsbotn-primary);
    margin: 0 0 32px;
}
.fsbotn-checkout-summary {
    text-align: left;
    margin-bottom: 32px;
}
.fsbotn-checkout-summary h3 {
    margin: 0 0 16px;
    color: var(--fsbotn-text);
}
.fsbotn-checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--fsbotn-border);
}
.fsbotn-checkout-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--fsbotn-primary);
}
.fsbotn-checkout-details {
    padding: 12px 0;
}
.fsbotn-checkout-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--fsbotn-text-light);
}
.fsbotn-checkout-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 0;
    border-top: 2px solid var(--fsbotn-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--fsbotn-primary);
}
.fsbotn-checkout-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--fsbotn-text-lighter);
}

/* --- Success Page --- */
.fsbotn-success-container {
    padding: 60px 20px;
}
.fsbotn-success-card {
    background: #fff;
    border-radius: var(--fsbotn-radius-xl);
    padding: 48px;
    box-shadow: var(--fsbotn-shadow-lg);
    text-align: center;
}
.fsbotn-success-icon {
    margin-bottom: 24px;
}
.fsbotn-success-card h1 {
    color: var(--fsbotn-success);
    margin: 0 0 16px;
}
.fsbotn-success-next {
    text-align: left;
    background: var(--fsbotn-bg-light);
    border-radius: var(--fsbotn-radius);
    padding: 24px;
    margin: 32px 0;
}
.fsbotn-success-next h3 {
    margin: 0 0 12px;
}
.fsbotn-success-next ol {
    margin: 0;
    padding-left: 20px;
}
.fsbotn-success-next li {
    padding: 4px 0;
    color: var(--fsbotn-text-light);
}
.fsbotn-success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* --- Search Page --- */
.fsbotn-search-page {
    padding: 40px 20px 80px;
}
.fsbotn-search-header h1 {
    font-size: 28px;
    color: var(--fsbotn-primary);
    margin: 0 0 24px;
}
.fsbotn-search-filters {
    background: var(--fsbotn-bg-light);
    border-radius: var(--fsbotn-radius-lg);
    padding: 20px;
    margin-bottom: 32px;
}
.fsbotn-filter-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.fsbotn-filter-group {
    flex: 1;
    min-width: 120px;
}
.fsbotn-filter-location {
    flex: 2;
}
.fsbotn-filter-group input,
.fsbotn-filter-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius);
    font-size: 14px;
    font-family: var(--fsbotn-font);
    background: #fff;
    box-sizing: border-box;
}
.fsbotn-search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: var(--fsbotn-text-light);
    font-size: 14px;
}
.fsbotn-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.fsbotn-pagination button {
    padding: 8px 16px;
    border: 1px solid var(--fsbotn-border);
    background: #fff;
    border-radius: var(--fsbotn-radius);
    cursor: pointer;
    font-family: var(--fsbotn-font);
    transition: var(--fsbotn-transition);
}
.fsbotn-pagination button.active,
.fsbotn-pagination button:hover {
    background: var(--fsbotn-primary);
    color: #fff;
    border-color: var(--fsbotn-primary);
}

/* --- Dashboard --- */
.fsbotn-dashboard {
    padding: 40px 20px 80px;
}
.fsbotn-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.fsbotn-dash-header h1 {
    font-size: 28px;
    color: var(--fsbotn-primary);
    margin: 0;
}
.fsbotn-dash-header p {
    color: var(--fsbotn-text-light);
    margin: 4px 0 0;
}
.fsbotn-dash-actions {
    display: flex;
    gap: 12px;
}
.fsbotn-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.fsbotn-dash-stat-card {
    background: #fff;
    border-radius: var(--fsbotn-radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--fsbotn-shadow);
}
.fsbotn-dash-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--fsbotn-primary);
}
.fsbotn-dash-stat-label {
    font-size: 13px;
    color: var(--fsbotn-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}
.fsbotn-dash-section {
    margin-bottom: 40px;
}
.fsbotn-dash-section h2 {
    font-size: 22px;
    color: var(--fsbotn-text);
    margin: 0 0 20px;
}
.fsbotn-dash-table-wrap {
    overflow-x: auto;
}
.fsbotn-dash-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--fsbotn-radius-lg);
    overflow: hidden;
    box-shadow: var(--fsbotn-shadow);
}
.fsbotn-dash-table th {
    background: var(--fsbotn-bg-light);
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: var(--fsbotn-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fsbotn-dash-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--fsbotn-border-light);
    font-size: 14px;
}
.fsbotn-dash-actions-cell {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.fsbotn-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.fsbotn-status-active, .fsbotn-status-paid, .fsbotn-status-completed, .fsbotn-status-publish {
    background: var(--fsbotn-success-light);
    color: #16a34a;
}
.fsbotn-status-pending {
    background: var(--fsbotn-accent-light);
    color: #b45309;
}
.fsbotn-status-draft {
    background: var(--fsbotn-bg-dark);
    color: var(--fsbotn-text-light);
}
.fsbotn-status-sold {
    background: #dbeafe;
    color: #1d4ed8;
}
.fsbotn-status-expired, .fsbotn-status-withdrawn {
    background: var(--fsbotn-danger-light);
    color: #dc2626;
}
.fsbotn-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: var(--fsbotn-radius-lg);
    box-shadow: var(--fsbotn-shadow);
}
.fsbotn-empty-state h3 {
    color: var(--fsbotn-text);
    margin: 0 0 8px;
}
.fsbotn-empty-state p {
    color: var(--fsbotn-text-light);
    margin: 0 0 24px;
}

/* --- Inquiries --- */
.fsbotn-inquiries-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fsbotn-inquiry-card {
    background: #fff;
    border-radius: var(--fsbotn-radius);
    padding: 20px;
    box-shadow: var(--fsbotn-shadow);
    border-left: 4px solid var(--fsbotn-border);
}
.fsbotn-inquiry-unread {
    border-left-color: var(--fsbotn-accent);
    background: var(--fsbotn-accent-light);
}
.fsbotn-inquiry-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}
.fsbotn-inquiry-date {
    font-size: 13px;
    color: var(--fsbotn-text-lighter);
}
.fsbotn-inquiry-property {
    font-size: 13px;
    color: var(--fsbotn-text-light);
    margin-bottom: 8px;
}
.fsbotn-inquiry-message {
    color: var(--fsbotn-text);
    margin-bottom: 8px;
    line-height: 1.5;
}
.fsbotn-inquiry-contact {
    font-size: 13px;
}
.fsbotn-inquiry-contact a {
    color: var(--fsbotn-primary);
}

/* --- Messages --- */
.fsbotn-message {
    padding: 14px 20px;
    border-radius: var(--fsbotn-radius);
    margin-bottom: 20px;
    font-size: 14px;
}
.fsbotn-message-success {
    background: var(--fsbotn-success-light);
    color: #16a34a;
    border: 1px solid #bbf7d0;
}
.fsbotn-message-error {
    background: var(--fsbotn-danger-light);
    color: #dc2626;
    border: 1px solid #fecaca;
}
.fsbotn-notice {
    padding: 20px;
    background: var(--fsbotn-bg-light);
    border-radius: var(--fsbotn-radius);
    text-align: center;
    color: var(--fsbotn-text-light);
}
.fsbotn-notice a {
    color: var(--fsbotn-primary);
    font-weight: 600;
}

/* --- Listing Submit Container --- */
.fsbotn-submit-container {
    padding: 40px 20px 80px;
}
.fsbotn-submit-header {
    text-align: center;
    margin-bottom: 40px;
}
.fsbotn-submit-header h1 {
    font-size: 32px;
    color: var(--fsbotn-primary);
    margin: 0 0 8px;
}
.fsbotn-submit-header p {
    color: var(--fsbotn-text-light);
    font-size: 16px;
}

/* --- Loading Spinner --- */
.fsbotn-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: fsbotn-spin 0.8s linear infinite;
}
@keyframes fsbotn-spin {
    to { transform: rotate(360deg); }
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .fsbotn-hero h1 { font-size: 32px; }
    .fsbotn-hero-subtitle { font-size: 16px; }
    .fsbotn-search-bar { flex-direction: column; border-radius: var(--fsbotn-radius-lg); }
    .fsbotn-search-btn { border-radius: var(--fsbotn-radius) !important; }
    .fsbotn-steps { grid-template-columns: 1fr; gap: 20px; }
    .fsbotn-calc-results { grid-template-columns: 1fr; }
    .fsbotn-calc-vs { display: none; }
    .fsbotn-listings-grid { grid-template-columns: 1fr; }
    .fsbotn-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .fsbotn-stat-number { font-size: 36px; }
    .fsbotn-form-row, .fsbotn-form-row-3 { grid-template-columns: 1fr; }
    .fsbotn-form-steps { flex-direction: column; }
    .fsbotn-dash-stats { grid-template-columns: repeat(2, 1fr); }
    .fsbotn-filter-row { flex-direction: column; }
    .fsbotn-filter-group { min-width: 100%; }
    .fsbotn-hero-ctas { flex-direction: column; align-items: center; }
    .fsbotn-section-title { font-size: 28px; }
    .fsbotn-pricing-card { padding: 32px 24px; }
    .fsbotn-price-amount { font-size: 48px; }
    .fsbotn-auth-card { padding: 32px 24px; }
    .fsbotn-calculator { padding: 32px 24px; }
    .fsbotn-checkout-card { padding: 32px 24px; }
    .fsbotn-success-card { padding: 32px 24px; }
    .fsbotn-dash-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .fsbotn-hero h1 { font-size: 26px; }
    .fsbotn-hero { padding: 60px 16px 80px; }
    .fsbotn-listing-image { height: 180px; }
}

/* --- Cities Section --- */
.fsbotn-cities-section {
    padding: 80px 20px;
    background: #fff;
}
.fsbotn-cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.fsbotn-city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: var(--fsbotn-bg-light);
    border-radius: var(--fsbotn-radius-lg);
    text-decoration: none;
    transition: var(--fsbotn-transition);
    border: 2px solid transparent;
}
.fsbotn-city-card:hover {
    border-color: var(--fsbotn-primary);
    transform: translateY(-2px);
    box-shadow: var(--fsbotn-shadow-md);
    background: #fff;
}
.fsbotn-city-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--fsbotn-primary);
}
.fsbotn-city-state {
    font-size: 13px;
    color: var(--fsbotn-text-light);
    margin-top: 2px;
}

/* --- Final CTA Section --- */
.fsbotn-final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2440 100%);
    text-align: center;
}
.fsbotn-final-cta h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
}
.fsbotn-final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- City Page --- */
.fsbotn-city-page {
    padding: 40px 20px 80px;
}
.fsbotn-city-page h1 {
    font-size: 32px;
    color: var(--fsbotn-primary);
    margin: 0 0 12px;
}
.fsbotn-city-page > .fsbotn-container > p {
    color: var(--fsbotn-text-light);
    margin-bottom: 32px;
    font-size: 16px;
}

/* --- View Counter on Single Listing --- */
.fsbotn-listing-views {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--fsbotn-text-lighter);
    margin-top: 8px;
}

/* --- Responsive additions --- */
@media (max-width: 768px) {
    .fsbotn-cities-grid { grid-template-columns: repeat(2, 1fr); }
    .fsbotn-final-cta h2 { font-size: 28px; }
    .fsbotn-final-cta { padding: 60px 20px; }
}
@media (max-width: 480px) {
    .fsbotn-cities-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .fsbotn-city-card { padding: 16px 12px; }
}

/* ============================================
   DASHBOARD V2 - Enhanced Tabs & Sections
   ============================================ */

/* Dashboard Header */
.fsbotn-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}
.fsbotn-dash-header h1 {
    font-size: 28px;
    color: var(--fsbotn-primary);
    margin: 0;
}
.fsbotn-dash-header p {
    color: var(--fsbotn-text-light);
    margin: 4px 0 0;
}
.fsbotn-dash-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Dashboard Stats */
.fsbotn-dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.fsbotn-dash-stat-card {
    background: white;
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--fsbotn-shadow);
}
.fsbotn-dash-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--fsbotn-primary);
}
.fsbotn-dash-stat-label {
    font-size: 14px;
    color: var(--fsbotn-text-light);
    margin-top: 4px;
}

/* Dashboard Tabs */
.fsbotn-dash-tabs {
    display: flex;
    border-bottom: 2px solid var(--fsbotn-border);
    margin-bottom: 32px;
    overflow-x: auto;
    gap: 0;
}
.fsbotn-dash-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--fsbotn-text-light);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--fsbotn-transition);
    white-space: nowrap;
}
.fsbotn-dash-tab:hover {
    color: var(--fsbotn-primary);
    background: var(--fsbotn-bg-light);
}
.fsbotn-dash-tab.active {
    color: var(--fsbotn-primary);
    border-bottom-color: var(--fsbotn-accent);
}
.fsbotn-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    background: var(--fsbotn-danger);
    border-radius: 100px;
}
.fsbotn-badge-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    background: var(--fsbotn-danger);
    border-radius: 100px;
    margin-left: 6px;
}

/* Dashboard Content */
.fsbotn-dash-content {
    min-height: 400px;
}
.fsbotn-dash-section {
    background: white;
    border-radius: var(--fsbotn-radius-lg);
    padding: 32px;
    box-shadow: var(--fsbotn-shadow);
    border: 1px solid var(--fsbotn-border);
}
.fsbotn-dash-section h2 {
    font-size: 22px;
    color: var(--fsbotn-primary);
    margin: 0 0 24px;
}
.fsbotn-dash-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.fsbotn-dash-section-header h2 {
    margin-bottom: 0;
}
.fsbotn-dash-subsection {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--fsbotn-border);
}
.fsbotn-dash-subsection h3 {
    font-size: 20px;
    color: var(--fsbotn-primary);
    margin: 0 0 8px;
}
.fsbotn-subsection-desc {
    color: var(--fsbotn-text-light);
    margin-bottom: 24px;
}

/* Dashboard Table */
.fsbotn-dash-table-wrap {
    overflow-x: auto;
}
.fsbotn-dash-table {
    width: 100%;
    border-collapse: collapse;
}
.fsbotn-dash-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fsbotn-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--fsbotn-border);
    background: var(--fsbotn-bg-light);
}
.fsbotn-dash-table td {
    padding: 14px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--fsbotn-border-light);
    vertical-align: middle;
}
.fsbotn-dash-table tr:hover td {
    background: var(--fsbotn-bg-light);
}
.fsbotn-dash-actions-cell {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.fsbotn-featured-tag {
    display: inline-block;
    background: var(--fsbotn-accent-light);
    color: var(--fsbotn-accent-hover);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

/* Status Badges */
.fsbotn-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}
.fsbotn-status-active, .fsbotn-status-publish, .fsbotn-status-completed {
    background: var(--fsbotn-success-light);
    color: #15803d;
}
.fsbotn-status-pending, .fsbotn-status-draft {
    background: #fef3c7;
    color: #92400e;
}
.fsbotn-status-expired, .fsbotn-status-failed {
    background: var(--fsbotn-danger-light);
    color: #dc2626;
}

/* Empty State */
.fsbotn-empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--fsbotn-text-light);
}
.fsbotn-empty-state svg {
    color: var(--fsbotn-text-lighter);
    margin-bottom: 16px;
}
.fsbotn-empty-state h3 {
    font-size: 20px;
    color: var(--fsbotn-text);
    margin: 0 0 8px;
}
.fsbotn-empty-state p {
    margin-bottom: 24px;
}

/* ============================================
   MESSAGING SYSTEM
   ============================================ */
.fsbotn-messages-container {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0;
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius-lg);
    overflow: hidden;
    min-height: 500px;
    margin-top: 16px;
}
.fsbotn-conv-list {
    border-right: 1px solid var(--fsbotn-border);
    overflow-y: auto;
    max-height: 600px;
    background: var(--fsbotn-bg-light);
}
.fsbotn-conv-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--fsbotn-border-light);
    cursor: pointer;
    transition: var(--fsbotn-transition);
}
.fsbotn-conv-item:hover {
    background: white;
}
.fsbotn-conv-item.active {
    background: white;
    border-left: 3px solid var(--fsbotn-accent);
}
.fsbotn-conv-unread {
    background: #eff6ff;
}
.fsbotn-conv-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--fsbotn-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.fsbotn-conv-info {
    flex: 1;
    min-width: 0;
}
.fsbotn-conv-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--fsbotn-text);
    display: flex;
    align-items: center;
}
.fsbotn-conv-property {
    font-size: 12px;
    color: var(--fsbotn-text-light);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fsbotn-conv-preview {
    font-size: 13px;
    color: var(--fsbotn-text-lighter);
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fsbotn-conv-time {
    font-size: 11px;
    color: var(--fsbotn-text-lighter);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Message Thread */
.fsbotn-msg-thread {
    display: flex;
    flex-direction: column;
    background: white;
}
.fsbotn-msg-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--fsbotn-text-lighter);
    gap: 12px;
}
.fsbotn-msg-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--fsbotn-border);
    background: var(--fsbotn-bg-light);
}
.fsbotn-msg-header-name {
    font-weight: 600;
    font-size: 16px;
}
.fsbotn-msg-header-property {
    font-size: 13px;
    color: var(--fsbotn-text-light);
}
.fsbotn-msg-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-height: 400px;
}
.fsbotn-msg-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}
.fsbotn-msg-bubble.sent {
    background: var(--fsbotn-primary);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}
.fsbotn-msg-bubble.received {
    background: var(--fsbotn-bg-dark);
    color: var(--fsbotn-text);
    margin-right: auto;
    border-bottom-left-radius: 4px;
}
.fsbotn-msg-time {
    font-size: 11px;
    color: var(--fsbotn-text-lighter);
    margin-top: 4px;
}
.fsbotn-msg-bubble.sent .fsbotn-msg-time {
    color: rgba(255,255,255,0.7);
}
.fsbotn-msg-input-area {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid var(--fsbotn-border);
    background: var(--fsbotn-bg-light);
}
.fsbotn-msg-input-area textarea {
    flex: 1;
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius);
    padding: 10px 14px;
    font-size: 14px;
    resize: none;
    min-height: 42px;
    max-height: 100px;
    font-family: var(--fsbotn-font);
}
.fsbotn-msg-input-area button {
    flex-shrink: 0;
}

/* ============================================
   BILLING SECTION
   ============================================ */
.fsbotn-billing-summary {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}
.fsbotn-billing-stat {
    background: var(--fsbotn-bg-light);
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius-lg);
    padding: 24px 32px;
    text-align: center;
    flex: 1;
}
.fsbotn-billing-stat-amount {
    font-size: 28px;
    font-weight: 800;
    color: var(--fsbotn-primary);
}
.fsbotn-billing-stat-label {
    font-size: 14px;
    color: var(--fsbotn-text-light);
    margin-top: 4px;
}

/* Upgrade Cards */
.fsbotn-upgrade-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.fsbotn-upgrade-card {
    background: white;
    border: 2px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius-xl);
    padding: 32px;
    position: relative;
    transition: var(--fsbotn-transition);
}
.fsbotn-upgrade-card:hover {
    border-color: var(--fsbotn-accent);
    box-shadow: var(--fsbotn-shadow-lg);
}
.fsbotn-upgrade-premium {
    border-color: #3b82f6;
}
.fsbotn-upgrade-premium:hover {
    border-color: #2563eb;
}
.fsbotn-upgrade-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #3b82f6;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 100px;
}
.fsbotn-upgrade-icon {
    margin-bottom: 16px;
}
.fsbotn-upgrade-card h4 {
    font-size: 20px;
    color: var(--fsbotn-primary);
    margin: 0 0 8px;
}
.fsbotn-upgrade-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--fsbotn-accent);
    margin-bottom: 12px;
}
.fsbotn-upgrade-premium .fsbotn-upgrade-price {
    color: #3b82f6;
}
.fsbotn-upgrade-card p {
    color: var(--fsbotn-text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.fsbotn-upgrade-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.fsbotn-upgrade-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--fsbotn-text);
    padding-left: 24px;
    position: relative;
}
.fsbotn-upgrade-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--fsbotn-success);
    font-weight: 700;
}
.fsbotn-upgrade-select {
    margin-bottom: 16px;
}
.fsbotn-upgrade-select label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--fsbotn-text-light);
    margin-bottom: 6px;
}
.fsbotn-upgrade-select select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius);
    font-size: 14px;
}
.fsbotn-upgrade-note {
    font-style: italic;
    color: var(--fsbotn-text-lighter) !important;
    text-align: center;
}

/* ============================================
   AGENT SECTION
   ============================================ */
.fsbotn-agent-section {
    padding: 0 !important;
    overflow: hidden;
}
.fsbotn-agent-hero {
    background: linear-gradient(135deg, var(--fsbotn-primary) 0%, var(--fsbotn-primary-light) 100%);
    padding: 48px 40px;
    color: white;
}
.fsbotn-agent-hero h2 {
    color: white !important;
    font-size: 28px;
    margin: 0 0 12px;
}
.fsbotn-agent-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
}

/* NAR Stats */
.fsbotn-nar-stats {
    padding: 40px;
}
.fsbotn-nar-stats h3 {
    font-size: 22px;
    color: var(--fsbotn-primary);
    margin: 0 0 4px;
}
.fsbotn-nar-source {
    font-size: 13px;
    color: var(--fsbotn-text-lighter);
    margin-bottom: 24px;
    font-style: italic;
}
.fsbotn-nar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.fsbotn-nar-card {
    background: var(--fsbotn-bg-light);
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius-lg);
    padding: 28px;
}
.fsbotn-nar-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--fsbotn-primary);
    line-height: 1;
}
.fsbotn-nar-vs {
    font-size: 16px;
    color: var(--fsbotn-danger);
    font-weight: 600;
    margin-top: 4px;
}
.fsbotn-nar-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--fsbotn-text);
    margin-top: 8px;
    margin-bottom: 8px;
}
.fsbotn-nar-card p {
    font-size: 13px;
    color: var(--fsbotn-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Agent Benefits */
.fsbotn-agent-benefits {
    padding: 0 40px 40px;
}
.fsbotn-agent-benefits h3 {
    font-size: 22px;
    color: var(--fsbotn-primary);
    margin: 0 0 20px;
}
.fsbotn-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.fsbotn-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--fsbotn-bg-light);
    border-radius: var(--fsbotn-radius);
    font-size: 14px;
    line-height: 1.5;
}
.fsbotn-benefit-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Agent Refund Notice */
.fsbotn-agent-refund {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 40px;
    padding: 20px 24px;
    background: var(--fsbotn-success-light);
    border: 1px solid #86efac;
    border-radius: var(--fsbotn-radius-lg);
    font-size: 15px;
    line-height: 1.6;
}
.fsbotn-agent-refund svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Agent CTA */
.fsbotn-agent-cta {
    padding: 40px;
    margin-top: 32px;
    background: var(--fsbotn-bg-light);
    border-top: 1px solid var(--fsbotn-border);
}
.fsbotn-agent-cta h3 {
    font-size: 22px;
    color: var(--fsbotn-primary);
    margin: 0 0 8px;
}
.fsbotn-agent-cta > p {
    color: var(--fsbotn-text-light);
    margin-bottom: 24px;
}
.fsbotn-agent-disclaimer {
    font-size: 12px;
    color: var(--fsbotn-text-lighter);
    margin-top: 12px;
    font-style: italic;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.fsbotn-faq-section {
    padding: 64px 0;
}
.fsbotn-faq-section .fsbotn-section-title {
    text-align: center;
    margin-bottom: 8px;
}
.fsbotn-faq-section .fsbotn-section-subtitle {
    text-align: center;
    margin-bottom: 40px;
}
.fsbotn-faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.fsbotn-faq-item {
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--fsbotn-transition);
}
.fsbotn-faq-item:hover {
    border-color: var(--fsbotn-primary-light);
}
.fsbotn-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--fsbotn-text);
    text-align: left;
    font-family: var(--fsbotn-font);
    transition: var(--fsbotn-transition);
}
.fsbotn-faq-question:hover {
    background: var(--fsbotn-bg-light);
}
.fsbotn-faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.fsbotn-faq-item.active .fsbotn-faq-icon {
    transform: rotate(180deg);
}
.fsbotn-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.fsbotn-faq-item.active .fsbotn-faq-answer {
    max-height: 500px;
}
.fsbotn-faq-answer p {
    padding: 0 24px 18px;
    font-size: 15px;
    color: var(--fsbotn-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   LISTING CONTACT FORM (on single listing)
   ============================================ */
.fsbotn-contact-form-listing {
    background: white;
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius-lg);
    padding: 24px;
    box-shadow: var(--fsbotn-shadow);
}
.fsbotn-contact-form-listing h3 {
    font-size: 18px;
    color: var(--fsbotn-primary);
    margin: 0 0 16px;
}
.fsbotn-contact-form-listing .fsbotn-form-group {
    margin-bottom: 12px;
}
.fsbotn-contact-form-listing input,
.fsbotn-contact-form-listing textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius);
    font-size: 14px;
    font-family: var(--fsbotn-font);
}
.fsbotn-contact-form-listing textarea {
    resize: vertical;
    min-height: 80px;
}

/* Button Variants */
.fsbotn-btn-sm {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 6px;
}
.fsbotn-btn-outline-sm {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fsbotn-primary);
    background: transparent;
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius);
    text-decoration: none;
    cursor: pointer;
    transition: var(--fsbotn-transition);
}
.fsbotn-btn-outline-sm:hover {
    background: var(--fsbotn-bg-light);
    border-color: var(--fsbotn-primary);
}

/* Featured Listing Badge on Cards */
.fsbotn-listing-card {
    position: relative;
}
.fsbotn-listing-featured {
    border: 2px solid var(--fsbotn-accent) !important;
}
.fsbotn-featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--fsbotn-accent);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 2;
}

/* Notice */
.fsbotn-notice {
    padding: 16px 20px;
    border-radius: var(--fsbotn-radius);
    margin-bottom: 20px;
    font-size: 14px;
}
.fsbotn-notice-error {
    background: var(--fsbotn-danger-light);
    color: var(--fsbotn-danger);
    border: 1px solid #fecaca;
}
.fsbotn-notice-success {
    background: var(--fsbotn-success-light);
    color: #15803d;
    border: 1px solid #86efac;
}

/* ============================================
   RESPONSIVE - Dashboard & New Features
   ============================================ */
@media (max-width: 768px) {
    .fsbotn-dash-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .fsbotn-dash-tabs {
        gap: 0;
    }
    .fsbotn-dash-tab {
        padding: 10px 14px;
        font-size: 13px;
    }
    .fsbotn-dash-tab svg {
        display: none;
    }
    .fsbotn-messages-container {
        grid-template-columns: 1fr;
    }
    .fsbotn-conv-list {
        border-right: none;
        border-bottom: 1px solid var(--fsbotn-border);
        max-height: 300px;
    }
    .fsbotn-upgrade-cards {
        grid-template-columns: 1fr;
    }
    .fsbotn-nar-grid {
        grid-template-columns: 1fr;
    }
    .fsbotn-benefits-grid {
        grid-template-columns: 1fr;
    }
    .fsbotn-billing-summary {
        flex-direction: column;
    }
    .fsbotn-agent-hero,
    .fsbotn-nar-stats,
    .fsbotn-agent-benefits,
    .fsbotn-agent-cta {
        padding: 24px 20px;
    }
    .fsbotn-agent-refund {
        margin: 0 20px;
    }
    .fsbotn-dash-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .fsbotn-dash-section {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .fsbotn-dash-stats {
        grid-template-columns: 1fr;
    }
    .fsbotn-dash-tab {
        padding: 8px 10px;
        font-size: 12px;
    }
}


/* ============================================
   MODERN DASHBOARD SIDEBAR NAVIGATION
   ============================================ */
.fsbotn-dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    min-height: 80vh;
    background: #f1f5f9;
}

.fsbotn-dash-sidebar {
    background: #1e293b;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.fsbotn-dash-sidebar-header {
    padding: 28px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fsbotn-dash-sidebar-header .fsbotn-user-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.fsbotn-dash-sidebar-header .fsbotn-user-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.fsbotn-dash-sidebar-header .fsbotn-user-email {
    font-size: 13px;
    color: #94a3b8;
}

.fsbotn-dash-nav {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    flex: 1;
}

.fsbotn-dash-nav li {
    margin: 0;
}

.fsbotn-dash-nav li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 24px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.fsbotn-dash-nav li a:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.fsbotn-dash-nav li a.active {
    background: rgba(245,158,11,0.12);
    color: #f59e0b;
    border-left-color: #f59e0b;
    font-weight: 600;
}

.fsbotn-dash-nav li a .nav-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.fsbotn-dash-nav li a .nav-badge {
    margin-left: auto;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
}

.fsbotn-dash-sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.fsbotn-dash-sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.2s;
}

.fsbotn-dash-sidebar-footer a:hover {
    color: #ef4444;
}

.fsbotn-dash-main {
    padding: 32px 40px;
    overflow-y: auto;
}

.fsbotn-dash-main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.fsbotn-dash-main-header h1 {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.fsbotn-dash-main-header .fsbotn-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #f59e0b;
    color: #1e3a5f;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.fsbotn-dash-main-header .fsbotn-btn-primary:hover {
    background: #d97706;
    transform: translateY(-1px);
}

/* Dashboard Stats Cards */
.fsbotn-dash-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.fsbotn-dash-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.fsbotn-dash-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.fsbotn-dash-stat-card .stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 6px;
}

.fsbotn-dash-stat-card .stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
}

.fsbotn-dash-stat-card .stat-value.stat-revenue {
    color: #16a34a;
}

/* ============================================
   MODERN UPSELL CARDS
   ============================================ */
.fsbotn-upsell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.fsbotn-upsell-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.fsbotn-upsell-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.fsbotn-upsell-card.popular {
    border-color: #f59e0b;
}

.fsbotn-upsell-card .upsell-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fsbotn-upsell-card .upsell-header {
    padding: 28px 28px 0;
}

.fsbotn-upsell-card .upsell-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 16px;
}

.fsbotn-upsell-card .upsell-icon.featured {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.fsbotn-upsell-card .upsell-icon.facebook {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.fsbotn-upsell-card .upsell-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.fsbotn-upsell-card .upsell-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

.fsbotn-upsell-card .upsell-price {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 4px;
}

.fsbotn-upsell-card .upsell-price span {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.fsbotn-upsell-card .upsell-body {
    padding: 20px 28px 28px;
}

.fsbotn-upsell-card .upsell-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.fsbotn-upsell-card .upsell-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.fsbotn-upsell-card .upsell-features li .check-icon {
    color: #16a34a;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.fsbotn-upsell-card .upsell-cta {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    box-sizing: border-box;
}

.fsbotn-upsell-card .upsell-cta:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-1px);
}

/* ============================================
   MODERN FAQ ACCORDION
   ============================================ */
.fsbotn-faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.fsbotn-faq-section.dashboard-faq {
    max-width: 100%;
}

.fsbotn-faq-category {
    margin-bottom: 32px;
}

.fsbotn-faq-category h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f59e0b;
    display: inline-block;
}

.fsbotn-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.2s;
}

.fsbotn-faq-item:hover {
    border-color: #cbd5e1;
}

.fsbotn-faq-item.active {
    border-color: #f59e0b;
    box-shadow: 0 2px 12px rgba(245,158,11,0.1);
}

.fsbotn-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.fsbotn-faq-question:hover {
    background: #f8fafc;
}

.fsbotn-faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
    padding-right: 16px;
}

.fsbotn-faq-question .faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #64748b;
    transition: all 0.3s;
    flex-shrink: 0;
}

.fsbotn-faq-item.active .faq-toggle {
    background: #f59e0b;
    color: #fff;
    transform: rotate(45deg);
}

.fsbotn-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.fsbotn-faq-item.active .fsbotn-faq-answer {
    max-height: 500px;
}

.fsbotn-faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* ============================================
   MARKETING TOOLS / SHARE PACKAGE
   ============================================ */
.fsbotn-marketing-section {
    margin-top: 24px;
}

.fsbotn-share-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 28px;
    margin-bottom: 20px;
}

.fsbotn-share-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fsbotn-share-preview {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.fsbotn-share-preview img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.fsbotn-share-preview .share-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.fsbotn-share-preview .share-details {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.fsbotn-share-preview .share-link {
    font-size: 13px;
    color: #3b82f6;
    word-break: break-all;
}

.fsbotn-share-preview .share-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin-top: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.fsbotn-share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.fsbotn-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    color: #fff;
    letter-spacing: 0.01em;
}

/* Share button colors - matching HTML class pattern .fsbotn-share-{platform} */
.fsbotn-share-btn.fsbotn-share-facebook { background: #1877f2; }
.fsbotn-share-btn.fsbotn-share-facebook:hover { background: #1565c0; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(24,119,242,0.35); }
.fsbotn-share-btn.fsbotn-share-twitter { background: #000; }
.fsbotn-share-btn.fsbotn-share-twitter:hover { background: #333; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.fsbotn-share-btn.fsbotn-share-linkedin { background: #0a66c2; }
.fsbotn-share-btn.fsbotn-share-linkedin:hover { background: #004182; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(10,102,194,0.35); }
.fsbotn-share-btn.fsbotn-share-email { background: #16a34a; }
.fsbotn-share-btn.fsbotn-share-email:hover { background: #15803d; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(22,163,74,0.35); }
.fsbotn-share-btn.fsbotn-share-copy { background: #475569; }
.fsbotn-share-btn.fsbotn-share-copy:hover { background: #334155; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(71,85,105,0.35); }
.fsbotn-share-btn.fsbotn-share-nextdoor { background: #00b636; }
.fsbotn-share-btn.fsbotn-share-nextdoor:hover { background: #009e2e; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,182,54,0.35); }
.fsbotn-share-btn.fsbotn-share-pinterest { background: #e60023; }
.fsbotn-share-btn.fsbotn-share-pinterest:hover { background: #c8001e; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(230,0,35,0.35); }
/* Also keep old class pattern as fallback */
.fsbotn-share-btn.facebook { background: #1877f2; }
.fsbotn-share-btn.facebook:hover { background: #1565c0; }
.fsbotn-share-btn.twitter { background: #000; }
.fsbotn-share-btn.twitter:hover { background: #333; }
.fsbotn-share-btn.copy-link { background: #475569; }
.fsbotn-share-btn.copy-link:hover { background: #334155; }
.fsbotn-share-btn.email { background: #16a34a; }
.fsbotn-share-btn.email:hover { background: #15803d; }
.fsbotn-share-btn.nextdoor { background: #00b636; }
.fsbotn-share-btn.nextdoor:hover { background: #009e2e; }
.fsbotn-share-btn.pinterest { background: #e60023; }
.fsbotn-share-btn.pinterest:hover { background: #c8001e; }

.fsbotn-copy-success {
    display: none;
    color: #16a34a;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

/* ============================================
   MARKETING TOOLS - MODERN DESIGN
   ============================================ */
.fsbotn-marketing-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s ease;
}
.fsbotn-marketing-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.fsbotn-marketing-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
    background: #fafbfc;
}
.fsbotn-marketing-card-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0;
}

.fsbotn-share-preview {
    padding: 20px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.fsbotn-share-preview-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: 1px solid #e5e7eb;
}
.fsbotn-share-preview-content {
    flex: 1;
}
.fsbotn-share-preview-domain {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.fsbotn-share-preview-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 4px 0 6px;
}
.fsbotn-share-preview-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.fsbotn-share-buttons {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}
.fsbotn-share-buttons h4 {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 14px;
}
.fsbotn-share-btn-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.fsbotn-share-copy {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}
.fsbotn-share-copy label {
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 10px;
}
.fsbotn-share-copy-row {
    display: flex;
    gap: 8px;
    align-items: center;
}
.fsbotn-share-copy-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    color: #475569;
    background: #f8fafc;
    font-family: 'SF Mono', 'Fira Code', monospace;
    transition: border-color 0.2s;
}
.fsbotn-share-copy-input:focus {
    border-color: #3b82f6;
    outline: none;
    background: #fff;
}
.fsbotn-share-copy .fsbotn-copy-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.fsbotn-marketing-tip {
    padding: 18px 24px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fffbeb;
    border-top: 1px solid #fef3c7;
}
.fsbotn-marketing-tip svg {
    flex-shrink: 0;
    color: #f59e0b;
    margin-top: 2px;
}
.fsbotn-marketing-tip p {
    font-size: 13px;
    color: #92400e;
    line-height: 1.6;
    margin: 0;
}
.fsbotn-marketing-tip strong {
    color: #78350f;
}

/* ============================================
   AGENT CTA SECTION (MODERN)
   ============================================ */
.fsbotn-agent-section {
    padding: 0;
}

.fsbotn-agent-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.fsbotn-agent-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(245,158,11,0.08);
    border-radius: 50%;
}

.fsbotn-agent-hero h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.fsbotn-agent-hero p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.fsbotn-agent-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.fsbotn-agent-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.fsbotn-agent-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.fsbotn-agent-stat-card .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 4px;
}

.fsbotn-agent-stat-card .stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.fsbotn-agent-stat-card .stat-source {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 8px;
}

.fsbotn-agent-benefits {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    margin-bottom: 28px;
}

.fsbotn-agent-benefits h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.fsbotn-agent-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fsbotn-agent-benefits ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.fsbotn-agent-benefits ul li .check-icon {
    color: #16a34a;
    font-weight: 700;
    flex-shrink: 0;
}

.fsbotn-agent-refund-notice {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fsbotn-agent-refund-notice .notice-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.fsbotn-agent-refund-notice .notice-text {
    font-size: 14px;
    color: #166534;
    line-height: 1.6;
}

.fsbotn-agent-refund-notice .notice-text strong {
    color: #15803d;
}

.fsbotn-agent-form {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 2px solid #f59e0b;
}

.fsbotn-agent-form h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

/* ============================================
   RESOURCES / SELLER GUIDE
   ============================================ */
.fsbotn-resources-section {
    max-width: 900px;
    margin: 0 auto;
}

.fsbotn-resource-chapter {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.2s;
}

.fsbotn-resource-chapter:hover {
    border-color: #cbd5e1;
}

.fsbotn-resource-chapter-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.fsbotn-resource-chapter-header:hover {
    background: #f8fafc;
}

.fsbotn-resource-chapter-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e3a5f, #2d5a8e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.fsbotn-resource-chapter-title {
    flex: 1;
}

.fsbotn-resource-chapter-title h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px;
}

.fsbotn-resource-chapter-title p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.fsbotn-resource-chapter-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #64748b;
    transition: all 0.3s;
    flex-shrink: 0;
}

.fsbotn-resource-chapter.active .fsbotn-resource-chapter-toggle {
    background: #f59e0b;
    color: #fff;
    transform: rotate(180deg);
}

.fsbotn-resource-chapter-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.fsbotn-resource-chapter.active .fsbotn-resource-chapter-content {
    max-height: 3000px;
}

.fsbotn-resource-chapter-body {
    padding: 0 24px 24px;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

.fsbotn-resource-chapter-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 20px 0 10px;
}

.fsbotn-resource-chapter-body ul,
.fsbotn-resource-chapter-body ol {
    padding-left: 20px;
    margin: 10px 0;
}

.fsbotn-resource-chapter-body ul li,
.fsbotn-resource-chapter-body ol li {
    margin-bottom: 6px;
}

.fsbotn-resource-chapter-body .tip-box {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    font-size: 14px;
}

.fsbotn-resource-chapter-body .tip-box strong {
    color: #92400e;
}

.fsbotn-resource-chapter-body .warning-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    font-size: 14px;
}

.fsbotn-resource-chapter-body .warning-box strong {
    color: #991b1b;
}

/* ============================================
   SOCIAL LOGIN BUTTONS
   ============================================ */
.fsbotn-social-login {
    margin: 24px 0;
}

.fsbotn-social-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
}

.fsbotn-social-divider::before,
.fsbotn-social-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.fsbotn-social-buttons {
    display: flex;
    gap: 12px;
}

.fsbotn-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #1e293b;
    cursor: pointer;
}

.fsbotn-social-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.fsbotn-social-btn .social-icon {
    font-size: 18px;
}

.fsbotn-social-btn.google-btn:hover {
    border-color: #4285f4;
    background: #f0f7ff;
}

.fsbotn-social-btn.facebook-btn:hover {
    border-color: #1877f2;
    background: #f0f4ff;
}

/* ============================================
   ACCOUNT SETTINGS
   ============================================ */
.fsbotn-account-section {
    max-width: 600px;
}

.fsbotn-account-form {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #e2e8f0;
}

.fsbotn-account-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.fsbotn-account-form .form-group {
    margin-bottom: 16px;
}

.fsbotn-account-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.fsbotn-account-form input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.fsbotn-account-form input:focus {
    border-color: #f59e0b;
    outline: none;
}

.fsbotn-account-form .form-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 24px 0;
}

.fsbotn-account-form .form-note {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

/* ============================================
   BILLING / PAYMENT HISTORY TABLE
   ============================================ */
.fsbotn-billing-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.fsbotn-payment-table {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.fsbotn-payment-table th {
    background: #f8fafc;
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}

.fsbotn-payment-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.fsbotn-payment-table tr:last-child td {
    border-bottom: none;
}

.fsbotn-payment-table .status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.fsbotn-payment-table .status-badge.completed {
    background: #dcfce7;
    color: #166534;
}

.fsbotn-payment-table .status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.fsbotn-payment-table .status-badge.failed {
    background: #fee2e2;
    color: #991b1b;
}

/* ============================================
   MESSAGES (MODERN)
   ============================================ */
.fsbotn-messages-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    min-height: 500px;
    overflow: hidden;
}

.fsbotn-conversations-list {
    border-right: 1px solid #e2e8f0;
    overflow-y: auto;
}

.fsbotn-conversations-list .list-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
}

.fsbotn-conversation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
}

.fsbotn-conversation-item:hover {
    background: #f8fafc;
}

.fsbotn-conversation-item.active {
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
}

.fsbotn-conversation-item .conv-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #64748b;
    flex-shrink: 0;
}

.fsbotn-conversation-item .conv-info {
    flex: 1;
    min-width: 0;
}

.fsbotn-conversation-item .conv-name {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fsbotn-conversation-item .conv-preview {
    font-size: 13px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fsbotn-conversation-item .conv-time {
    font-size: 11px;
    color: #94a3b8;
    flex-shrink: 0;
}

.fsbotn-message-panel {
    display: flex;
    flex-direction: column;
}

.fsbotn-message-panel .panel-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #1e293b;
}

.fsbotn-message-panel .messages-area {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fsbotn-message-bubble {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.fsbotn-message-bubble.sent {
    background: #f59e0b;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.fsbotn-message-bubble.received {
    background: #f1f5f9;
    color: #1e293b;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.fsbotn-message-bubble .msg-time {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 4px;
}

.fsbotn-message-input {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid #e2e8f0;
}

.fsbotn-message-input textarea {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    resize: none;
    min-height: 44px;
    max-height: 100px;
    font-family: inherit;
}

.fsbotn-message-input textarea:focus {
    border-color: #f59e0b;
    outline: none;
}

.fsbotn-message-input button {
    padding: 10px 20px;
    background: #f59e0b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-end;
}

.fsbotn-message-input button:hover {
    background: #d97706;
}

.fsbotn-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.fsbotn-empty-state .empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.fsbotn-empty-state h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.fsbotn-empty-state p {
    font-size: 14px;
    color: #64748b;
    max-width: 300px;
}

/* ============================================
   LISTINGS TABLE (MODERN)
   ============================================ */
.fsbotn-listings-table {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-collapse: collapse;
}

.fsbotn-listings-table th {
    background: #f8fafc;
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}

.fsbotn-listings-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.fsbotn-listings-table tr:last-child td {
    border-bottom: none;
}

.fsbotn-listings-table .listing-thumb {
    width: 60px;
    height: 45px;
    border-radius: 6px;
    object-fit: cover;
}

.fsbotn-listings-table .listing-title {
    font-weight: 600;
    color: #1e293b;
}

.fsbotn-listings-table .listing-actions {
    display: flex;
    gap: 8px;
}

.fsbotn-listings-table .listing-actions a {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.fsbotn-listings-table .listing-actions .btn-edit {
    background: #dbeafe;
    color: #1e40af;
}

.fsbotn-listings-table .listing-actions .btn-edit:hover {
    background: #bfdbfe;
}

.fsbotn-listings-table .listing-actions .btn-view {
    background: #dcfce7;
    color: #166534;
}

.fsbotn-listings-table .listing-actions .btn-view:hover {
    background: #bbf7d0;
}

.fsbotn-listings-table .listing-actions .btn-share {
    background: #fef3c7;
    color: #92400e;
}

.fsbotn-listings-table .listing-actions .btn-share:hover {
    background: #fde68a;
}

/* ============================================
   PUBLIC HERO PAGES (FAQ, Resources)
   ============================================ */
.fsbotn-page-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8e 100%);
    color: #fff;
    margin-bottom: 40px;
}

.fsbotn-page-hero h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.fsbotn-page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE DASHBOARD
   ============================================ */
@media (max-width: 1024px) {
    .fsbotn-dashboard-layout {
        grid-template-columns: 1fr;
    }
    .fsbotn-dash-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        box-shadow: 4px 0 20px rgba(0,0,0,0.3);
    }
    .fsbotn-dash-sidebar.mobile-open {
        display: flex;
    }
    .fsbotn-mobile-menu-btn {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: #1e293b;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }
    .fsbotn-dash-main {
        padding: 20px;
    }
    .fsbotn-messages-layout {
        grid-template-columns: 1fr;
    }
    .fsbotn-conversations-list {
        max-height: 200px;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .fsbotn-agent-benefits ul {
        grid-template-columns: 1fr;
    }
    .fsbotn-upsell-grid {
        grid-template-columns: 1fr;
    }
    .fsbotn-account-form .form-row {
        grid-template-columns: 1fr;
    }
}

.fsbotn-mobile-menu-btn {
    display: none;
}

.fsbotn-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.fsbotn-sidebar-overlay.active {
    display: block;
}

/* ============================================
   ADMIN EMAIL TEMPLATES EDITOR
   ============================================ */
.fsbotn-email-template-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.fsbotn-email-template-card h3 {
    margin-top: 0;
    color: #1e3a5f;
}

.fsbotn-email-template-card .template-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.fsbotn-email-template-card .template-day {
    background: #f59e0b;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.fsbotn-email-preview {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 15px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
}


/* ============================================
   RESOURCE MODULE ALIASES (match module-* HTML to chapter-* CSS)
   ============================================ */
.fsbotn-resource-module {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.2s;
}
.fsbotn-resource-module:hover {
    border-color: #cbd5e1;
}
.fsbotn-resource-module-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    transition: background 0.2s;
}
.fsbotn-resource-module-header:hover {
    background: #f8fafc;
}
.fsbotn-resource-module-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e3a5f, #2d5a8e);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}
.fsbotn-resource-module-info {
    flex: 1;
}
.fsbotn-resource-module-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px;
}
.fsbotn-resource-module-info p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}
.fsbotn-resource-chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    padding: 4px;
    color: #64748b;
    transition: all 0.3s;
    flex-shrink: 0;
}
.fsbotn-resource-module.active .fsbotn-resource-chevron {
    background: #f59e0b;
    color: #fff;
    transform: rotate(180deg);
}
.fsbotn-resource-module-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.fsbotn-resource-module.active .fsbotn-resource-module-content {
    max-height: 5000px;
}
.fsbotn-resource-lesson {
    padding: 0 24px 24px;
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}
.fsbotn-resource-lesson h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 20px 0 10px;
}
.fsbotn-resource-lesson ul,
.fsbotn-resource-lesson ol {
    padding-left: 20px;
    margin: 10px 0;
}
.fsbotn-resource-lesson ul li,
.fsbotn-resource-lesson ol li {
    margin-bottom: 6px;
}
.fsbotn-resource-tip {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    font-size: 14px;
}
.fsbotn-resource-tip strong {
    color: #92400e;
}
.fsbotn-resource-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0;
}
.fsbotn-resource-check-group h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
}
.fsbotn-resource-check-group ul {
    list-style: disc;
    padding-left: 18px;
}
@media (max-width: 768px) {
    .fsbotn-resource-checklist {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SUBMIT LISTING FORM - Complete Redesign
   Modern Multi-Step Wizard
   ============================================ */

/* --- Submit Wrap & Container --- */
.fsbotn-submit-wrap {
    padding: 40px 20px 80px;
    background: var(--fsbotn-bg-light);
    min-height: 70vh;
}
.fsbotn-submit-wrap .fsbotn-container {
    max-width: 860px;
}

/* --- Submit Header --- */
.fsbotn-submit-wrap .fsbotn-submit-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}
.fsbotn-submit-header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--fsbotn-primary), var(--fsbotn-primary-light));
    border-radius: 20px;
    margin-bottom: 20px;
}
.fsbotn-submit-header-icon svg {
    color: #fff;
}
.fsbotn-submit-wrap .fsbotn-submit-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--fsbotn-primary);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.fsbotn-submit-wrap .fsbotn-submit-header p {
    font-size: 17px;
    color: var(--fsbotn-text-light);
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* --- Progress Steps (Connected Dots) --- */
.fsbotn-progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 20px;
}
.fsbotn-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}
.fsbotn-progress-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--fsbotn-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}
.fsbotn-progress-dot span {
    font-size: 16px;
    font-weight: 700;
    color: var(--fsbotn-text-lighter);
    transition: all 0.3s ease;
}
.fsbotn-progress-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--fsbotn-text-lighter);
    margin-top: 8px;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.fsbotn-progress-line {
    flex: 1;
    height: 3px;
    background: var(--fsbotn-border);
    margin: 0 -4px;
    margin-bottom: 26px;
    transition: all 0.3s ease;
    max-width: 120px;
    min-width: 40px;
}

/* Active Step */
.fsbotn-progress-step.active .fsbotn-progress-dot {
    border-color: var(--fsbotn-primary);
    background: var(--fsbotn-primary);
    box-shadow: 0 0 0 6px rgba(30,58,95,0.15);
}
.fsbotn-progress-step.active .fsbotn-progress-dot span {
    color: #fff;
}
.fsbotn-progress-step.active .fsbotn-progress-label {
    color: var(--fsbotn-primary);
}

/* Completed Step */
.fsbotn-progress-step.completed .fsbotn-progress-dot {
    border-color: var(--fsbotn-success);
    background: var(--fsbotn-success);
}
.fsbotn-progress-step.completed .fsbotn-progress-dot span {
    color: #fff;
    font-size: 0;
}
.fsbotn-progress-step.completed .fsbotn-progress-dot span::after {
    content: '\2713';
    font-size: 18px;
    font-weight: 700;
}
.fsbotn-progress-step.completed .fsbotn-progress-label {
    color: var(--fsbotn-success);
}
.fsbotn-progress-step.completed + .fsbotn-progress-line {
    background: var(--fsbotn-success);
}

/* --- Form Steps (Show/Hide) --- */
.fsbotn-submit-wrap .fsbotn-form-step {
    display: none;
    animation: fsbotn-fadeInUp 0.4s ease;
}
.fsbotn-submit-wrap .fsbotn-form-step.active {
    display: block;
}
@keyframes fsbotn-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Form Cards --- */
.fsbotn-form-card {
    background: #fff;
    border-radius: var(--fsbotn-radius-xl);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: var(--fsbotn-shadow);
    border: 1px solid var(--fsbotn-border-light);
}
.fsbotn-form-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--fsbotn-bg-dark);
}
.fsbotn-form-card-header svg {
    color: var(--fsbotn-primary);
    flex-shrink: 0;
}
.fsbotn-form-card-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--fsbotn-text);
    margin: 0;
}

/* --- Form Rows (inside cards) --- */
.fsbotn-submit-wrap .fsbotn-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.fsbotn-submit-wrap .fsbotn-form-row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}
.fsbotn-submit-wrap .fsbotn-form-row-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.fsbotn-col-2 {
    grid-column: 1 / -1;
}

/* --- Form Groups (inside cards) --- */
.fsbotn-submit-wrap .fsbotn-form-group {
    margin-bottom: 16px;
}
.fsbotn-submit-wrap .fsbotn-form-group label {
    display: block;
    font-weight: 600;
    color: var(--fsbotn-text);
    margin-bottom: 6px;
    font-size: 14px;
}
.fsbotn-required {
    color: var(--fsbotn-danger);
    font-weight: 400;
}
.fsbotn-submit-wrap .fsbotn-form-group input,
.fsbotn-submit-wrap .fsbotn-form-group select,
.fsbotn-submit-wrap .fsbotn-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius);
    font-size: 15px;
    font-family: var(--fsbotn-font);
    transition: var(--fsbotn-transition);
    background: #fff;
    color: var(--fsbotn-text);
    box-sizing: border-box;
}
.fsbotn-submit-wrap .fsbotn-form-group input:focus,
.fsbotn-submit-wrap .fsbotn-form-group select:focus,
.fsbotn-submit-wrap .fsbotn-form-group textarea:focus {
    border-color: var(--fsbotn-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(30,58,95,0.08);
}
.fsbotn-submit-wrap .fsbotn-form-group input::placeholder,
.fsbotn-submit-wrap .fsbotn-form-group textarea::placeholder {
    color: var(--fsbotn-text-lighter);
}
.fsbotn-readonly {
    background: var(--fsbotn-bg-dark) !important;
    color: var(--fsbotn-text-light) !important;
    cursor: not-allowed;
}

/* --- Input Prefix/Suffix --- */
.fsbotn-submit-wrap .fsbotn-input-prefix,
.fsbotn-submit-wrap .fsbotn-input-suffix {
    display: flex;
    align-items: center;
    border: 2px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius);
    overflow: hidden;
    transition: var(--fsbotn-transition);
    background: #fff;
}
.fsbotn-submit-wrap .fsbotn-input-prefix:focus-within,
.fsbotn-submit-wrap .fsbotn-input-suffix:focus-within {
    border-color: var(--fsbotn-primary);
    box-shadow: 0 0 0 4px rgba(30,58,95,0.08);
}
.fsbotn-submit-wrap .fsbotn-input-prefix input,
.fsbotn-submit-wrap .fsbotn-input-suffix input {
    border: none !important;
    box-shadow: none !important;
    flex: 1;
}
.fsbotn-submit-wrap .fsbotn-prefix {
    padding: 12px 14px;
    background: var(--fsbotn-bg-dark);
    color: var(--fsbotn-text-light);
    font-weight: 700;
    font-size: 16px;
    border-right: 2px solid var(--fsbotn-border);
}
.fsbotn-submit-wrap .fsbotn-suffix {
    padding: 12px 14px;
    background: var(--fsbotn-bg-dark);
    color: var(--fsbotn-text-light);
    font-weight: 600;
    font-size: 13px;
    border-left: 2px solid var(--fsbotn-border);
    white-space: nowrap;
}

/* --- Form Hint Text --- */
.fsbotn-form-hint {
    color: var(--fsbotn-text-light);
    font-size: 15px;
    margin: 0 0 20px;
    line-height: 1.6;
}
.fsbotn-char-hint {
    display: block;
    margin-top: 8px;
    color: var(--fsbotn-text-lighter);
    font-size: 13px;
    font-style: italic;
}

/* --- Photo Upload (Redesigned) --- */
.fsbotn-submit-wrap .fsbotn-dropzone {
    border: 2px dashed var(--fsbotn-border);
    border-radius: var(--fsbotn-radius-lg);
    padding: 56px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--fsbotn-bg-light);
    position: relative;
}
.fsbotn-submit-wrap .fsbotn-dropzone:hover {
    border-color: var(--fsbotn-primary);
    background: rgba(30,58,95,0.02);
}
.fsbotn-submit-wrap .fsbotn-dropzone.dragover {
    border-color: var(--fsbotn-primary);
    background: rgba(30,58,95,0.05);
    transform: scale(1.01);
}
.fsbotn-dropzone-icon {
    margin-bottom: 16px;
}
.fsbotn-dropzone-icon svg {
    color: var(--fsbotn-primary);
    opacity: 0.5;
}
.fsbotn-submit-wrap .fsbotn-dropzone p {
    color: var(--fsbotn-text);
    font-size: 16px;
    margin: 0 0 6px;
}
.fsbotn-submit-wrap .fsbotn-dropzone small {
    color: var(--fsbotn-text-lighter);
    font-size: 13px;
}
.fsbotn-photo-counter {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--fsbotn-text-light);
    font-weight: 600;
}
.fsbotn-submit-wrap .fsbotn-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 20px;
}
.fsbotn-submit-wrap .fsbotn-photo-item {
    position: relative;
    border-radius: var(--fsbotn-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--fsbotn-shadow);
    transition: var(--fsbotn-transition);
}
.fsbotn-submit-wrap .fsbotn-photo-item:hover {
    transform: scale(1.03);
    box-shadow: var(--fsbotn-shadow-md);
}
.fsbotn-submit-wrap .fsbotn-photo-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.fsbotn-submit-wrap .fsbotn-photo-item:first-child::after {
    content: 'Main Photo';
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: var(--fsbotn-accent);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fsbotn-submit-wrap .fsbotn-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fsbotn-submit-wrap .fsbotn-remove-photo {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    background: rgba(239,68,68,0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.fsbotn-submit-wrap .fsbotn-photo-item:hover .fsbotn-remove-photo {
    opacity: 1;
}

/* --- Amenities Grid (Redesigned with Groups) --- */
.fsbotn-submit-wrap .fsbotn-amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.fsbotn-amenity-group {
    background: var(--fsbotn-bg-light);
    border-radius: var(--fsbotn-radius);
    padding: 16px 20px;
    border: 1px solid var(--fsbotn-border-light);
}
.fsbotn-amenity-group h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--fsbotn-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--fsbotn-border);
}
.fsbotn-amenity-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fsbotn-submit-wrap .fsbotn-amenity-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--fsbotn-transition);
    font-size: 14px;
    color: var(--fsbotn-text);
    user-select: none;
}
.fsbotn-submit-wrap .fsbotn-amenity-check:hover {
    background: rgba(30,58,95,0.04);
}
.fsbotn-submit-wrap .fsbotn-amenity-check input[type="checkbox"] {
    display: none;
}
.fsbotn-amenity-box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--fsbotn-border);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: #fff;
}
.fsbotn-check-icon {
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
    color: #fff;
}
.fsbotn-submit-wrap .fsbotn-amenity-check input:checked + .fsbotn-amenity-box {
    background: var(--fsbotn-primary);
    border-color: var(--fsbotn-primary);
}
.fsbotn-submit-wrap .fsbotn-amenity-check input:checked + .fsbotn-amenity-box .fsbotn-check-icon {
    opacity: 1;
    transform: scale(1);
}

/* --- Toggle Switches (Contact Visibility) --- */
.fsbotn-visibility-options {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid var(--fsbotn-bg-dark);
}
.fsbotn-visibility-options h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--fsbotn-text);
    margin: 0 0 16px;
}
.fsbotn-toggle-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 0;
    font-size: 15px;
    color: var(--fsbotn-text);
    user-select: none;
}
.fsbotn-toggle-label input {
    display: none;
}
.fsbotn-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: var(--fsbotn-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.fsbotn-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.fsbotn-toggle-label input:checked + .fsbotn-toggle-switch {
    background: var(--fsbotn-success);
}
.fsbotn-toggle-label input:checked + .fsbotn-toggle-switch::after {
    left: 23px;
}

/* --- Submit Summary Card --- */
.fsbotn-submit-wrap .fsbotn-submit-summary {
    background: #fff;
    border: 2px solid var(--fsbotn-success);
    margin-bottom: 24px;
}
.fsbotn-submit-wrap .fsbotn-submit-summary .fsbotn-form-card-header svg {
    color: var(--fsbotn-success);
}
.fsbotn-summary-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.fsbotn-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--fsbotn-border-light);
}
.fsbotn-summary-item:last-child {
    border-bottom: none;
}
.fsbotn-summary-label {
    font-size: 15px;
    color: var(--fsbotn-text-light);
    font-weight: 500;
}
.fsbotn-summary-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--fsbotn-text);
}
.fsbotn-summary-value small {
    font-weight: 400;
    color: var(--fsbotn-text-lighter);
    font-size: 13px;
}
.fsbotn-text-success {
    color: var(--fsbotn-success) !important;
}
.fsbotn-summary-savings {
    background: var(--fsbotn-success-light);
    margin: 8px -32px -16px;
    padding: 16px 32px !important;
    border-radius: 0 0 var(--fsbotn-radius-xl) var(--fsbotn-radius-xl);
    border-bottom: none !important;
}

/* --- Form Navigation --- */
.fsbotn-submit-wrap .fsbotn-form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    padding: 24px 0 0;
}
.fsbotn-form-nav-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--fsbotn-text-lighter);
    font-weight: 500;
}
.fsbotn-form-nav-info svg {
    color: var(--fsbotn-text-lighter);
}
.fsbotn-submit-wrap .fsbotn-btn svg {
    flex-shrink: 0;
}
.fsbotn-btn-submit {
    padding: 16px 32px !important;
    font-size: 17px !important;
    gap: 10px !important;
    box-shadow: 0 4px 14px rgba(245,158,11,0.4);
}
.fsbotn-btn-submit:hover {
    box-shadow: 0 6px 20px rgba(245,158,11,0.5) !important;
    transform: translateY(-2px) !important;
}

/* --- Form Message --- */
.fsbotn-submit-wrap .fsbotn-form-message {
    padding: 16px 20px;
    border-radius: var(--fsbotn-radius);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}
.fsbotn-form-message.error {
    background: var(--fsbotn-danger-light);
    color: var(--fsbotn-danger);
    border: 1px solid rgba(239,68,68,0.2);
}
.fsbotn-form-message.success {
    background: var(--fsbotn-success-light);
    color: #16a34a;
    border: 1px solid rgba(34,197,94,0.2);
}

/* --- Auth Gate --- */
.fsbotn-auth-gate {
    padding: 80px 20px;
    text-align: center;
    background: var(--fsbotn-bg-light);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fsbotn-auth-gate h2 {
    font-size: 28px;
    color: var(--fsbotn-primary);
    margin: 0 0 12px;
}
.fsbotn-auth-gate p {
    color: var(--fsbotn-text-light);
    margin-bottom: 24px;
}
.fsbotn-auth-gate-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* --- Submit Listing Responsive --- */
@media (max-width: 768px) {
    .fsbotn-submit-wrap {
        padding: 24px 12px 60px;
    }
    .fsbotn-submit-wrap .fsbotn-submit-header h1 {
        font-size: 28px;
    }
    .fsbotn-progress-steps {
        padding: 0 8px;
    }
    .fsbotn-progress-dot {
        width: 36px;
        height: 36px;
    }
    .fsbotn-progress-dot span {
        font-size: 14px;
    }
    .fsbotn-progress-label {
        font-size: 11px;
    }
    .fsbotn-progress-line {
        min-width: 20px;
    }
    .fsbotn-form-card {
        padding: 24px 20px;
        border-radius: var(--fsbotn-radius-lg);
    }
    .fsbotn-submit-wrap .fsbotn-form-row,
    .fsbotn-submit-wrap .fsbotn-form-row-3,
    .fsbotn-submit-wrap .fsbotn-form-row-4 {
        grid-template-columns: 1fr;
    }
    .fsbotn-submit-wrap .fsbotn-amenities-grid {
        grid-template-columns: 1fr;
    }
    .fsbotn-submit-wrap .fsbotn-form-nav {
        flex-direction: column;
        gap: 12px;
    }
    .fsbotn-submit-wrap .fsbotn-form-nav .fsbotn-btn {
        width: 100%;
    }
    .fsbotn-form-nav-info {
        order: -1;
    }
    .fsbotn-summary-savings {
        margin: 8px -20px -12px;
        padding: 14px 20px !important;
    }
    .fsbotn-submit-wrap .fsbotn-photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    .fsbotn-submit-wrap .fsbotn-photo-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }
    .fsbotn-btn-submit {
        padding: 14px 24px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    .fsbotn-submit-header-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }
    .fsbotn-submit-header-icon svg {
        width: 32px;
        height: 32px;
    }
    .fsbotn-submit-wrap .fsbotn-submit-header h1 {
        font-size: 24px;
    }
    .fsbotn-progress-label {
        display: none;
    }
    .fsbotn-progress-line {
        margin-bottom: 0;
    }
    .fsbotn-form-card {
        padding: 20px 16px;
    }
}


/* ============================================
   AGENT PAGE - MODERNIZED CONVERSION LAYOUT
   ============================================ */

/* Hero Section */
.fsbotn-agent-hero-modern {
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4f7f 50%, #1e3a5f 100%);
    border-radius: var(--fsbotn-radius-xl);
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.fsbotn-agent-hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.fsbotn-agent-hero-badge {
    display: inline-block;
    background: rgba(245,158,11,0.2);
    color: #fbbf24;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(245,158,11,0.3);
}
.fsbotn-agent-hero-modern h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #fff;
    line-height: 1.2;
}
.fsbotn-agent-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 8px;
    line-height: 1.5;
}
.fsbotn-agent-hero-sub strong {
    color: #fbbf24;
}
.fsbotn-agent-hero-source {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0 0 24px;
    font-style: italic;
}
.fsbotn-btn-white {
    background: #fff;
    color: var(--fsbotn-primary);
    font-weight: 700;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.fsbotn-btn-white:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: var(--fsbotn-primary);
}

/* Stats Grid - Modern */
.fsbotn-agent-stats-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.fsbotn-agent-stat-modern {
    background: #fff;
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all 0.2s;
}
.fsbotn-agent-stat-modern:hover {
    border-color: var(--fsbotn-accent);
    box-shadow: var(--fsbotn-shadow-md);
    transform: translateY(-2px);
}
.fsbotn-agent-stat-icon {
    margin-bottom: 12px;
}
.fsbotn-agent-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--fsbotn-primary);
    margin-bottom: 4px;
}
.fsbotn-agent-stat-lbl {
    font-size: 13px;
    font-weight: 600;
    color: var(--fsbotn-text);
    margin-bottom: 4px;
}
.fsbotn-agent-stat-cmp {
    font-size: 12px;
    color: var(--fsbotn-text-light);
}

/* Two Column Layout */
.fsbotn-agent-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
    align-items: start;
}

/* Benefits - Modern */
.fsbotn-agent-benefits-modern h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--fsbotn-primary);
    margin: 0 0 24px;
}
.fsbotn-agent-benefit-modern {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.fsbotn-agent-benefit-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.fsbotn-agent-benefit-modern h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--fsbotn-text);
    margin: 0 0 4px;
}
.fsbotn-agent-benefit-modern p {
    font-size: 14px;
    color: var(--fsbotn-text-light);
    margin: 0;
    line-height: 1.5;
}

/* Guarantee Badge */
.fsbotn-agent-guarantee {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--fsbotn-radius);
    padding: 16px;
    margin-top: 24px;
}
.fsbotn-agent-guarantee strong {
    display: block;
    font-size: 14px;
    color: #15803d;
    margin-bottom: 4px;
}
.fsbotn-agent-guarantee p {
    font-size: 13px;
    color: #166534;
    margin: 0;
    line-height: 1.5;
}

/* Form Card */
.fsbotn-agent-form-card {
    background: #fff;
    border: 2px solid var(--fsbotn-accent);
    border-radius: var(--fsbotn-radius-xl);
    box-shadow: var(--fsbotn-shadow-lg);
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.fsbotn-agent-form-card-header {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    padding: 24px 28px 16px;
    border-bottom: 1px solid #fde68a;
}
.fsbotn-agent-form-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--fsbotn-primary);
    margin: 0 0 6px;
}
.fsbotn-agent-form-card-header p {
    font-size: 14px;
    color: var(--fsbotn-text-light);
    margin: 0;
}
.fsbotn-agent-form-card .fsbotn-form {
    padding: 24px 28px;
}
.fsbotn-agent-form-card .fsbotn-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--fsbotn-text);
}
.fsbotn-agent-form-card .fsbotn-form-group input,
.fsbotn-agent-form-card .fsbotn-form-group textarea {
    border: 1px solid var(--fsbotn-border);
    border-radius: var(--fsbotn-radius);
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.2s;
}
.fsbotn-agent-form-card .fsbotn-form-group input:focus,
.fsbotn-agent-form-card .fsbotn-form-group textarea:focus {
    border-color: var(--fsbotn-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
.fsbotn-btn-full {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 24px;
}
.fsbotn-agent-form-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px 28px 20px;
    font-size: 12px;
    color: var(--fsbotn-text-light);
}
.fsbotn-agent-form-trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* What Happens Next - Process Steps */
.fsbotn-agent-process {
    background: var(--fsbotn-bg-light);
    border-radius: var(--fsbotn-radius-xl);
    padding: 40px;
    text-align: center;
}
.fsbotn-agent-process h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--fsbotn-primary);
    margin: 0 0 32px;
}
.fsbotn-agent-process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.fsbotn-agent-process-step {
    text-align: center;
}
.fsbotn-agent-process-num {
    width: 48px;
    height: 48px;
    background: var(--fsbotn-accent);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.fsbotn-agent-process-step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--fsbotn-text);
    margin: 0 0 8px;
}
.fsbotn-agent-process-step p {
    font-size: 14px;
    color: var(--fsbotn-text-light);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .fsbotn-agent-hero-modern {
        padding: 32px 24px;
    }
    .fsbotn-agent-hero-modern h2 {
        font-size: 24px;
    }
    .fsbotn-agent-stats-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    .fsbotn-agent-two-col {
        grid-template-columns: 1fr;
    }
    .fsbotn-agent-form-card {
        position: static;
    }
    .fsbotn-agent-process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
