/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #f5f5f0;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== HEADER ===== */
.site-header {
    background: #1a3a60;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}

.logo img {
    height: 36px;
    width: auto;
}

.header-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-nav a {
    color: #c8d8ea;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.header-nav a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.header-nav a.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.header-nav a.btn-post-ad {
    background: #e8a020;
    color: #10243d;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    margin-left: 4px;
}

.header-nav a.btn-post-ad:hover {
    background: #d4901a;
}

/* Burger menu button */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 200;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 149;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    width: 260px;
    background: #1a3a60;
    z-index: 150;
    flex-direction: column;
    padding: 8px 0;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    border-radius: 0 0 0 12px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active {
    display: flex;
    transform: translateX(0);
}

.mobile-nav a {
    color: #c8d8ea;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 24px;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.mobile-nav a.btn-post-ad-mobile {
    background: #e8a020;
    color: #10243d;
    font-weight: 600;
    margin: 8px 16px;
    padding: 12px 24px;
    border-radius: 8px;
    text-align: center;
    border-bottom: none;
}

.mobile-nav a.btn-post-ad-mobile:hover {
    background: #d4901a;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid #e5e0d8;
    padding: 10px 24px;
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    color: #888;
}

.breadcrumb-inner a {
    color: #2a5a8f;
    transition: color 0.2s;
}

.breadcrumb-inner a:hover {
    color: #1a3a60;
}

.breadcrumb-inner span {
    margin: 0 6px;
    color: #ccc;
}

/* ===== MAIN LAYOUT ===== */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    flex: 1;
}

/* ===== PAGE TITLE ===== */
.page-title {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.page-title h1 {
    font-size: 26px;
    font-weight: 700;
    color: #1a3a60;
    letter-spacing: -0.5px;
}


/* ===== LISTINGS ===== */
.listings-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.listing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e0d8;
    transition: all 0.25s ease;
    display: grid;
    grid-template-columns: 200px 1fr;
}

.listing-card:hover {
    border-color: #c9b99a;
    box-shadow: 0 4px 20px rgba(26, 58, 96, 0.08);
    transform: translateY(-1px);
}

.listing-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.listing-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.listing-card:hover .listing-image img {
    transform: scale(1.03);
}

.listing-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.listing-online {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.listing-online::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #4caf50;
    border-radius: 50%;
    box-shadow: 0 0 4px #4caf50;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px #4caf50; }
    50% { opacity: 0.6; box-shadow: 0 0 8px #4caf50; }
}

.listing-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.listing-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a3a60;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.listing-title a {
    color: inherit;
    transition: color 0.2s;
}

.listing-title a:hover {
    color: #2a5a8f;
}

.listing-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.listing-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.listing-tag {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.tag-location {
    background: #f0ebe3;
    color: #2a5a8f;
}

.tag-type {
    background: #e8f5e9;
    color: #2e7d32;
}

.tag-new {
    background: #fff3e0;
    color: #e65100;
}

.listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f0ebe3;
}

.listing-username {
    font-size: 13px;
    color: #888;
}

.btn-message {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #4a7c3f 0%, #5a9a4a 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.btn-message:hover {
    background: linear-gradient(135deg, #3d6a34 0%, #4a8040 100%);
    box-shadow: 0 2px 8px rgba(74, 124, 63, 0.3);
    transform: translateY(-1px);
}

.btn-message svg {
    width: 14px;
    height: 14px;
}

/* ===== VIEW ALL ===== */
.view-all-section {
    text-align: center;
    padding: 20px 0;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1a3a60;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    border: 2px solid #1a3a60;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-view-all:hover {
    background: #1a3a60;
    color: #fff;
}

/* ===== SIDEBAR ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e0d8;
    overflow: hidden;
}

.sidebar-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0ebe3;
    font-size: 15px;
    font-weight: 700;
    color: #1a3a60;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card-header svg {
    width: 18px;
    height: 18px;
    color: #2a5a8f;
}

.city-list {
    list-style: none;
    padding: 8px 0;
}

.city-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    font-size: 14px;
    color: #555;
    transition: all 0.2s;
}

.city-list li a:hover {
    background: #faf7f2;
    color: #2a5a8f;
    padding-left: 24px;
}

.city-list li a .arrow {
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 12px;
    color: #2a5a8f;
}

.city-list li a:hover .arrow {
    opacity: 1;
}

.quick-info-list {
    list-style: none;
    padding: 8px 0;
}

.quick-info-list li {
    padding: 10px 20px;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-info-list li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #2a5a8f;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== INFO SECTION ===== */
.info-section {
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e0d8;
    padding: 32px;
    margin-top: 8px;
}

.info-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a60;
    margin-bottom: 12px;
}

.info-section p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 720px;
}

.info-section p a {
    color: #2a5a8f;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.info-section p a:hover {
    color: #1a3a60;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.info-card {
    padding: 20px;
    border-radius: 10px;
    background: #faf7f2;
    border: 1px solid #f0ebe3;
}

.info-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a3a60;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card h3 svg {
    width: 18px;
    height: 18px;
    color: #2a5a8f;
}

.info-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    font-size: 14px;
    color: #666;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #2a5a8f;
    border-radius: 50%;
    flex-shrink: 0;
}

.safety-notice {
    margin-top: 24px;
    padding: 16px 20px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    font-size: 13px;
    color: #795548;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.safety-notice svg {
    width: 20px;
    height: 20px;
    color: #f9a825;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1a3a60;
    color: #c8d8ea;
    padding: 40px 24px 24px;
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 24px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    font-size: 13px;
    color: #9ab0c8;
    line-height: 1.7;
    margin: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #9ab0c8;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-brand-text {
    font-size: 13px;
    color: #9ab0c8;
    line-height: 1.7;
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
}

.footer-copy {
    font-size: 13px;
    color: #c8d8ea;
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #9ab0c8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== STATE PAGE ===== */
.state-page-container {
    grid-template-columns: 1fr;
}

.state-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-top: 6px;
}

.city-grid-section {
    grid-column: 1 / -1;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.city-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e5e0d8;
    border-radius: 10px;
    padding: 14px 16px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.city-card:hover {
    border-color: #c9b99a;
    box-shadow: 0 4px 16px rgba(26, 58, 96, 0.08);
    transform: translateY(-1px);
}

.city-card:hover .city-card-name {
    color: #2a5a8f;
}

.city-card:hover .city-card-arrow {
    opacity: 1;
    transform: translateX(2px);
}

.city-card-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ebe3;
    border-radius: 8px;
    flex-shrink: 0;
}

.city-card-icon svg {
    width: 18px;
    height: 18px;
    color: #2a5a8f;
}

.city-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    flex: 1;
    transition: color 0.2s;
}

.city-card-arrow {
    font-size: 18px;
    color: #2a5a8f;
    opacity: 0;
    transition: all 0.2s;
    flex-shrink: 0;
}

.state-info-section {
    grid-column: 1 / -1;
}

/* ===== HOMEPAGE ===== */
.homepage-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.homepage-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.homepage-container {
    grid-template-columns: 1fr 300px;
    gap: 28px;
}

.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a60;
    margin-bottom: 4px;
}

.section-header p {
    font-size: 14px;
    color: #888;
}

.homepage-listings {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.homepage-info {
    grid-column: 1 / -1;
}

/* ===== DIRECTORY ===== */
.directory-section {
    grid-column: 1 / -1;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e0d8;
    padding: 32px;
    margin-top: 12px;
}

.directory-grid {
    column-count: 4;
    column-gap: 32px;
}

.directory-state {
    break-inside: avoid;
    margin-bottom: 20px;
}

.directory-state-name {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.directory-state-name a {
    color: #1a3a60;
    transition: color 0.2s;
}

.directory-state-name a:hover {
    color: #2a5a8f;
}

.directory-state-count {
    font-size: 11px;
    font-weight: 600;
    background: #f0ebe3;
    color: #888;
    padding: 1px 7px;
    border-radius: 10px;
}

.directory-city-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.directory-city-list li {
    margin-bottom: 2px;
}

.directory-city-list li a {
    font-size: 14px;
    color: #666;
    transition: color 0.2s;
    line-height: 1.8;
}

.directory-city-list li a:hover {
    color: #2a5a8f;
}

/* ===== STATIC PAGES (About, Contact, Legal, etc.) ===== */
.static-page-container {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 24px;
}

.static-page-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e0d8;
    padding: 40px;
}

.static-page-card h1 {
    font-size: 26px;
    font-weight: 700;
    color: #1a3a60;
    margin-bottom: 16px;
}

.static-page-card h2 {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a60;
    margin-top: 28px;
    margin-bottom: 10px;
}

.static-page-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 20px;
}

.static-page-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-top: 18px;
    margin-bottom: 6px;
}

.static-page-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.static-page-card a:not(.btn-view-all) {
    color: #2a5a8f;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.static-page-card a:not(.btn-view-all):hover {
    color: #1a3a60;
}

.static-page-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
}

.static-page-card ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.static-page-card ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #2a5a8f;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
}

.static-page-cta {
    margin-top: 32px;
    text-align: center;
}

/* ===== HOW IT WORKS PAGE ===== */
.steps-list {
    margin-top: 24px;
    margin-bottom: 28px;
}

.step-item {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #f0ebe3;
}

.step-item:first-child {
    padding-top: 0;
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a3a60;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    flex-shrink: 0;
}

.step-content h2 {
    font-size: 17px;
    margin-top: 0;
    margin-bottom: 6px;
}

.step-content p {
    margin-bottom: 0;
}

/* ===== FAQ PAGE ===== */
.faq-list {
    margin-top: 24px;
}

.faq-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0ebe3;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h2 {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 6px;
}

.faq-item p {
    margin-bottom: 0;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.contact-item {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: #faf7f2;
    border: 1px solid #f0ebe3;
    border-radius: 10px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e5e0d8;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    color: #2a5a8f;
}

.contact-item-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a3a60;
    margin-bottom: 4px;
    margin-top: 0;
}

.contact-item-content p {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
    line-height: 1.5;
}

.contact-item-content a {
    font-size: 14px;
    font-weight: 600;
    color: #2a5a8f;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item-content a:hover {
    color: #1a3a60;
    text-decoration: underline;
}

/* ===== POST AD PAGE ===== */
.post-ad-container {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 24px;
}

.post-ad-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e0d8;
    padding: 36px;
}

.post-ad-card h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a3a60;
    margin-bottom: 8px;
}

.post-ad-intro {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 28px;
}

.post-ad-guidelines {
    margin-bottom: 28px;
}

.post-ad-guidelines h2 {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0ebe3;
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidelines-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f2ed;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.guidelines-list li:last-child {
    border-bottom: none;
}

.guidelines-list li svg {
    width: 18px;
    height: 18px;
    color: #4caf50;
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-partner-site {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: #c0392b;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
}

.btn-partner-site:hover {
    background: #a93226;
    box-shadow: 0 4px 16px rgba(192, 57, 43, 0.3);
    transform: translateY(-1px);
}

.btn-partner-site svg {
    width: 18px;
    height: 18px;
}

.post-ad-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    line-height: 1.6;
}

.post-ad-note a {
    color: #2a5a8f;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-ad-note a:hover {
    color: #1a3a60;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .main-container {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 20px;
    }

    /* Sidebar stays AFTER listings on mobile */
    .listings-column {
        order: 1;
    }

    .sidebar {
        order: 2;
    }

    .info-section {
        order: 3;
    }

    .homepage-listings-section {
        order: 1;
    }

    .directory-section {
        order: 3;
    }

    .homepage-info {
        order: 4;
    }

    .homepage-container {
        grid-template-columns: 1fr;
    }

    .city-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .city-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .directory-grid {
        column-count: 3;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .listing-card {
        grid-template-columns: 120px 1fr;
    }

    .listing-image {
        aspect-ratio: 2/4;
    }

    .listing-content {
        padding: 14px;
    }

    .listing-title {
        font-size: 14px;
    }

    .listing-description {
        font-size: 13px;
        -webkit-line-clamp: 2;
        margin-bottom: 10px;
    }

    .listing-meta {
        margin-bottom: 8px;
    }

    .listing-tag {
        font-size: 11px;
        padding: 2px 8px;
    }

    .listing-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-top: 10px;
    }

    .btn-message {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }

    .header-inner {
        padding: 10px 16px;
    }

    .page-title h1 {
        font-size: 20px;
    }

    .page-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .info-section {
        padding: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .city-list {
        grid-template-columns: 1fr;
    }

    .breadcrumb-bar {
        padding: 8px 16px;
    }

    .city-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .city-card {
        padding: 12px 14px;
    }

    .city-card-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .city-card-icon svg {
        width: 15px;
        height: 15px;
    }

    .city-card-name {
        font-size: 13px;
    }

    .city-card-arrow {
        opacity: 1;
    }

    .directory-grid {
        column-count: 2;
    }

    .directory-section {
        padding: 20px;
    }

    .static-page-container {
        padding: 16px;
    }

    .static-page-card {
        padding: 24px;
    }

    .static-page-card h1 {
        font-size: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .post-ad-container {
        padding: 22px;
    }

    .post-ad-card {
        padding: 24px;
    }

    .post-ad-card h1 {
        font-size: 20px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

